Skip to content

Instantly share code, notes, and snippets.

@geoHeil
Last active June 2, 2016 16:48
Show Gist options
  • Save geoHeil/865af42ddfeb2707150cb5ef05a7b3e5 to your computer and use it in GitHub Desktop.
Save geoHeil/865af42ddfeb2707150cb5ef05a7b3e5 to your computer and use it in GitHub Desktop.
someAwesomeSchema.xsd
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xsd:schema version="1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" vc:minVersion="1.1"
targetNamespace="http://some/awesome/schema"
xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning">
<xsd:element name="myElem" type="myElem"/>
<xsd:complexType name="myElem">
<xsd:sequence>
<xsd:element name="geburtsdatum" type="xsd:date" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment