<XML Schema อ้างอิงที่สมบูรณ์
ความหมายและการใช้งาน
องค์ประกอบที่สร้างนิยามใหม่นิยามใหม่ประเภทที่ง่ายและซับซ้อนกลุ่มและกลุ่มแอตทริบิวต์จากสคีภายนอก
องค์ประกอบข้อมูล
- Parent elements: สคี
วากยสัมพันธ์
<redefine
id=ID
schemaLocation=anyURI
any attributes
>
(annotation|(simpleType|complexType|group|attributeGroup))*
</redefine>
คุณลักษณะ | ลักษณะ |
---|---|
id | ไม่จำเป็น ระบุรหัสเฉพาะสำหรับองค์ประกอบ |
schemaLocation | จำเป็นต้องใช้ URI ที่ไปยังสถานที่ของเอกสารคีมาที่ |
any attributes | ไม่จำเป็น ระบุคุณลักษณะอื่น ๆ ใด ๆ ที่ไม่ใช่สคี namespace |
ตัวอย่างที่ 1
ตัวอย่างต่อไปนี้แสดงให้เห็นถึงคี Myschama2.xsd มีองค์ประกอบที่ระบุโดย Myschama1.xsd ประเภท pname เป็นนิยามใหม่ ตามแบบแผนนี้องค์ประกอบ จำกัด โดยประเภท pname จะต้องจบลงด้วยการ "country" องค์ประกอบ:
Myschema1.xsd:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="pname">
<xs:sequence>
<xs:element name="firstname"/>
<xs:element name="lastname"/>
</xs:sequence>
</xs:complexType>
<xs:element name="customer" type="pname"/>
</xs:schema>
Myschema2.xsd:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:redefine schemaLocation="Myschema1.xsd">
<xs:complexType name="pname">
<xs:complexContent>
<xs:extension base="pname">
<xs:sequence>
<xs:element name="country"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:redefine>
<xs:element name="author" type="pname"/>
</xs:schema>
<XML Schema อ้างอิงที่สมบูรณ์