Skip to content

Commit

Permalink
Move the XSD from the original draft contents
Browse files Browse the repository at this point in the history
  • Loading branch information
wrygiel committed Sep 15, 2017
1 parent ff96293 commit 32d367d
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions schema.xsd
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<xsd:schema
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="https://opencaching.pl/okapi/static/ocgpx/1"
targetNamespace="https://opencaching.pl/okapi/static/ocgpx/1"
elementFormDefault="qualified">

<xsd:annotation>
<xsd:documentation>
Common Opencaching extensions to the Topografix GPX schema.
</xsd:documentation>
</xsd:annotation>

<xsd:element name="cache" type="cache_type" />

<xsd:complexType name="cache_type">
<xsd:sequence>
<xsd:element name="logpw" type="xsd:boolean" minOccurs="1" maxOccurs="1" />
</xsd:sequence>
</xsd:complexType>

<xsd:element name="log" type="log_type" />

<xsd:complexType name="log_type">
<xsd:sequence>
<xsd:element name="uuid" type="xsd:string" minOccurs="1" maxOccurs="1" />
</xsd:sequence>
</xsd:complexType>

</xsd:schema>

0 comments on commit 32d367d

Please sign in to comment.