-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathqualifieddc.xsd
40 lines (28 loc) · 1.3 KB
/
qualifieddc.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
elementFormDefault="qualified"
attributeFormDefault="unqualified">
<xs:annotation>
<xs:documentation xml:lang="en">
Qualified DC container XML Schema
Created 2008-02-11
Created by
Tim Cole ([email protected])
Tom Habing ([email protected])
Jane Hunter ([email protected])
Pete Johnston ([email protected]),
Carl Lagoze ([email protected])
This schema declares a container element for a Qualified DC application.
The declaration of the qualifieddc element uses the dcterms:elementOrRefinementContainer
complexType.
Note that this schema does not define a target namespace. The expectation is that
the qualifieddc element is assigned to a namespace by an application schema
which includes this schema.
</xs:documentation>
</xs:annotation>
<xs:import namespace="http://purl.org/dc/terms/"
schemaLocation="dcterms.xsd"/>
<xs:element name="qualifieddc" type="dcterms:elementOrRefinementContainer"/>
</xs:schema>