-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
got the schema for the <about> section
wget --directory-prefix=src/main/resources/schemas/cached/ http://www.openarchives.org/OAI/2.0/provenance.xsd
- Loading branch information
1 parent
f323ea5
commit 9683ca5
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<schema targetNamespace="http://www.openarchives.org/OAI/2.0/provenance" | ||
xmlns="http://www.w3.org/2001/XMLSchema" | ||
xmlns:provenance="http://www.openarchives.org/OAI/2.0/provenance" | ||
elementFormDefault="qualified" attributeFormDefault="unqualified"> | ||
|
||
<annotation> | ||
<documentation> | ||
Schema for the description of the provenance of metadata that is | ||
re-exposed by an OAI repository, i.e. metadata that has previously | ||
been harvested before being exposed by the repository. | ||
See: http://www.openarchives.org/OAI/2.0/guidelines-provenance.htm | ||
Validated with http://www.w3.org/2001/03/webdata/xsv on 2002/05/16 | ||
Revised 2002/11/28 to correct URL in this comment | ||
Validated with http://www.w3.org/2001/03/webdata/xsv of 2002/11/25 on 2002/11/28 | ||
Simeon Warner - $Date: 2002/11/28 18:27:17 $ | ||
</documentation> | ||
</annotation> | ||
|
||
<element name="provenance"> | ||
<complexType> | ||
<sequence> | ||
<element name="originDescription" | ||
type="provenance:originDescriptionType"/> | ||
</sequence> | ||
</complexType> | ||
</element> | ||
|
||
<complexType name="originDescriptionType"> | ||
<sequence> | ||
<element name="baseURL" type="anyURI"/> | ||
<element name="identifier" type="anyURI"/> | ||
<element name="datestamp" type="provenance:UTCdatetimeType"/> | ||
<element name="metadataNamespace" type="anyURI"/> | ||
<element name="originDescription" minOccurs="0" | ||
type="provenance:originDescriptionType"/> | ||
</sequence> | ||
<attribute name="harvestDate" type="provenance:UTCdatetimeType" use="required"/> | ||
<attribute name="altered" type="boolean" use="required"/> | ||
</complexType> | ||
|
||
<simpleType name="UTCdatetimeType"> | ||
<union memberTypes="date dateTime"/> | ||
</simpleType> | ||
|
||
</schema> |