PowerCenter
- PowerCenter 10.4.0
- All Products
<example>xmlns:math= “http://www.mathtables.com”xmlns:furniture= “http://www.home.com”> <math:table>4X6</math:table> <furniture:table>Brueners </furniture:table> </example>
<?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.w3XML.com" xmlns="http://www.w3XML.com" elementFormDefault="qualified">... ...</xs:schema>
Schema Declaration | Description |
---|---|
xmlns:xs="http://www.w3.org/2001/XMLSchema" | Namespace that contains the native XML schema and datatypes. In this example, each schema component has the prefix of “xs.” |
targetNamespace="http://www.w3XML.com" | Namespace that contains the schema. |
xmlns="http://www.w3XML.com" | Default namespace declaration. All elements in the schema that have no prefix belong to the default namespace. Declare a default namespace by using an xmlns attribute with no prefix. |
elementFormDefault="qualified" | Specifies that any element in the schema must have a namespace in the XML file. |