|
XML schema is some other XML file which like DTD defines the
type of document contents. Ths most famous is W3C XML schema but
there could other means to declare the document.
An example below shows generic XML schema content. Its root element
is schema. Besides namespace-prefix mapping it can contains some
set of attributes. Here we enable full-qualified names for elements
and names only (without namespace prfixes) for attributes:
<?xml version="1.0" encoding="UTF-8"?>
////////////// schema declaration, customization:
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified"
attributeFormDefault="unqualified">
////////////// declaration of our root element:
<xs:element name="purchase-order">
...
</xs:element>
</xs:schema>
|
Related Tips
|
Page 1 of 0 ( 0 comments )
You can share your information about this topic using the form below!
Please do not post your questions with this form! Thanks.