Define xml schema for a styled letter : Useful Simple Type « XML Schema « XML






Define xml schema for a styled letter


File: Data.xml
<?xml version="1.0"?>

<letter xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:noNamespaceSchemaLocation="Schema.xsd">
  <greeting><hello/> Bob!</greeting>
  <body>
    text
    <item/> 
    text
    <price/>
    text
    text
    <arrivalDate/>.
  </body>
  <closing>Just closing.<lax/></closing>
</letter>
File: Schema.xsd
<?xml version="1.0"?>

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <xsd:element name="letter">
    <xsd:complexType mixed="true">
      <xsd:sequence>
        <xsd:element name="greeting">
          <xsd:complexType mixed="true">
            <xsd:choice>
              <xsd:element name="hello"/>
              <xsd:element name="hi"/>
              <xsd:element name="dear"/>
            </xsd:choice>
          </xsd:complexType>
        </xsd:element>
        <xsd:element name="body">
          <xsd:complexType mixed="true">
            <xsd:all>
              <xsd:element name="item"/>
              <xsd:element name="price"/>
              <xsd:element name="arrivalDate"/>
            </xsd:all>
          </xsd:complexType>
        </xsd:element>
        <xsd:element name="closing">
          <xsd:complexType mixed="true">
            <xsd:complexContent>
              <xsd:restriction base="xsd:anyType">
                <xsd:sequence>
                  <xsd:any processContents="lax"/>
                </xsd:sequence>
              </xsd:restriction>
            </xsd:complexContent>
          </xsd:complexType>
        </xsd:element>
      </xsd:sequence>
    </xsd:complexType>
  </xsd:element>
</xsd:schema>

 








Related examples in the same category

1.Zip code
2.Ocean states
3.Simple type for temperature
4.Simple type for length Units
5.Simple type for weight unit
6.SSN type with pattern
7.Schema for address
8.Canadian addresses require the name of a province, plus a postal code
9.Our addresses in Great Britain
10.extended datatype for the US addresses:
11.IP Addresses
12.Constrain our dotted-quad to use 3-digit numbers in the range 0 to 255
13.IPv6 addresses are easier to describe using a simple regex
14.Domain Names
15.Uniform Resource Identifiers
16.URI schema
17.Use simple strings for these various parts of a person's name
18.Gender code based on xs:nonNegativeInteger
19.telephone numbers
20.US postal address
21.Canadian postal codes are two fixed-length (3-character) codes separated by a single space
22.British postal codes
23.Mexican postal codes are simple five-digit numbers, with the first two digits representing a region, followed by three digits for zone and locality
24.Five-digit ZIP codes