-
Notifications
You must be signed in to change notification settings - Fork 20
/
semantic types.xml
53 lines (53 loc) · 1.76 KB
/
semantic types.xml
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
<?xml version="1.0" encoding="utf-8"?>
<Schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SemanticTypesContainer>
<SemanticTypesContainer Name="Core Types">
<SemanticTypes>
<SemanticType Name="Url">
<NativeTypes>
<NativeType Name="Value" ImplementingType="string" />
</NativeTypes>
<SubTypes />
</SemanticType>
<SemanticType Name="Name">
<NativeTypes>
<NativeType Name="Value" ImplementingType="string" />
</NativeTypes>
<SubTypes />
</SemanticType>
<SemanticType Name="Filename">
<NativeTypes />
<SubTypes>
<SubType Name="Path" />
<SubType Name="Name" />
<SubType Name="FileExtension" />
</SubTypes>
</SemanticType>
<SemanticType Name="Path">
<NativeTypes>
<NativeType Name="Value" ImplementingType="string" />
</NativeTypes>
<SubTypes />
</SemanticType>
<SemanticType Name="FileExtension">
<NativeTypes>
<NativeType Name="Value" ImplementingType="string" />
</NativeTypes>
<SubTypes />
</SemanticType>
<SemanticType Name="TextMessage">
<NativeTypes />
<SubTypes>
<SubType Name="Text" />
</SubTypes>
</SemanticType>
<SemanticType Name="Text">
<NativeTypes>
<NativeType Name="Value" ImplementingType="string" />
</NativeTypes>
<SubTypes />
</SemanticType>
</SemanticTypes>
</SemanticTypesContainer>
</SemanticTypesContainer>
</Schema>