-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinitial.rnc
33 lines (32 loc) · 837 Bytes
/
initial.rnc
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
default namespace = ""
start =
element configuration {
attribute environment { xsd:NCName },
attribute updated { text },
element channel {
attribute id { xsd:integer },
attribute label { text },
element products {
element product {
attribute code { xsd:NMTOKEN },
element group {
attribute code { text }
}
}*
},
element connections {
element connection {
attribute id { xsd:NMTOKEN },
element type {
attribute feed-type { xsd:NCName },
text
},
element protocol { text },
element ip { xsd:NMTOKEN }?,
element host-ip { xsd:NMTOKEN }+,
element port { xsd:integer },
element feed { xsd:NCName }
}+
}
}+
}