diff options
author | Mike Gerwitz <gerwitzm@lovullo.com> | 2017-05-01 15:14:19 -0400 |
---|---|---|
committer | Mike Gerwitz <gerwitzm@lovullo.com> | 2017-07-05 13:51:28 -0400 |
commit | 629aa9d342fa11c7b183a4aa746b9cea457c04f3 (patch) | |
tree | a8c0c666e880730c5aa473edb994f4b88352f21a /c1map.xsd | |
parent | 12f3fa5b6eaa2ee2801357550bc38828c209d523 (diff) | |
download | tame-629aa9d342fa11c7b183a4aa746b9cea457c04f3.tar.gz tame-629aa9d342fa11c7b183a4aa746b9cea457c04f3.tar.bz2 tame-629aa9d342fa11c7b183a4aa746b9cea457c04f3.zip |
c1map.xsd: Add schema
This just ignores everything for now.
Diffstat (limited to 'c1map.xsd')
-rw-r--r-- | c1map.xsd | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/c1map.xsd b/c1map.xsd new file mode 100644 index 0000000..d968e16 --- /dev/null +++ b/c1map.xsd @@ -0,0 +1,18 @@ +<?xml version="1.0"?> +<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://www.lovullo.com/rater/map/c1" + xmlns="http://www.lovullo.com/rater/map/c1" + elementFormDefault="qualified"> + + + <!-- TODO: an actual XSD; this just ignores everything --> + <xs:element name="c1-map"> + <xs:complexType> + <xs:sequence> + <xs:any namespace="##any" minOccurs="0" maxOccurs="unbounded" processContents="lax" /> + </xs:sequence> + + <xs:anyAttribute namespace="##any" processContents="lax" /> + </xs:complexType> + </xs:element> +</xs:schema> |