Using InfoSphere MDM schema for locales

The InfoSphere® MDM schema for locales provides support for introducing translatable content into internal schemas.

The following example illustrates how this schema is constructed:
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            targetNamespace="http://www.ibm.com/mdm/data/system/localemap/00000001"
            xmlns:localemap="http://www.ibm.com/mdm/data/system/localemap/00000001"
            elementFormDefault="qualified">

  <xsd:element name="localeMap">
    <xsd:complexType>
      <xsd:sequence>
        <xsd:element name="locale" minOccurs="0" maxOccurs="unbounded">
          <xsd:complexType>
            <xsd:sequence>
              <xsd:element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
              <xsd:element name="description" type="xsd:string" minOccurs="0" maxOccurs="1" />
            </xsd:sequence>
          </xsd:complexType>
        </xsd:element>
      </xsd:sequence>
    </xsd:complexType>
  </xsd:element>
</xsd:schema>