diff options
Diffstat (limited to 'xml/api/generic-list-2.4.rng')
-rw-r--r-- | xml/api/generic-list-2.4.rng | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/xml/api/generic-list-2.4.rng b/xml/api/generic-list-2.4.rng new file mode 100644 index 0000000..fee93a9 --- /dev/null +++ b/xml/api/generic-list-2.4.rng @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<grammar xmlns="http://relaxng.org/ns/structure/1.0" + datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"> + + <start> + <ref name="generic-list"/> + </start> + + <define name="generic-list"> + <element name="list"> + <attribute name="name"> <text /> </attribute> + <attribute name="count"> <data type="nonNegativeInteger" /> </attribute> + <choice> + <empty/> + <oneOrMore> + <externalRef href="item-1.1.rng"/> + </oneOrMore> + </choice> + </element> + </define> +</grammar> |