Internal spec schema target namespace

The target namespace for the internal schema must conform a specific format.

<targetNamespacePrefix>/<specName>/internal/<specFormatNumber>
The target namespace prefix is specified by the InfoSphere® MDM Workbench Spec wizard. The spec format number defines the version level of the schema. On the file system, the name of the spec format folder where the internal schema is located, must match the spec format number in the target namespace. For example, when declaring a spec named MyExampleSpec with a namespace prefix of http://www.myCompany.com/mdm, the namespace for the first spec format is:
<?xml version='1.0' encoding='UTF-8'?>
<xsd:schema
  elementFormDefault='qualified'
  targetNamespace='http://www.myCompany.com/mdm/MyExampleSpec/internal/00000001'
  xmlns:xsd='http://www.w3.org/2001/XMLSchema'
  xmlns:mdmspec='http://www.ibm.com/mdm/system/specs/mdmspec/internal/00000001'
  xmlns:MyExampleSpec='http://www.myCompany.com/mdm/MyExampleSpec/internal/00000001'>
In addition, an xmlns prefix for the target namespace must match be declared and must match the name of the spec, as illustrated in the last line of the preceding schema snippet.