
An XML schema is a description of a type of XML document, typically expressed in terms of constraints on the structure and content of documents of that type, above and beyond the basic syntactical constraints imposed by XML itself.
The XML Schema language is also referred to as XML Schema Definition (XSD).
The purpose of an XML Schema is to define the legal building blocks of an XML document:
- the elements and attributes that can appear in a document
- the number of (and order of) child elements
- data types for elements and attributes
- default and fixed values for elements and attributes
In the XML world, hundreds of standardized XML formats are in daily use.
Many of these XML standards are defined by XML Schemas.
XML Schema is an XML-based (and more powerful) alternative to DTD.
One of the greatest strength of XML Schemas is the support for data types.
- It is easier to describe allowable document content
- It is easier to validate the correctness of data
- It is easier to define data facets (restrictions on data)
- It is easier to define data patterns (data formats)
- It is easier to convert data between different data types
Curriculum
- 16 Sections
- 45 Lessons
- 10 Weeks
- XML Schema IntroductionAn XML Schema describes the structure of an XML document. The XML Schema language is also referred to as XML Schema Definition (XSD).7
- XSD How To?XML documents can have a reference to a DTD or to an XML Schema.4
- XSD - The ElementThe element is the root element of every XML Schema.2
- XSD Simple ElementsXML Schemas define the elements of your XML files. A simple element is an XML element that contains only text. It cannot contain any other elements or attributes.3
- XSD AttributesAll attributes are declared as simple types.5
- XSD Restrictions/FacetsRestrictions are used to define acceptable values for XML elements or attributes. Restrictions on XML elements are called facets.7
- XSD Complex ElementsA complex element contains other elements and/or attributes.2
- XSD Empty ElementsAn empty complex element cannot have contents, only attributes.1
- XSD Elements OnlyAn "elements-only" complex type contains an element that contains only other elements.1
- XSD Text-Only ElementsA complex text-only element can contain text and attributes.1
- XSD Mixed ContentA mixed complex type element can contain attributes, elements, and text.1
- XSD IndicatorsWe can control HOW elements are to be used in documents with indicators.3
- XSD The ElementThe element enables us to extend the XML document with elements not specified by the schema!1
- XSD The ElementThe element enables us to extend the XML document with attributes not specified by the schema!1
- XSD Element SubstitutionWith XML Schemas, one element can substitute another element.2
- An XSD ExampleThis chapter will demonstrate how to write an XML Schema. You will also learn that a schema can be written in different ways.4