main
1<?xml version="1.0" encoding="UTF-8"?>
2<xs:schema targetNamespace="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"
3 xmlns="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"
4 xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:dc="http://purl.org/dc/elements/1.1/"
5 xmlns:dcterms="http://purl.org/dc/terms/" elementFormDefault="qualified" blockDefault="#all">
6
7 <xs:import namespace="http://purl.org/dc/elements/1.1/"
8 schemaLocation="http://dublincore.org/schemas/xmls/qdc/2003/04/02/dc.xsd"/>
9 <xs:import namespace="http://purl.org/dc/terms/"
10 schemaLocation="http://dublincore.org/schemas/xmls/qdc/2003/04/02/dcterms.xsd"/>
11 <xs:import id="xml" namespace="http://www.w3.org/XML/1998/namespace"/>
12
13 <xs:element name="coreProperties" type="CT_CoreProperties"/>
14
15 <xs:complexType name="CT_CoreProperties">
16 <xs:all>
17 <xs:element name="category" minOccurs="0" maxOccurs="1" type="xs:string"/>
18 <xs:element name="contentStatus" minOccurs="0" maxOccurs="1" type="xs:string"/>
19 <xs:element ref="dcterms:created" minOccurs="0" maxOccurs="1"/>
20 <xs:element ref="dc:creator" minOccurs="0" maxOccurs="1"/>
21 <xs:element ref="dc:description" minOccurs="0" maxOccurs="1"/>
22 <xs:element ref="dc:identifier" minOccurs="0" maxOccurs="1"/>
23 <xs:element name="keywords" minOccurs="0" maxOccurs="1" type="CT_Keywords"/>
24 <xs:element ref="dc:language" minOccurs="0" maxOccurs="1"/>
25 <xs:element name="lastModifiedBy" minOccurs="0" maxOccurs="1" type="xs:string"/>
26 <xs:element name="lastPrinted" minOccurs="0" maxOccurs="1" type="xs:dateTime"/>
27 <xs:element ref="dcterms:modified" minOccurs="0" maxOccurs="1"/>
28 <xs:element name="revision" minOccurs="0" maxOccurs="1" type="xs:string"/>
29 <xs:element ref="dc:subject" minOccurs="0" maxOccurs="1"/>
30 <xs:element ref="dc:title" minOccurs="0" maxOccurs="1"/>
31 <xs:element name="version" minOccurs="0" maxOccurs="1" type="xs:string"/>
32 </xs:all>
33 </xs:complexType>
34
35 <xs:complexType name="CT_Keywords" mixed="true">
36 <xs:sequence>
37 <xs:element name="value" minOccurs="0" maxOccurs="unbounded" type="CT_Keyword"/>
38 </xs:sequence>
39 <xs:attribute ref="xml:lang" use="optional"/>
40 </xs:complexType>
41
42 <xs:complexType name="CT_Keyword">
43 <xs:simpleContent>
44 <xs:extension base="xs:string">
45 <xs:attribute ref="xml:lang" use="optional"/>
46 </xs:extension>
47 </xs:simpleContent>
48 </xs:complexType>
49
50</xs:schema>