-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathexample.xml
More file actions
97 lines (96 loc) · 4.43 KB
/
example.xml
File metadata and controls
97 lines (96 loc) · 4.43 KB
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
<schema>
<knot mnemonic="PAT" descriptor="ParentalType" identity="tinyint" dataRange="varchar(42)">
<metadata equivalent="true"/>
</knot>
<knot mnemonic="GEN" descriptor="Gender" identity="bit" dataRange="varchar(42)">
<metadata equivalent="true"/>
</knot>
<knot mnemonic="PLV" descriptor="ProfessionalLevel" identity="tinyint" dataRange="varchar(max)">
<metadata checksum="true"/>
</knot>
<knot mnemonic="UTL" descriptor="Utilization" identity="tinyint" dataRange="tinyint">
<metadata equivalent="true"/>
</knot>
<knot mnemonic="ONG" descriptor="Ongoing" identity="tinyint" dataRange="varchar(3)"/>
<knot mnemonic="RAT" descriptor="Rating" identity="tinyint" dataRange="varchar(42)"/>
<knot mnemonic="ETY" descriptor="EventType" identity="tinyint" dataRange="varchar(42)"/>
<anchor mnemonic="PN" descriptor="Person" identity="int"/>
<anchor mnemonic="ST" descriptor="Stage" identity="int">
<attribute mnemonic="NAM" descriptor="Name" timeRange="datetime" dataRange="varchar(42)">
<metadata equivalent="true"/>
<key stop="1" route="2nd" of="ST" branch="1"/>
</attribute>
<attribute mnemonic="LOC" descriptor="Location" dataRange="geography">
<key stop="1" route="1st" of="ST" branch="1"/>
<key stop="3" route="1st" of="EV" branch="2"/>
<metadata checksum="true"/>
</attribute>
<attribute mnemonic="AVG" descriptor="Average" timeRange="datetime" knotRange="UTL"/>
<attribute mnemonic="MIN" descriptor="Minimum" knotRange="UTL"/>
<identifier route="1st"/>
<identifier route="2nd"/>
</anchor>
<anchor mnemonic="AC" descriptor="Actor" identity="int">
<attribute mnemonic="NAM" descriptor="Name" timeRange="datetime" dataRange="varchar(42)">
<key stop="1" route="1st" of="AC"/>
</attribute>
<attribute mnemonic="GEN" descriptor="Gender" knotRange="GEN"/>
<attribute mnemonic="PLV" descriptor="ProfessionalLevel" timeRange="datetime" knotRange="PLV"/>
<identifier route="1st"/>
</anchor>
<anchor mnemonic="PR" descriptor="Program" identity="int">
<attribute mnemonic="NAM" descriptor="Name" dataRange="varchar(42)">
<metadata equivalent="true"/>
<key stop="1" route="1st" of="PR" branch="1"/>
<key stop="5" route="1st" of="EV" branch="3"/>
</attribute>
<identifier route="1st"/>
</anchor>
<nexus mnemonic="EV" descriptor="Event" identity="int">
<attribute mnemonic="DAT" descriptor="Date" dataRange="datetime" chronicle="1">
<key stop="1" route="1st" of="EV" branch="1"/>
</attribute>
<attribute mnemonic="AUD" descriptor="Audience" dataRange="int"/>
<attribute mnemonic="REV" descriptor="Revenue" dataRange="money"/>
<role role="wasHeldAt" type="ST" identifier="false">
<key stop="2" route="1st" of="EV" branch="2"/>
</role>
<role role="wasPlayed" type="PR" identifier="false">
<key stop="4" route="1st" of="EV" branch="3"/>
</role>
<role role="of" type="ETY" identifier="false"/>
<identifier route="1st"/>
</nexus>
<tie timeRange="datetime">
<role role="exclusive" type="AC" identifier="false"/>
<role role="with" type="AC" identifier="false"/>
<role role="currently" type="ONG" identifier="false"/>
</tie>
<tie>
<role role="subset" type="AC" identifier="false"/>
<role role="of" type="PN" identifier="false"/>
</tie>
<tie>
<role role="in" type="EV" identifier="true"/>
<role role="wasCast" type="AC" identifier="true"/>
</tie>
<tie timeRange="datetime">
<role role="part" type="AC" identifier="true"/>
<role role="in" type="PR" identifier="true"/>
<role role="got" type="RAT" identifier="false"/>
</tie>
<tie timeRange="datetime">
<role role="at" type="ST" identifier="true"/>
<role role="isPlaying" type="PR" identifier="true"/>
</tie>
<tie>
<role role="parent" type="AC" identifier="true"/>
<role role="child" type="AC" identifier="true"/>
<role role="having" type="PAT" identifier="true"/>
</tie>
<tie>
<role role="content" type="PR" identifier="false"/>
<role role="location" type="ST" identifier="false"/>
<role role="of" type="EV" identifier="true"/>
</tie>
</schema>