-
Notifications
You must be signed in to change notification settings - Fork 0
/
distributed-application-common.xsd
51 lines (43 loc) · 1.44 KB
/
distributed-application-common.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
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
attributeFormDefault="unqualified"
elementFormDefault="qualified">
<xs:simpleType name="languageType">
<xs:restriction base="xs:string">
<xs:enumeration value="Java" />
<xs:enumeration value="C" />
<xs:enumeration value="C++" />
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="enumLiteral">
<xs:restriction base="xs:string">
<xs:pattern value="[A-Z][A-Z0-9_]+"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="facetName">
<xs:restriction base="xs:string">
<xs:pattern value="[a-z][a-zA-Z0-9_]+"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="argumentName">
<xs:restriction base="xs:string">
<xs:pattern value="[a-z][a-zA-Z0-9_]+"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="processName">
<xs:restriction base="xs:string">
<xs:pattern value="[a-zA-Z][a-zA-Z0-9_]+"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="instanceID">
<xs:restriction base="xs:string">
<xs:pattern value="[a-zA-Z][a-zA-Z0-9_]+"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="deploymentName">
<xs:restriction base="xs:string">
<xs:pattern value="[a-zA-Z][a-zA-Z0-9_]+"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>