add files
This commit is contained in:
11
temp/exificient/data/W3C/PrimerNotebook/notebook.xml
Normal file
11
temp/exificient/data/W3C/PrimerNotebook/notebook.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<notebook date="2007-09-12">
|
||||
<note date="2007-07-23" category="EXI">
|
||||
<subject>EXI</subject>
|
||||
<body>Do not forget it!</body>
|
||||
</note>
|
||||
<note date="2007-09-12">
|
||||
<subject>shopping list</subject>
|
||||
<body>milk, honey</body>
|
||||
</note>
|
||||
</notebook>
|
||||
27
temp/exificient/data/W3C/PrimerNotebook/notebook.xsd
Normal file
27
temp/exificient/data/W3C/PrimerNotebook/notebook.xsd
Normal file
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
|
||||
|
||||
<xs:element name="notebook">
|
||||
<xs:complexType>
|
||||
<xs:sequence maxOccurs="unbounded">
|
||||
<xs:element name="note" type="Note"/>
|
||||
</xs:sequence>
|
||||
<xs:attribute ref="date"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:complexType name="Note">
|
||||
<xs:sequence>
|
||||
<xs:element name="subject" type="xs:string"/>
|
||||
<xs:element name="body" type="xs:string"/>
|
||||
</xs:sequence>
|
||||
|
||||
<xs:attribute ref="date" use="required"/>
|
||||
<xs:attribute name="category" type="xs:string"/>
|
||||
|
||||
</xs:complexType>
|
||||
|
||||
<xs:attribute name="date" type="xs:date"/>
|
||||
</xs:schema>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user