1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
<?xml version="1.0" encoding="utf-8" ?>
<!--
* Copyright (c) 2005-2019 The OPC Foundation, Inc. All rights reserved.
*
* OPC Foundation MIT License 1.00
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
* The complete license agreement can be found here:
* http://opcfoundation.org/License/MIT/1.00/
-->
<xs:schema
xmlns:DI="http://opcfoundation.org/UA/DI/Types.xsd"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:ua="http://opcfoundation.org/UA/2008/02/Types.xsd"
xmlns:tns="http://opcfoundation.org/UA/ADI/Types.xsd"
targetNamespace="http://opcfoundation.org/UA/ADI/Types.xsd"
elementFormDefault="qualified"
>
<xs:import namespace="http://opcfoundation.org/UA/DI/Types.xsd" />
<xs:import namespace="http://opcfoundation.org/UA/2008/02/Types.xsd" />
<xs:simpleType name="ExecutionCycleEnumeration">
<xs:restriction base="xs:string">
<xs:enumeration value="IDLE_0" />
<xs:enumeration value="DIAGNOSTIC_1" />
<xs:enumeration value="CLEANING_2" />
<xs:enumeration value="CALIBRATION_4" />
<xs:enumeration value="VALIDATION_8" />
<xs:enumeration value="SAMPLING_16" />
<xs:enumeration value="DIAGNOSTIC_WITH_GRAB_SAMPLE_32769" />
<xs:enumeration value="CLEANING_WITH_GRAB_SAMPLE_32770" />
<xs:enumeration value="CALIBRATION_WITH_GRAB_SAMPLE_32772" />
<xs:enumeration value="VALIDATION_WITH_GRAB_SAMPLE_32776" />
<xs:enumeration value="SAMPLING_WITH_GRAB_SAMPLE_32784" />
</xs:restriction>
</xs:simpleType>
<xs:element name="ExecutionCycleEnumeration" type="tns:ExecutionCycleEnumeration" />
<xs:complexType name="ListOfExecutionCycleEnumeration">
<xs:sequence>
<xs:element name="ExecutionCycleEnumeration" type="tns:ExecutionCycleEnumeration" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
<xs:element name="ListOfExecutionCycleEnumeration" type="tns:ListOfExecutionCycleEnumeration" nillable="true"></xs:element>
<xs:simpleType name="AcquisitionResultStatusEnumeration">
<xs:restriction base="xs:string">
<xs:enumeration value="NOT_USED_0" />
<xs:enumeration value="GOOD_1" />
<xs:enumeration value="BAD_2" />
<xs:enumeration value="UNKNOWN_3" />
<xs:enumeration value="PARTIAL_4" />
</xs:restriction>
</xs:simpleType>
<xs:element name="AcquisitionResultStatusEnumeration" type="tns:AcquisitionResultStatusEnumeration" />
<xs:complexType name="ListOfAcquisitionResultStatusEnumeration">
<xs:sequence>
<xs:element name="AcquisitionResultStatusEnumeration" type="tns:AcquisitionResultStatusEnumeration" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
<xs:element name="ListOfAcquisitionResultStatusEnumeration" type="tns:ListOfAcquisitionResultStatusEnumeration" nillable="true"></xs:element>
<xs:simpleType name="AlarmStateEnumeration">
<xs:restriction base="xs:string">
<xs:enumeration value="NORMAL_0" />
<xs:enumeration value="WARNING_LOW_1" />
<xs:enumeration value="WARNING_HIGH_2" />
<xs:enumeration value="WARNING_4" />
<xs:enumeration value="ALARM_LOW_8" />
<xs:enumeration value="ALARM_HIGH_16" />
<xs:enumeration value="ALARM_32" />
</xs:restriction>
</xs:simpleType>
<xs:element name="AlarmStateEnumeration" type="tns:AlarmStateEnumeration" />
<xs:complexType name="ListOfAlarmStateEnumeration">
<xs:sequence>
<xs:element name="AlarmStateEnumeration" type="tns:AlarmStateEnumeration" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
<xs:element name="ListOfAlarmStateEnumeration" type="tns:ListOfAlarmStateEnumeration" nillable="true"></xs:element>
</xs:schema>
|