Top 1,000 Features Creators Resources Blog Explorer Download
GitHub icon

XSD

< >

XSD, aka XML Schema Definition, is a data validation language created in 2001.

#2121on PLDB 23Years Old

XSD (XML Schema Definition), a recommendation of the World Wide Web Consortium (W3C), specifies how to formally describe the elements in an Extensible Markup Language (XML) document. It can be used by programmers to verify each piece of item content in a document. They can check if it adheres to the description of the element it is placed in.Like all XML schema languages, XSD can be used to express a set of rules to which an XML document must conform in order to be considered "valid" according to that schema. Read more on Wikipedia...


Example from the web:
<xs:element name="PurchaseOrder" type="PurchaseOrderType"/> <xs:element name="gift"> <xs:complexType> <xs:sequence> <xs:element name="birthday" type="xs:date"/> <xs:element ref="PurchaseOrder"/> </xs:sequence> </xs:complexType> </xs:element>

View source

- Build the next great programming language About Acknowledgements Extensions Day 630 Donate feedback@pldb.io