1# CHART OOL Limits definition files
2
3namespace xsi = "http://www.w3.org/2001/XMLSchema-instance"
4
5grammar {
6
7 start =
8 element limits {
9 attribute xsi:noNamespaceSchemaLocation { "http://chart/schemas/limits.xsd" } ? &
10 element yellow { limit + } * &
11 element red { limit + } *
12 }
13
14 limit =
15 element order { xsd:integer { minInclusive="1" } } &
16 element low { xsd:float ? } &
17 element high { xsd:float ? } &
18 element applicability {
19 element parameter { text } &
20 element value { xsd:float }
21 } ?
22}