-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgetfielddata.xsd
executable file
·66 lines (58 loc) · 2.02 KB
/
getfielddata.xsd
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<schema version="1.0" elementFormDefault="qualified"
xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://ge.com/predix/entity/getfielddata"
xmlns:fieldDataCriteria="http://ge.com/predix/entity/fielddatacriteria"
xmlns:fieldData="http://ge.com/predix/entity/fielddata"
xmlns:context="http://ge.com/predix/entity/context"
xmlns:errorDataEvent="http://ge.com/predix/entity/osa/errordataevent"
xmlns:map="http://ge.com/predix/entity/util/map" >
<import
schemaLocation="../fielddata/fielddata.xsd"
namespace="http://ge.com/predix/entity/fielddata">
</import>
<import
schemaLocation="../osa/errordataevent/errordataevent.xsd"
namespace="http://ge.com/predix/entity/osa/errordataevent">
</import>
<import schemaLocation="../fielddatacriteria/fielddatacriteria.xsd"
namespace="http://ge.com/predix/entity/fielddatacriteria">
</import>
<import
schemaLocation="../util/map/map.xsd"
namespace="http://ge.com/predix/entity/util/map" />
<import
schemaLocation="../context/context.xsd"
namespace="http://ge.com/predix/entity/context">
</import>
<element name="getFieldDataRequest">
<complexType>
<sequence>
<element name="correlationId" type="string"
minOccurs="0">
<annotation>
<documentation>
execution context id.
</documentation>
</annotation>
</element>
<element ref="fieldDataCriteria:fieldDataCriteria"
minOccurs="1" maxOccurs="unbounded">
</element>
<element minOccurs="0" ref="map:externalAttributeMap" />
</sequence>
</complexType>
</element>
<element name="getFieldDataResult">
<complexType>
<sequence>
<element ref="fieldData:fieldData" minOccurs="0"
maxOccurs="unbounded" />
<element name="errorEvent" type="string"
minOccurs="0" maxOccurs="unbounded">
</element>
<element minOccurs="0" ref="map:externalAttributeMap" />
</sequence>
</complexType>
</element>
</schema>