Reference defined data type with target namespace : Reference « XML Schema « XML

Home
XML
1.CSS Style
2.SVG
3.XML Schema
4.XQuery
5.XSLT stylesheet
XML » XML Schema » Reference 
Reference defined data type with target namespace

File: Data.xml

<?xml version="1.0"?>
<employees
  xmlns="http://www.java2s.com/employees"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://www.java2s.com/employees Schema.xsd"
  source="source"
  version="1.0">
  <employee person="persiondata" tags="tag content">
    <name>
      <first>first</first>
      <middle>middle</middle>
      <last>last</last>
    </name>
    <location>
      <latitude>1</latitude>
      <longitude>2</longitude>
      <address>USA</address>
    </location>
    <phone>1234567890</phone>
    <description>data<em>data</em></description>
  </employee>
</employees>


File: Schema.xsd

<?xml version="1.0"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
  xmlns:employees="http://www.java2s.com/employees"
  targetNamespace="http://www.java2s.com/employees"
  elementFormDefault="qualified">
  <attributeGroup name="employeeAttributes">
    <attribute name="version" type="decimal" fixed="1.0" />
    <attribute name="source" type="string"/>
  </attributeGroup>

  <element name="employees">
    <complexType>
      <sequence>
        <element name="employee" minOccurs="0" maxOccurs="unbounded">
          <complexType>
            <sequence>
              <element name="name" type="employees:NameType"/>
              <element name="location" type="employees:LocationType"/>
              <element name="phone" type="employees:PhoneType"/>
              <element name="description" type="employees:DescriptionType"/>
            </sequence>
            <attribute name="tags" type="token"/>
            <attribute name="person" type="ID"/>
          </complexType>
        </element>
      </sequence>
      <attributeGroup ref="employees:employeeAttributes"/>
    </complexType>
  </element>

  <complexType name="NameType">
    <group ref="employees:NameGroup"/>
    <attribute name="title" type="string"/>
  </complexType>

  <group name="NameGroup">
    <sequence>
      <element name="first" type="string" minOccurs="1" maxOccurs="unbounded"/>
      <element name="middle" type="string" minOccurs="0" maxOccurs="1"/>
      <element name="last" type="string"/>
    </sequence>
  </group>

  <complexType name="LocationType">
    <choice minOccurs="0" maxOccurs="unbounded">
      <element name="address" type="string"/>
      <sequence>
        <element name="latitude" type="float"/>
        <element name="longitude" type="float"/>
      </sequence>
    </choice>
  </complexType>

  <complexType name="PhoneType">
    <simpleContent>
      <extension base="string">
        <attribute name="kind" default="Home">
          <simpleType>
            <restriction base="string">
              <enumeration value="Home"/>
              <enumeration value="Work"/>
              <enumeration value="Cell"/>
              <enumeration value="Fax"/>
            </restriction>
          </simpleType>
        </attribute>
      </extension>
    </simpleContent>
  </complexType>

  <complexType name="DescriptionType" mixed="true">
    <choice minOccurs="0" maxOccurs="unbounded">
      <element name="em" type="string"/>
      <element name="strong" type="string"/>
      <element name="br" type="string"/>
    </choice>
  </complexType>

</schema>

 
Related examples in the same category
1.reference element
2.Set minOccurs, maxOccurs for referenced types
3.Reference your type with namespace
4.Refernece anonymous complexType
5.Nexted reference
6.reference with maxOccurs
7.Use ref to remove the nested definition
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.