From 16f695c7aed63feeb87ac60dbcfb54f2a1cbfc6b Mon Sep 17 00:00:00 2001 From: Manu Sporny Date: Sat, 8 May 2010 14:44:21 -0400 Subject: [PATCH] Initial commit of Dublin Core Vocabulary Management Tool. --- 2007-06-17/dcmitype-changes.txt | 55 + 2007-06-17/dcmitype-testdata.xml | 77 + 2007-06-17/schemes-changes-SES.txt | 65 + 2007-06-17/schemes-changes-VES.txt | 65 + 2007-06-17/schemes-testdata.xml | 109 + 2007-06-17/terms-changes.txt | 67 + 2007-06-17/terms-testdata.xml | 51 + 2007-08-15/dces.xml | 2259 ++++++++++++++++ 2007-08-15/dcmitype.xml | 761 ++++++ 2007-08-15/header.dces.xml | 31 + 2007-08-15/header.dcmi-terms.xml | 23 + 2007-08-15/header.dcmi-type-vocabulary.xml | 24 + 2007-08-15/header.dcmitype.xml | 35 + 2007-08-15/header.dcq.xml | 30 + 2007-08-15/header.history.xml | 28 + 2007-08-15/intro.dcmi-terms.xsl | 211 ++ 2007-08-15/intro.history.xsl | 86 + 2007-08-15/mn-dcmi-class-list.xml | 129 + 2007-08-15/schemes.xml | 996 +++++++ 2007-08-15/terms.xml | 1897 ++++++++++++++ 2007-12-07/headers/header-doc-dcterms.xml | 19 + 2007-12-07/headers/header-doc-dctype.xml | 18 + 2007-12-07/headers/header-doc-history.xml | 18 + 2007-12-07/headers/header-rdf-dcam.xml | 7 + 2007-12-07/headers/header-rdf-dcelements.xml | 7 + 2007-12-07/headers/header-rdf-dcterms.xml | 7 + 2007-12-07/headers/header-rdf-dctype.xml | 7 + 2007-12-07/headers/intro.dcmi-terms.xsl | 211 ++ 2007-12-07/headers/intro.history.xsl | 86 + 2007-12-07/xmldata/dcam.xml | 35 + 2007-12-07/xmldata/dcelements.xml | 1909 ++++++++++++++ 2007-12-07/xmldata/dcterms-classes.xml | 329 +++ 2007-12-07/xmldata/dcterms-properties.xml | 2226 ++++++++++++++++ 2007-12-07/xmldata/dcterms-ses.xml | 525 ++++ 2007-12-07/xmldata/dcterms-ves.xml | 473 ++++ 2007-12-07/xmldata/dctype.xml | 739 ++++++ 2007-12-18/headers/header-doc-dcterms.xml | 19 + 2007-12-18/headers/header-doc-dctype.xml | 18 + 2007-12-18/headers/header-doc-history.xml | 18 + 2007-12-18/headers/header-rdf-dcam.xml | 7 + 2007-12-18/headers/header-rdf-dcelements.xml | 7 + 2007-12-18/headers/header-rdf-dcterms.xml | 7 + 2007-12-18/headers/header-rdf-dctype.xml | 7 + 2007-12-18/headers/intro.dcmi-terms.xsl | 323 +++ 2007-12-18/headers/intro.history.xsl | 86 + 2007-12-18/xmldata/dcam.xml | 37 + 2007-12-18/xmldata/dcelements.xml | 1939 ++++++++++++++ 2007-12-18/xmldata/dcterms-classes.xml | 351 +++ 2007-12-18/xmldata/dcterms-properties.xml | 2281 +++++++++++++++++ 2007-12-18/xmldata/dcterms-ses.xml | 536 ++++ 2007-12-18/xmldata/dcterms-ves.xml | 482 ++++ 2007-12-18/xmldata/dctype.xml | 751 ++++++ 2008-01-14/headers/header-doc-dcterms.xml | 19 + 2008-01-14/headers/header-doc-dctype.xml | 18 + 2008-01-14/headers/header-doc-history.xml | 18 + 2008-01-14/headers/header-rdf-dcam.xml | 7 + 2008-01-14/headers/header-rdf-dcelements.xml | 7 + 2008-01-14/headers/header-rdf-dcterms.xml | 7 + 2008-01-14/headers/header-rdf-dctype.xml | 7 + 2008-01-14/headers/intro.dcmi-terms.xsl | 328 +++ 2008-01-14/headers/intro.history.xsl | 86 + 2008-01-14/xmldata/dcam.xml | 57 + 2008-01-14/xmldata/dcelements.xml | 1939 ++++++++++++++ 2008-01-14/xmldata/dcterms-classes.xml | 351 +++ 2008-01-14/xmldata/dcterms-properties.xml | 2281 +++++++++++++++++ 2008-01-14/xmldata/dcterms-ses.xml | 536 ++++ 2008-01-14/xmldata/dcterms-ves.xml | 482 ++++ 2008-01-14/xmldata/dctype.xml | 751 ++++++ LICENSE | 48 + README | 131 + archive/src-old/org/dublincore/vmt/tools/myxt | 6 + .../org/dublincore/vmt/tools/myxt.java | 73 + .../org/dublincore/vmt/tools/usage.java | 103 + build.xml | 115 + web/xsl/common-templates.xsl | 348 +++ web/xsl/dcam.xsl | 81 + web/xsl/dcelements.xsl | 61 + web/xsl/dcterms.xsl | 104 + web/xsl/dctype.xsl | 48 + web/xsl/html-dcmiterms.xsl | 405 +++ web/xsl/html-dctype.xsl | 196 ++ web/xsl/html-history.xsl | 219 ++ 82 files changed, 29316 insertions(+) create mode 100755 2007-06-17/dcmitype-changes.txt create mode 100755 2007-06-17/dcmitype-testdata.xml create mode 100755 2007-06-17/schemes-changes-SES.txt create mode 100755 2007-06-17/schemes-changes-VES.txt create mode 100755 2007-06-17/schemes-testdata.xml create mode 100755 2007-06-17/terms-changes.txt create mode 100755 2007-06-17/terms-testdata.xml create mode 100755 2007-08-15/dces.xml create mode 100755 2007-08-15/dcmitype.xml create mode 100755 2007-08-15/header.dces.xml create mode 100755 2007-08-15/header.dcmi-terms.xml create mode 100755 2007-08-15/header.dcmi-type-vocabulary.xml create mode 100755 2007-08-15/header.dcmitype.xml create mode 100755 2007-08-15/header.dcq.xml create mode 100755 2007-08-15/header.history.xml create mode 100755 2007-08-15/intro.dcmi-terms.xsl create mode 100755 2007-08-15/intro.history.xsl create mode 100755 2007-08-15/mn-dcmi-class-list.xml create mode 100755 2007-08-15/schemes.xml create mode 100755 2007-08-15/terms.xml create mode 100755 2007-12-07/headers/header-doc-dcterms.xml create mode 100755 2007-12-07/headers/header-doc-dctype.xml create mode 100755 2007-12-07/headers/header-doc-history.xml create mode 100755 2007-12-07/headers/header-rdf-dcam.xml create mode 100755 2007-12-07/headers/header-rdf-dcelements.xml create mode 100755 2007-12-07/headers/header-rdf-dcterms.xml create mode 100755 2007-12-07/headers/header-rdf-dctype.xml create mode 100755 2007-12-07/headers/intro.dcmi-terms.xsl create mode 100755 2007-12-07/headers/intro.history.xsl create mode 100755 2007-12-07/xmldata/dcam.xml create mode 100755 2007-12-07/xmldata/dcelements.xml create mode 100755 2007-12-07/xmldata/dcterms-classes.xml create mode 100755 2007-12-07/xmldata/dcterms-properties.xml create mode 100755 2007-12-07/xmldata/dcterms-ses.xml create mode 100755 2007-12-07/xmldata/dcterms-ves.xml create mode 100755 2007-12-07/xmldata/dctype.xml create mode 100755 2007-12-18/headers/header-doc-dcterms.xml create mode 100755 2007-12-18/headers/header-doc-dctype.xml create mode 100755 2007-12-18/headers/header-doc-history.xml create mode 100755 2007-12-18/headers/header-rdf-dcam.xml create mode 100755 2007-12-18/headers/header-rdf-dcelements.xml create mode 100755 2007-12-18/headers/header-rdf-dcterms.xml create mode 100755 2007-12-18/headers/header-rdf-dctype.xml create mode 100755 2007-12-18/headers/intro.dcmi-terms.xsl create mode 100755 2007-12-18/headers/intro.history.xsl create mode 100755 2007-12-18/xmldata/dcam.xml create mode 100755 2007-12-18/xmldata/dcelements.xml create mode 100755 2007-12-18/xmldata/dcterms-classes.xml create mode 100755 2007-12-18/xmldata/dcterms-properties.xml create mode 100755 2007-12-18/xmldata/dcterms-ses.xml create mode 100755 2007-12-18/xmldata/dcterms-ves.xml create mode 100755 2007-12-18/xmldata/dctype.xml create mode 100755 2008-01-14/headers/header-doc-dcterms.xml create mode 100755 2008-01-14/headers/header-doc-dctype.xml create mode 100755 2008-01-14/headers/header-doc-history.xml create mode 100755 2008-01-14/headers/header-rdf-dcam.xml create mode 100755 2008-01-14/headers/header-rdf-dcelements.xml create mode 100755 2008-01-14/headers/header-rdf-dcterms.xml create mode 100755 2008-01-14/headers/header-rdf-dctype.xml create mode 100755 2008-01-14/headers/intro.dcmi-terms.xsl create mode 100755 2008-01-14/headers/intro.history.xsl create mode 100755 2008-01-14/xmldata/dcam.xml create mode 100755 2008-01-14/xmldata/dcelements.xml create mode 100755 2008-01-14/xmldata/dcterms-classes.xml create mode 100755 2008-01-14/xmldata/dcterms-properties.xml create mode 100755 2008-01-14/xmldata/dcterms-ses.xml create mode 100755 2008-01-14/xmldata/dcterms-ves.xml create mode 100755 2008-01-14/xmldata/dctype.xml create mode 100644 LICENSE create mode 100644 README create mode 100755 archive/src-old/org/dublincore/vmt/tools/myxt create mode 100755 archive/src-old/org/dublincore/vmt/tools/myxt.java create mode 100755 archive/src-old/org/dublincore/vmt/tools/usage.java create mode 100755 build.xml create mode 100755 web/xsl/common-templates.xsl create mode 100755 web/xsl/dcam.xsl create mode 100755 web/xsl/dcelements.xsl create mode 100755 web/xsl/dcterms.xsl create mode 100755 web/xsl/dctype.xsl create mode 100755 web/xsl/html-dcmiterms.xsl create mode 100755 web/xsl/html-dctype.xsl create mode 100755 web/xsl/html-history.xsl diff --git a/2007-06-17/dcmitype-changes.txt b/2007-06-17/dcmitype-changes.txt new file mode 100755 index 0000000..b60aab6 --- /dev/null +++ b/2007-06-17/dcmitype-changes.txt @@ -0,0 +1,55 @@ +====================================================================== +Declaring a DCMI vocabulary term - example of dcmitype:Event + +---------------------------------------------------------------------- +OLD - from http://dublincore.org/2006/12/18/dctype.rdf + + + + Event + + A non-persistent, time-based occurrence. + + 2000-07-11 + + + + + +---------------------------------------------------------------------- +NEW - + + + + Event + + A non-persistent, time-based occurrence. + + 2000-07-11 + + + + + +---------------------------------------------------------------------- +OLD to NEW - differences + +-- Delete + + +-- Change + + to + + +-- Add + + diff --git a/2007-06-17/dcmitype-testdata.xml b/2007-06-17/dcmitype-testdata.xml new file mode 100755 index 0000000..083dbf2 --- /dev/null +++ b/2007-06-17/dcmitype-testdata.xml @@ -0,0 +1,77 @@ + + + + + + Event-003 + http://purl.org/dc/dcmitype/Event + http://purl.org/dc/dcmitype/ + Event + + A non-persistent, time-based occurrence. + Metadata for an event provides descriptive + information that is the basis for discovery of the + purpose, location, duration, and responsible + agents associated with an event. Examples + include an exhibition, webcast, conference, workshop, + open day, performance, battle, trial, wedding, tea + party, conflagration. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-xx-xx + http://dublincore.org/usage/decisions/#Decision-2007-xx + http://dublincore.org/usage/terms/history/#Event-003 + http://dublincore.org/usage/terms/history/#Event-002 + + + + Event-002 + http://purl.org/dc/dcmitype/Event + http://purl.org/dc/dcmitype/ + Event + + A non-persistent, time-based occurrence. + Metadata for an event provides descriptive + information that is the basis for discovery of the + purpose, location, duration, and responsible + agents associated with an event. Examples + include an exhibition, webcast, conference, workshop, + open day, performance, battle, trial, wedding, tea + party, conflagration. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Event-002 + http://dublincore.org/usage/terms/history/#Event-001 + http://dublincore.org/usage/terms/history/#Event-003 + + + + Event-001 + http://purl.org/dc/dcmitype/Event + http://purl.org/dc/dcmitype/ + Event + + An event is a non-persistent, time-based occurrence. + Metadata for an event provides descriptive + information that is the basis for discovery of the + purpose, location, duration, responsible agents, and + links to related events and resources. The resource + of type event may not be retrievable if the described + instantiation has expired or is yet to occur. + Examples - exhibition, web-cast, conference, + workshop, open-day, performance, battle, trial, + wedding, tea-party, conflagration. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Event-001 + http://dublincore.org/usage/terms/history/#Event-002 + + + + diff --git a/2007-06-17/schemes-changes-SES.txt b/2007-06-17/schemes-changes-SES.txt new file mode 100755 index 0000000..5e90c1e --- /dev/null +++ b/2007-06-17/schemes-changes-SES.txt @@ -0,0 +1,65 @@ +====================================================================== +Declaring a syntax encoding scheme - example of dcterms:W3CDTF + +---------------------------------------------------------------------- +OLD - from http://dublincore.org/2006/12/18/dcq.rdf + + + + W3C-DTF + W3C Encoding rules for dates and times - a profile based on ISO 8601 + + + + + 2000-07-11 + 2002-06-15 + + + + + +---------------------------------------------------------------------- +NEW - + + + + W3C-DTF + W3C Encoding rules for dates and times - a profile based on ISO 8601 + + + 2000-07-11 + 2002-06-15 + + + + + +---------------------------------------------------------------------- +OLD to NEW - differences + +-- Change + + to + + +-- Change + + to + + +-- Deprecate DateScheme and like constructs (see Global Changes above) + +-- Delete + + + and all like constructs + + diff --git a/2007-06-17/schemes-changes-VES.txt b/2007-06-17/schemes-changes-VES.txt new file mode 100755 index 0000000..d40a724 --- /dev/null +++ b/2007-06-17/schemes-changes-VES.txt @@ -0,0 +1,65 @@ +====================================================================== +Declaring a DCMI vocabulary encoding scheme - example of dcterms:LCSH + +---------------------------------------------------------------------- +OLD - from http://dublincore.org/2006/12/18/dcq.rdf + + + + LCSH + Library of Congress Subject Headings + + + 2000-07-11 + 2002-06-15 + + + + + Subject Encoding Schemes + A set of subject encoding schemes and/or formats + + + 2000-07-11 + + + +---------------------------------------------------------------------- +NEW - + + + + LCSH + Library of Congress Subject Headings + + 2000-07-11 + 2002-06-15 + + + + + +---------------------------------------------------------------------- +OLD to NEW - differences + +-- Change + + to + + +-- Change + + to + + +-- Deprecate SubjectScheme and like constructs (see Global Changes above) + + + diff --git a/2007-06-17/schemes-testdata.xml b/2007-06-17/schemes-testdata.xml new file mode 100755 index 0000000..30193f7 --- /dev/null +++ b/2007-06-17/schemes-testdata.xml @@ -0,0 +1,109 @@ + + + + + + LCSH-003 + http://purl.org/dc/terms/LCSH + http://purl.org/dc/terms/ + LCSH + + Library of Congress Subject Headings + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-xx-xx + http://dublincore.org/usage/decisions/#Decision-2007-xx + http://dublincore.org/usage/terms/history/#LCSH-002 + http://dublincore.org/usage/terms/history/#LCSH-001 + http://dublincore.org/usage/terms/history/#LCSH-003 + + + + LCSH-002 + http://purl.org/dc/terms/LCSH + http://purl.org/dc/terms/ + LCSH + + Library of Congress Subject Headings + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#LCSH-002 + http://dublincore.org/usage/terms/history/#LCSH-001 + http://dublincore.org/usage/terms/history/#LCSH-003 + + + + LCSH-001 + http://purl.org/dc/terms/LCSH + http://purl.org/dc/terms/ + LCSH + + Library of Congress Subject Headings + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#LCSH-001 + http://dublincore.org/usage/terms/history/#LCSH-002 + + + + W3CDTF-003 + http://purl.org/dc/terms/W3CDTF + http://purl.org/dc/terms/ + W3CDTF + + W3C Encoding rules for dates and times - a profile based on ISO 8601 + http://www.w3.org/TR/NOTE-datetime + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-xx-xx + http://dublincore.org/usage/decisions/#Decision-2007-xx + http://dublincore.org/usage/terms/history/#W3CDTF-003 + http://dublincore.org/usage/terms/history/#W3CDTF-002 + + + + W3CDTF-002 + http://purl.org/dc/terms/W3CDTF + http://purl.org/dc/terms/ + W3CDTF + + W3C Encoding rules for dates and times - a profile based on ISO 8601 + http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#W3CDTF-002 + http://dublincore.org/usage/terms/history/#W3CDTF-001 + http://dublincore.org/usage/terms/history/#W3CDTF-003 + + + + W3CDTF-001 + http://purl.org/dc/terms/W3CDTF + http://purl.org/dc/terms/ + W3CDTF + + W3C Encoding rules for dates and times - a profile based on ISO 8601 + http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#W3CDTF-001 + http://dublincore.org/usage/terms/history/#W3CDTF-002 + + + diff --git a/2007-06-17/terms-changes.txt b/2007-06-17/terms-changes.txt new file mode 100755 index 0000000..8f4c8e7 --- /dev/null +++ b/2007-06-17/terms-changes.txt @@ -0,0 +1,67 @@ +====================================================================== +Declaring a DCMI property - example of dcterms:bibliographicCitation + +---------------------------------------------------------------------- +OLD - from http://dublincore.org/2006/12/18/dcq.rdf + + + +Bibliographic Citation +A bibliographic reference for the resource. +Recommended practice is to include sufficient + bibliographic detail to identify the resource as + unambiguously as possible, whether or not the + citation is in a standard form. + +2003-02-15 + + + + + + +---------------------------------------------------------------------- +NEW - + + + +Bibliographic Citation +A bibliographic reference for the resource. +Recommended practice is to include sufficient + bibliographic detail to identify the resource as + unambiguously as possible, whether or not the + citation is in a standard form. + +2003-02-15 + + + + + + + + +---------------------------------------------------------------------- +OLD to NEW - differences + +-- Change + . + to + + to + + +-- Add + + + + diff --git a/2007-06-17/terms-testdata.xml b/2007-06-17/terms-testdata.xml new file mode 100755 index 0000000..1d5fc0e --- /dev/null +++ b/2007-06-17/terms-testdata.xml @@ -0,0 +1,51 @@ + + + + + + bibliographicCitation-002 + http://purl.org/dc/terms/bibliographicCitation + http://purl.org/dc/terms/ + bibliographicCitation + + A bibliographic reference for the resource. + + Recommended practice is to include sufficient + bibliographic detail to identify the resource as + unambiguously as possible, whether or not the + citation is in a standard form. + + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/identifier + http://example.org/dc/terms/BibliographicResource + http://example.org/dc/terms/BibliographicReference + http://dublincore.org/usage/documents/process/#conforming + 2007-xx-xx + http://dublincore.org/usage/decisions/#Decision-2007-xx + http://dublincore.org/usage/terms/history/#bibliographicCitation-002 + http://dublincore.org/usage/terms/history/#bibliographicCitation-001 + + + + bibliographicCitation-001 + http://purl.org/dc/terms/bibliographicCitation + http://purl.org/dc/terms/ + bibliographicCitation + + A bibliographic reference for the resource. + + Recommended practice is to include sufficient + bibliographic detail to identify the resource as + unambiguously as possible, whether or not the + citation is in a standard form. + + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/identifier + http://dublincore.org/usage/documents/process/#conforming + 2003-02-15 + http://dublincore.org/usage/decisions/#Decision-2003-01 + http://dublincore.org/usage/terms/history/#bibliographicCitation-001 + http://dublincore.org/usage/terms/history/#bibliographicCitation-002 + + + diff --git a/2007-08-15/dces.xml b/2007-08-15/dces.xml new file mode 100755 index 0000000..42d0700 --- /dev/null +++ b/2007-08-15/dces.xml @@ -0,0 +1,2259 @@ + + + + + + titleT-001 + http://purl.org/dc/terms/title + http://purl.org/dc/terms/ + title + + A name given to the resource. + Typically, a Title will be a name by which + the resource is formally known. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2007-08-15 + http://purl.org/dc/elements/1.1/title + http://www.w3.org/2000/01/rdf-schema#Literal + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#titleT-001 + + + + title-006 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + title + + A name given to the resource. + + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#title-006 + http://dublincore.org/usage/terms/history/#title-005 + + + + title-005 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + title + + A name given to the resource. + Typically, a Title will be a name by which + the resource is formally known. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#title-005 + http://dublincore.org/usage/terms/history/#title-004 + http://dublincore.org/usage/terms/history/#title-006 + + + + title-004 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + title + + A name given to the resource. + Typically, a Title will be a name by which the resource is + formally known. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#title-004 + http://dublincore.org/usage/terms/history/#title-003 + http://dublincore.org/usage/terms/history/#title-005 + + + + title-003 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + title + + A name given to the resource. + Typically, a Title will be a name by which the resource is + formally known. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#title-003 + http://dublincore.org/usage/terms/history/#title-002 + http://dublincore.org/usage/terms/history/#title-004 + + + + title-002 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + title + + A name given to the resource. + Typically, a Title will be a name by which the resource is + formally known. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#title-002 + http://dublincore.org/usage/terms/history/#title-003 + + + + title-001 + http://purl.org/dc/elements/1.0/title + http://purl.org/dc/elements/1.0/ + title + + The name given to the resource, usually by the Creator or + Publisher. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#title-001 + n.a. + + + + creatorT-001 + http://purl.org/dc/terms/creator + http://purl.org/dc/terms/ + creator + + An entity primarily responsible for making + the resource. + Examples of a Creator include a person, an + organization, or a service. Typically, the name + of a Creator should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2007-08-15 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/terms/Agent + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#creatorT-001 + + + + creator-006 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + creator + + An entity primarily responsible for making + the resource. + Examples of a Creator include a person, an + organization, or a service. Typically, the name + of a Creator should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/contributor + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#creator-006 + http://dublincore.org/usage/terms/history/#creator-005 + + + + creator-005 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + creator + + An entity primarily responsible for making + the resource. + Examples of a Creator include a person, an + organization, or a service. Typically, the name + of a Creator should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#creator-005 + http://dublincore.org/usage/terms/history/#creator-004 + http://dublincore.org/usage/terms/history/#creator-006 + + + + creator-004 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + creator + + An entity primarily responsible for making the content + of the resource. + Examples of a Creator include a person, an organisation, + or a service. Typically, the name of a Creator should + be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#creator-004 + http://dublincore.org/usage/terms/history/#creator-003 + http://dublincore.org/usage/terms/history/#creator-005 + + + + creator-003 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + creator + + An entity primarily responsible for making the content + of the resource. + Examples of a Creator include a person, an organisation, + or a service. Typically, the name of a Creator should + be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#creator-003 + http://dublincore.org/usage/terms/history/#creator-002 + http://dublincore.org/usage/terms/history/#creator-004 + + + + creator-002 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + creator + + An entity primarily responsible for making the content of + the resource. + Examples of a Creator include a person, an organisation, + or a service. Typically, the name of a Creator should be + used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#creator-002 + http://dublincore.org/usage/terms/history/#creator-003 + + + + creator-001 + http://purl.org/dc/elements/1.0/creator + http://purl.org/dc/elements/1.0/ + creator + + The person or organization primarily responsible for + creating the intellectual content of the resource. For + example, authors in the case of written documents, + artists, photographers, or illustrators in the case of + visual resources. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#creator-001 + n.a. + + + + subjectT-001 + http://purl.org/dc/terms/subject + http://purl.org/dc/terms/ + subject + + The topic of the resource. + Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary. To describe the spatial or temporal topic of the resource, use the Coverage element. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2007-08-15 + http://purl.org/dc/elements/1.1/subject + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#subjectT-001 + + + + subject-006 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + subject + + The topic of the resource. + Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary. To describe the spatial or temporal topic of the resource, use the Coverage element. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#subject-006 + http://dublincore.org/usage/terms/history/#subject-005 + + + + subject-005 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + subject + + The topic of the resource. + Typically, the topic will be represented using + keywords, key phrases, or classification codes. + Recommended best practice is to use a controlled + vocabulary. To describe the spatial or temporal + topic of the resource, use the Coverage element. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#subject-005 + http://dublincore.org/usage/terms/history/#subject-004 + http://dublincore.org/usage/terms/history/#subject-006 + + + + subject-004 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + subject + + The topic of the content of the resource. + Typically, a Subject will be expressed as keywords, + key phrases or classification codes that describe a topic + of the resource. Recommended best practice is to select + a value from a controlled vocabulary or formal + classification scheme. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#subject-004 + http://dublincore.org/usage/terms/history/#subject-003 + http://dublincore.org/usage/terms/history/#subject-005 + + + + subject-003 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + subject + + The topic of the content of the resource. + Typically, a Subject will be expressed as keywords, + key phrases or classification codes that describe a topic + of the resource. Recommended best practice is to select + a value from a controlled vocabulary or formal + classification scheme. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#subject-003 + http://dublincore.org/usage/terms/history/#subject-002 + http://dublincore.org/usage/terms/history/#subject-004 + + + + subject-002 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + subject + + The topic of the content of the resource. + Typically, a Subject will be expressed as keywords, + key phrases or classification codes that describe a topic + of the resource. Recommended best practice is to select + a value from a controlled vocabulary or formal + classification scheme. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#subject-002 + http://dublincore.org/usage/terms/history/#subject-003 + + + + subject-001 + http://purl.org/dc/elements/1.0/subject + http://purl.org/dc/elements/1.0/ + subject + + The topic of the resource. Typically, subject will be + expressed as keywords or phrases that describe the subject + or content of the resource. The use of controlled + vocabularies and formal classification schemas is + encouraged. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#subject-001 + n.a. + + + + descriptionT-001 + http://purl.org/dc/terms/description + http://purl.org/dc/terms/ + description + + An account of the resource. + Description may include but is not limited to: + an abstract, a table of contents, a graphical + representation, or a free-text account of + the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2007-08-15 + http://purl.org/dc/elements/1.1/description + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#descriptionT-001 + + + + description-006 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + description + + An account of the resource. + Description may include but is not limited to: + an abstract, a table of contents, a graphical + representation, or a free-text account of + the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#description-006 + http://dublincore.org/usage/terms/history/#description-005 + + + + description-005 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + description + + An account of the resource. + Description may include but is not limited to: + an abstract, a table of contents, a graphical + representation, or a free-text account of + the resource. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#description-005 + http://dublincore.org/usage/terms/history/#description-004 + http://dublincore.org/usage/terms/history/#description-006 + + + + description-004 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + description + + An account of the content of the resource. + Description may include but is not limited to: an abstract, + table of contents, reference to a graphical representation + of content or a free-text account of the content. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#description-004 + http://dublincore.org/usage/terms/history/#description-003 + http://dublincore.org/usage/terms/history/#description-005 + + + + description-003 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + description + + An account of the content of the resource. + Description may include but is not limited to: an abstract, + table of contents, reference to a graphical representation + of content or a free-text account of the content. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#description-003 + http://dublincore.org/usage/terms/history/#description-002 + http://dublincore.org/usage/terms/history/#description-004 + + + + description-002 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + description + + An account of the content of the resource. + Description may include but is not limited to: an abstract, + table of contents, reference to a graphical representation + of content or a free-text account of the content. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#description-002 + http://dublincore.org/usage/terms/history/#description-003 + + + + description-001 + http://purl.org/dc/elements/1.0/description + http://purl.org/dc/elements/1.0/ + description + + A textual description of the content of the resource, + including abstracts in the case of document-like objects or + content descriptions in the case of visual resources. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#description-001 + n.a. + + + + publisherT-001 + http://purl.org/dc/terms/publisher + http://purl.org/dc/terms/ + publisher + + An entity responsible for making the resource + available. + Examples of a Publisher include a person, an + organization, or a service. Typically, the name of + a Publisher should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2007-08-15 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/terms/Agent + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#publisherT-001 + + + + publisher-006 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + publisher + + An entity responsible for making the resource + available. + Examples of a Publisher include a person, an + organization, or a service. Typically, the name of + a Publisher should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#publisher-006 + http://dublincore.org/usage/terms/history/#publisher-005 + + + + publisher-005 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + publisher + + An entity responsible for making the resource + available. + Examples of a Publisher include a person, an + organization, or a service. Typically, the name of + a Publisher should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#publisher-005 + http://dublincore.org/usage/terms/history/#publisher-004 + http://dublincore.org/usage/terms/history/#publisher-006 + + + + publisher-004 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + publisher + + An entity responsible for making the resource available + Examples of a Publisher include a person, an organisation, + or a service. + Typically, the name of a Publisher should be used to + indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#publisher-004 + http://dublincore.org/usage/terms/history/#publisher-003 + http://dublincore.org/usage/terms/history/#publisher-005 + + + + publisher-003 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + publisher + + An entity responsible for making the resource available + Examples of a Publisher include a person, an organisation, + or a service. + Typically, the name of a Publisher should be used to + indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#publisher-003 + http://dublincore.org/usage/terms/history/#publisher-002 + http://dublincore.org/usage/terms/history/#publisher-004 + + + + publisher-002 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + publisher + + An entity responsible for making the resource available. + Examples of a Publisher include a person, an organisation, + or a service. + Typically, the name of a Publisher should be used to + indicate the entity. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#publisher-002 + http://dublincore.org/usage/terms/history/#publisher-003 + + + + publisher-001 + http://purl.org/dc/elements/1.0/publisher + http://purl.org/dc/elements/1.0/ + publisher + + The entity responsible for making the resource available + in its present form, such as a publishing house, a + university department, or a corporate entity. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#publisher-001 + n.a. + + + + contributorT-001 + http://purl.org/dc/terms/contributor + http://purl.org/dc/terms/ + contributor + + An entity responsible for making + contributions to the resource. + Examples of a Contributor include a person, + an organization, or a service. Typically, the + name of a Contributor should be used to indicate + the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2007-08-15 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/terms/Agent + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#contributorT-001 + + + + contributor-006 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + contributor + + An entity responsible for making + contributions to the resource. + Examples of a Contributor include a person, + an organization, or a service. Typically, the + name of a Contributor should be used to indicate + the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#contributor-006 + http://dublincore.org/usage/terms/history/#contributor-005 + + + + contributor-005 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + contributor + + An entity responsible for making + contributions to the resource. + Examples of a Contributor include a person, + an organization, or a service. Typically, the + name of a Contributor should be used to indicate + the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#contributor-005 + http://dublincore.org/usage/terms/history/#contributor-004 + http://dublincore.org/usage/terms/history/#contributor-006 + + + + contributor-004 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + contributor + + An entity responsible for making contributions to the + content of the resource. + Examples of a Contributor include a person, an + organisation, or a service. Typically, the name of a + Contributor should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#contributor-004 + http://dublincore.org/usage/terms/history/#contributor-003 + http://dublincore.org/usage/terms/history/#contributor-005 + + + + contributor-003 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + contributor + + An entity responsible for making contributions to the + content of the resource. + Examples of a Contributor include a person, an + organisation, or a service. Typically, the name of a + Contributor should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#contributor-003 + http://dublincore.org/usage/terms/history/#contributor-002 + http://dublincore.org/usage/terms/history/#contributor-004 + + + + contributor-002 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + contributor + + An entity responsible for making contributions to the + content of the resource. + Examples of a Contributor include a person, an + organisation, or a service. Typically, the name of a + Contributor should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#contributor-002 + http://dublincore.org/usage/terms/history/#contributor-003 + + + + contributor-001 + http://purl.org/dc/elements/1.0/contributor + http://purl.org/dc/elements/1.0/ + contributor + + A person or organization not specified in a Creator + element who has made significant intellectual + contributions to the resource but whose contribution + is secondary to any person or organization specified + in a Creator element (for example, editor, transcriber, + and illustrator). + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#contributor-001 + n.a. + + + + dateT-001 + http://purl.org/dc/terms/date + http://purl.org/dc/terms/ + date + + A point or period of time associated with an + event in the lifecycle of the resource. + Date may be used to express temporal information + at any level of granularity. Recommended best + practice is to use an encoding scheme, such as + the W3CDTF profile of ISO 8601 [W3CDTF]. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2007-08-15 + http://purl.org/dc/elements/1.1/date + http://www.w3.org/2000/01/rdf-schema#Literal + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#dateT-001 + + + + date-006 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + date + + A point or period of time associated with an + event in the lifecycle of the resource. + Date may be used to express temporal information + at any level of granularity. Recommended best + practice is to use an encoding scheme, such as + the W3CDTF profile of ISO 8601 [W3CDTF]. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#date-006 + http://dublincore.org/usage/terms/history/#date-005 + + + + date-005 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + date + + A point or period of time associated with an + event in the lifecycle of the resource. + Date may be used to express temporal information + at any level of granularity. Recommended best + practice is to use an encoding scheme, such as + the W3CDTF profile of ISO 8601 [W3CDTF]. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#date-005 + http://dublincore.org/usage/terms/history/#date-004 + http://dublincore.org/usage/terms/history/#date-006 + + + + date-004 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + date + + A date associated with an event in the life cycle of the + resource. + Typically, Date will be associated with the creation or + availability of the resource. Recommended best practice + for encoding the date value is defined in a profile of + ISO 8601 [W3CDTF] and follows the YYYY-MM-DD format. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#date-004 + http://dublincore.org/usage/terms/history/#date-003 + http://dublincore.org/usage/terms/history/#date-005 + + + + date-003 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + date + + A date associated with an event in the life cycle of the + resource. + Typically, Date will be associated with the creation or + availability of the resource. Recommended best practice + for encoding the date value is defined in a profile of + ISO 8601 [W3CDTF] and follows the YYYY-MM-DD format. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#date-003 + http://dublincore.org/usage/terms/history/#date-002 + http://dublincore.org/usage/terms/history/#date-004 + + + + date-002 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + date + + A date associated with an event in the life cycle of the + resource. + Typically, Date will be associated with the creation or + availability of the resource. Recommended best practice + for encoding the date value is defined in a profile of + ISO 8601 [W3CDTF] and follows the YYYY-MM-DD format. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#date-002 + http://dublincore.org/usage/terms/history/#date-003 + + + + date-001 + http://purl.org/dc/elements/1.0/date + http://purl.org/dc/elements/1.0/ + date + + A date associated with the creation or availability of + the resource. Recommended best practice is defined in + a profile of ISO 8601 [W3CDTF] that includes (among + others) dates of the forms YYYY and YYYY-MM-DD. In this + scheme, the date 1994-11-05 corresponds to November 5, + 1994. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#date-001 + n.a. + + + + typeT-001 + http://purl.org/dc/terms/type + http://purl.org/dc/terms/ + type + + The nature or genre of the resource. + Recommended best practice is to use a controlled + vocabulary such as the DCMI Type Vocabulary + [DCMITYPE]. To describe the file format, physical + medium, or dimensions of the resource, use the + Format element. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2007-08-15 + http://purl.org/dc/elements/1.1/title + http://www.w3.org/2000/01/rdf-schema#Literal + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#typeT-001 + + + + type-006 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + type + + The nature or genre of the resource. + Recommended best practice is to use a controlled + vocabulary such as the DCMI Type Vocabulary + [DCMITYPE]. To describe the file format, physical + medium, or dimensions of the resource, use the + Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#type-006 + http://dublincore.org/usage/terms/history/#type-005 + + + + type-005 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + type + + The nature or genre of the resource. + Recommended best practice is to use a controlled + vocabulary such as the DCMI Type Vocabulary + [DCMITYPE]. To describe the file format, physical + medium, or dimensions of the resource, use the + Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#type-005 + http://dublincore.org/usage/terms/history/#type-004 + http://dublincore.org/usage/terms/history/#type-006 + + + + type-004 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + type + + The nature or genre of the content of the resource. + Type includes terms describing general categories, functions, + genres, or aggregation levels for content. Recommended best + practice is to select a value from a controlled vocabulary + (for example, the DCMI Type Vocabulary [DCMITYPE]). To + describe the physical or digital manifestation of the + resource, use the Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#type-004 + http://dublincore.org/usage/terms/history/#type-003 + http://dublincore.org/usage/terms/history/#type-005 + + + + type-003 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + type + + The nature or genre of the content of the resource. + Type includes terms describing general categories, functions, + genres, or aggregation levels for content. Recommended best + practice is to select a value from a controlled vocabulary + (for example, the DCMI Type Vocabulary [DCMITYPE]). To + describe the physical or digital manifestation of the + resource, use the Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#type-003 + http://dublincore.org/usage/terms/history/#type-002 + http://dublincore.org/usage/terms/history/#type-004 + + + + type-002 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + type + + The nature or genre of the content of the resource. + Type includes terms describing general categories, functions, + genres, or aggregation levels for content. Recommended best + practice is to select a value from a controlled vocabulary + (for example, the working draft list of Dublin Core Types + [DCT1]). To describe the physical or digital manifestation + of the resource, use the FORMAT element. + [DCT1] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#type-002 + http://dublincore.org/usage/terms/history/#type-003 + + + + type-001 + http://purl.org/dc/elements/1.0/type + http://purl.org/dc/elements/1.0/ + type + + The category of the resource, such as home page, novel, + poem, working paper, technical report, essay, dictionary. + For the sake of interoperability, Type should be selected + from an enumerated list that is under development in the + workshop series. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#type-001 + n.a. + + + + formatT-001 + http://purl.org/dc/terms/format + http://purl.org/dc/terms/ + format + + The file format, physical medium, or dimensions + of the resource. + Examples of dimensions include + size and duration. Recommended best practice is + to use a controlled vocabulary such as the list + of Internet Media Types [MIME]. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2007-08-15 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/terms/MediaTypeOrExtent + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#formatT-001 + + + + format-007 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + format + + The file format, physical medium, or dimensions + of the resource. + Examples of dimensions include + size and duration. Recommended best practice is + to use a controlled vocabulary such as the list + of Internet Media Types [MIME]. + [MIME] http://www.iana.org/assignments/media-types/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#format-007 + http://dublincore.org/usage/terms/history/#format-006 + + + + format-006 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + format + + The file format, physical medium, or dimensions + of the resource. + Examples of dimensions include + size and duration. Recommended best practice is + to use a controlled vocabulary such as the list + of Internet Media Types [MIME]. + [MIME] http://www.iana.org/assignments/media-types/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#format-006 + http://dublincore.org/usage/terms/history/#format-005 + http://dublincore.org/usage/terms/history/#format-007 + + + + format-005 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + format + + The physical or digital manifestation of the resource. + Typically, Format may include the media-type or dimensions of + the resource. Format may be used to determine the software, + hardware or other equipment needed to display or operate the + resource. Examples of dimensions include size and duration. + Recommended best practice is to select a value from a + controlled vocabulary (for example, the list of Internet Media + Types [MIME] defining computer media formats). + [MIME] http://www.iana.org/assignments/media-types/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2004-12-17 + http://dublincore.org/usage/decisions/#Decision-2004-03 + http://dublincore.org/usage/terms/history/#format-005 + http://dublincore.org/usage/terms/history/#format-004 + http://dublincore.org/usage/terms/history/#format-006 + + + + format-004 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + format + + The physical or digital manifestation of the resource. + Typically, Format may include the media-type or dimensions of + the resource. Format may be used to determine the software, + hardware or other equipment needed to display or operate the + resource. Examples of dimensions include size and duration. + Recommended best practice is to select a value from a + controlled vocabulary (for example, the list of Internet Media + Types [MIME] defining computer media formats). + [MIME] http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#format-004 + http://dublincore.org/usage/terms/history/#format-003 + http://dublincore.org/usage/terms/history/#format-005 + + + + format-003 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + Format + + The physical or digital manifestation of the resource. + Typically, Format may include the media-type or dimensions of + the resource. Format may be used to determine the software, + hardware or other equipment needed to display or operate the + resource. Examples of dimensions include size and duration. + Recommended best practice is to select a value from a + controlled vocabulary (for example, the list of Internet Media + Types [MIME] defining computer media formats). + [MIME] http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#format-003 + http://dublincore.org/usage/terms/history/#format-002 + http://dublincore.org/usage/terms/history/#format-004 + + + + format-002 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + Format + + The physical or digital manifestation of the resource. + Typically, Format may include the media-type or dimensions of + the resource. Format may be used to determine the software, + hardware or other equipment needed to display or operate the + resource. Examples of dimensions include size and duration. + Recommended best practice is to select a value from a + controlled vocabulary (for example, the list of Internet Media + Types [MIME] defining computer media formats). + [MIME] http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#format-002 + http://dublincore.org/usage/terms/history/#format-003 + + + + format-001 + http://purl.org/dc/elements/1.0/format + http://purl.org/dc/elements/1.0/ + Format + + The data format and, optionally, dimensions (e.g., size, + duration) of the resource. The format is used to identify + the software and possibly hardware that might be needed to + display or operate the resource. For the sake of + interoperability, the format should be selected from an + enumerated list that is currently under development in the + workshop series. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#format-001 + n.a. + + + + identifierT-001 + http://purl.org/dc/terms/identifier + http://purl.org/dc/terms/ + identifier + + An unambiguous reference to the resource within + a given context. + Recommended best practice is to identify the + resource by means of a string conforming + to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2007-08-15 + http://purl.org/dc/elements/1.1/identifier + http://www.w3.org/2000/01/rdf-schema#Literal + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#identifierT-001 + + + + identifier-006 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + identifier + + An unambiguous reference to the resource within + a given context. + Recommended best practice is to identify the + resource by means of a string conforming + to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#identifier-006 + http://dublincore.org/usage/terms/history/#identifier-005 + + + + identifier-005 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + identifier + + An unambiguous reference to the resource within + a given context. + Recommended best practice is to identify the + resource by means of a string conforming + to a formal identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#identifier-005 + http://dublincore.org/usage/terms/history/#identifier-004 + http://dublincore.org/usage/terms/history/#identifier-006 + + + + identifier-004 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means + of a string or number conforming to a formal identification + system. + Example formal identification systems include the Uniform + Resource Identifier (URI) (including the Uniform Resource + Locator (URL)), the Digital Object Identifier (DOI) and the + International Standard Book Number (ISBN). + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#identifier-004 + http://dublincore.org/usage/terms/history/#identifier-003 + http://dublincore.org/usage/terms/history/#identifier-005 + + + + identifier-003 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + Identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means + of a string or number conforming to a formal identification + system. + Example formal identification systems include the Uniform + Resource Identifier (URI) (including the Uniform Resource + Locator (URL)), the Digital Object Identifier (DOI) and the + International Standard Book Number (ISBN). + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#identifier-003 + http://dublincore.org/usage/terms/history/#identifier-002 + http://dublincore.org/usage/terms/history/#identifier-004 + + + + identifier-002 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + Identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means + of a string or number conforming to a formal identification + system. + Example formal identification systems include the Uniform + Resource Identifier (URI) (including the Uniform Resource + Locator (URL)), the Digital Object Identifier (DOI) and the + International Standard Book Number (ISBN). + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#identifier-002 + http://dublincore.org/usage/terms/history/#identifier-003 + + + + identifier-001 + http://purl.org/dc/elements/1.0/identifier + http://purl.org/dc/elements/1.0/ + Identifier + + A string or number used to uniquely identify the resource. + Examples for networked resources include URLs and URNs (when + implemented). Other globally-unique identifiers, such as + International Standard Book Numbers (ISBN) or other formal + names would also be candidates for this element. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#identifier-001 + n.a. + + + + sourceT-001 + http://purl.org/dc/terms/source + http://purl.org/dc/terms/ + source + + A related resource from which the described resource is derived. + The described resource may be derived from the + related resource in whole or in part. Recommended + best practice is to identify the related resource + by means of a string conforming to a formal + identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2007-08-15 + http://purl.org/dc/elements/1.1/source + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#sourceT-001 + + + + source-006 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + source + + A related resource from which the described resource is derived. + The described resource may be derived from the + related resource in whole or in part. Recommended + best practice is to identify the related resource + by means of a string conforming to a formal + identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#source-006 + http://dublincore.org/usage/terms/history/#source-005 + + + + source-005 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + source + + The resource from which the described + resource is derived. + The described resource may be derived from the + related resource in whole or in part. Recommended + best practice is to identify the related resource + by means of a string conforming to a formal + identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#source-005 + http://dublincore.org/usage/terms/history/#source-004 + http://dublincore.org/usage/terms/history/#source-006 + + + + source-004 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + source + + A reference to a resource from which the present resource + is derived. + The present resource may be derived from the Source resource + in whole or in part. Recommended best practice is to reference + the resource by means of a string or number conforming to a + formal identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#source-004 + http://dublincore.org/usage/terms/history/#source-003 + http://dublincore.org/usage/terms/history/#source-005 + + + + source-003 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + Source + + A reference to a resource from which the present resource + is derived. + The present resource may be derived from the Source resource + in whole or in part. Recommended best practice is to reference + the resource by means of a string or number conforming to a + formal identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#source-003 + http://dublincore.org/usage/terms/history/#source-002 + http://dublincore.org/usage/terms/history/#source-004 + + + + source-002 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + Source + + A reference to a resource from which the present resource + is derived. + The present resource may be derived from the Source resource + in whole or in part. Recommended best practice is to reference + the resource by means of a string or number conforming to a + formal identification system. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#source-002 + http://dublincore.org/usage/terms/history/#source-003 + + + + source-001 + http://purl.org/dc/elements/1.0/source + http://purl.org/dc/elements/1.0/ + Source + + Information about a second resource from which the present + resource is derived. While it is generally recommended that + elements contain information about the present resource + only, this element may contain metadata for the second + resource when it is considered important for discovery of + the present resource. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#source-001 + n.a. + + + + languageT-001 + http://purl.org/dc/terms/language + http://purl.org/dc/terms/ + language + + A language of the resource. + Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646]. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2007-08-15 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/terms/LinguisticSystem + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#languageT-001 + + + + language-007 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + language + + A language of the resource. + Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646]. + [RFC3066] http://www.ietf.org/rfc/rfc3066.txt + http://www.ietf.org/rfc/rfc4646.txt + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#language-007 + http://dublincore.org/usage/terms/history/#language-006 + + + + language-006 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + language + + A language of the resource. + Recommended best practice is to use a controlled + vocabulary such as RFC 3066 [RFC3066]. + [RFC3066] http://www.ietf.org/rfc/rfc3066.txt + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#language-006 + http://dublincore.org/usage/terms/history/#language-005 + http://dublincore.org/usage/terms/history/#language-007 + + + + language-005 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + language + + A language of the intellectual content of the resource. + Recommended best practice is to use RFC 3066 [RFC3066], + which, in conjunction with ISO 639 [ISO639], defines two- + and three-letter primary language tags with optional + subtags. Examples include "en" or "eng" for English, + "akk" for Akkadian, and "en-GB" for English used in the + United Kingdom. + [RFC3066] http://www.ietf.org/rfc/rfc3066.txt + [ISO639] http://www.loc.gov/standards/iso639-2/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#language-005 + http://dublincore.org/usage/terms/history/#language-004 + http://dublincore.org/usage/terms/history/#format-006 + + + + language-004 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + Language + + A language of the intellectual content of the resource. + Recommended best practice is to use RFC 3066 [RFC3066], + which, in conjunction with ISO 639 [ISO639], defines two- + and three-letter primary language tags with optional + subtags. Examples include "en" or "eng" for English, + "akk" for Akkadian, and "en-GB" for English used in the + United Kingdom. + [RFC3066] http://www.ietf.org/rfc/rfc3066.txt + [ISO639] http://www.loc.gov/standards/iso639-2/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#language-004 + http://dublincore.org/usage/terms/history/#language-003 + http://dublincore.org/usage/terms/history/#language-005 + + + + language-003 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + Language + + A language of the intellectual content of the resource. + Recommended best practice is to use RFC 3066 [RFC3066], + which, in conjunction with ISO 639 [ISO639], defines two- + and three-letter primary language tags with optional + subtags. Examples include "en" or "eng" for English, + "akk" for Akkadian, and "en-GB" for English used in the + United Kingdom. + [RFC3066] http://www.ietf.org/rfc/rfc3066.txt + [ISO639] http://www.loc.gov/standards/iso639-2/ + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 2001-05-21 + http://dublincore.org/usage/decisions/#Decision-2001-04 + http://dublincore.org/usage/terms/history/#language-003 + http://dublincore.org/usage/terms/history/#language-002 + http://dublincore.org/usage/terms/history/#language-004 + + + + language-002 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + Language + + A language of the intellectual content of the resource. + Recommended best practice for the values of the Language + element is defined by RFC 1766 [RFC1766] which includes + a two-letter Language Code (taken from the ISO 639 + standard [ISO639]), followed optionally, by a two-letter + Country Code (taken from the ISO 3166 standard [ISO3166]). + For example, 'en' for English, 'fr' for French, or + 'en-uk' for English used in the United Kingdom. + [RFC1766] http://www.ietf.org/rfc/rfc1766.txt + [ISO639] http://www.loc.gov/standards/iso639-2/ + [ISO3166] http://www.iso.org/iso/en/prods-services/iso3166ma/index.html + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#language-002 + http://dublincore.org/usage/terms/history/#language-003 + + + + language-001 + http://purl.org/dc/elements/1.0/language + http://purl.org/dc/elements/1.0/ + Language + + The language of the intellectual content of the resource. + Recommended best practice is defined in RFC 1766 [RFC1766]. + [RFC1766] http://www.ietf.org/rfc/rfc1766.txt + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#language-001 + n.a. + + + + relationT-001 + http://purl.org/dc/terms/relation + http://purl.org/dc/terms/ + relation + + A related resource. + Recommended best practice is to identify the + related resource by means of a string conforming + to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2007-08-15 + http://purl.org/dc/elements/1.1/relation + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#relationT-001 + + + + relation-006 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + relation + + A related resource. + Recommended best practice is to identify the + related resource by means of a string conforming + to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#relation-006 + http://dublincore.org/usage/terms/history/#relation-005 + + + + relation-005 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + relation + + A related resource. + Recommended best practice is to identify the + related resource by means of a string conforming + to a formal identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#relation-005 + http://dublincore.org/usage/terms/history/#relation-004 + http://dublincore.org/usage/terms/history/#relation-006 + + + + relation-004 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + relation + + A reference to a related resource. + Recommended best practice is to reference the resource by means + of a string or number conforming to a formal identification + system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#relation-004 + http://dublincore.org/usage/terms/history/#relation-003 + http://dublincore.org/usage/terms/history/#relation-005 + + + + relation-003 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + Relation + + A reference to a related resource. + Recommended best practice is to reference the resource by means + of a string or number conforming to a formal identification + system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#relation-003 + http://dublincore.org/usage/terms/history/#relation-002 + http://dublincore.org/usage/terms/history/#relation-004 + + + + relation-002 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + Relation + + A reference to a related resource. + Recommended best practice is to reference the resource by means + of a string or number conforming to a formal identification + system. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#relation-002 + http://dublincore.org/usage/terms/history/#relation-003 + + + + relation-001 + http://purl.org/dc/elements/1.0/relation + http://purl.org/dc/elements/1.0/ + Relation + + An identifier of a second resource and its relationship to + the present resource. This element is used to express + linkages among related resources. For the sake of + interoperability, relationships should be selected from an + enumerated list that is currently under development in the + workshop series. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#relation-001 + n.a. + + + + coverageT-001 + http://purl.org/dc/terms/coverage + http://purl.org/dc/terms/ + coverage + + The spatial or temporal topic of the resource, the + spatial applicability of the resource, or the + jurisdiction under which the resource is relevant. + Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN]. Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2007-08-15 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/terms/LocationPeriodOrJurisdiction + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#coverageT-001 + + + + coverage-006 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + coverage + + The spatial or temporal topic of the resource, the + spatial applicability of the resource, or the + jurisdiction under which the resource is relevant. + Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN]. Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#coverage-006 + http://dublincore.org/usage/terms/history/#coverage-005 + + + + coverage-005 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + coverage + + The spatial or temporal topic of the resource, the + spatial applicability of the resource, or the + jurisdiction under which the resource is relevant. + Spatial topic may be a named place or a location + specified by its geographic coordinates. Temporal + period may be a named period, date, or date + range. A jurisdiction may be a named administrative + entity or a geographic place to which the resource + applies. Recommended best practice is to use a + controlled vocabulary such as the Thesaurus of + Geographic Names [TGN]). Where appropriate, named + places or time periods can be used in preference + to numeric identifiers such as sets of coordinates + or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#coverage-005 + http://dublincore.org/usage/terms/history/#coverage-004 + http://dublincore.org/usage/terms/history/#coverage-006 + + + + coverage-004 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + coverage + + The extent or scope of the content of the resource. + Coverage will typically include spatial location (a place name + or geographic coordinates), temporal period (a period label, + date, or date range) or jurisdiction (such as a named + administrative entity). + Recommended best practice is to select a value from a + controlled vocabulary (for example, the Thesaurus of Geographic + Names [TGN]) and that, where appropriate, named places or time + periods be used in preference to numeric identifiers such as + sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#coverage-004 + http://dublincore.org/usage/terms/history/#coverage-003 + http://dublincore.org/usage/terms/history/#coverage-005 + + + + coverage-003 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + Coverage + + The extent or scope of the content of the resource. + Coverage will typically include spatial location (a place name + or geographic coordinates), temporal period (a period label, + date, or date range) or jurisdiction (such as a named + administrative entity). + Recommended best practice is to select a value from a + controlled vocabulary (for example, the Thesaurus of Geographic + Names [TGN]) and that, where appropriate, named places or time + periods be used in preference to numeric identifiers such as + sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#coverage-003 + http://dublincore.org/usage/terms/history/#coverage-002 + http://dublincore.org/usage/terms/history/#coverage-004 + + + + coverage-002 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + Coverage + + The extent or scope of the content of the resource. + Coverage will typically include spatial location (a place name + or geographic coordinates), temporal period (a period label, + date, or date range) or jurisdiction (such as a named + administrative entity). + Recommended best practice is to select a value from a + controlled vocabulary (for example, the Thesaurus of Geographic + Names [TGN]) and that, where appropriate, named places or time + periods be used in preference to numeric identifiers such as + sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#coverage-002 + http://dublincore.org/usage/terms/history/#coverage-003 + + + + coverage-001 + http://purl.org/dc/elements/1.0/coverage + http://purl.org/dc/elements/1.0/ + Coverage + + The spatial and/or temporal characteristics of the + intellectual content of the resource. Spatial coverage + refers to a physical region (e.g., celestial sector) using + place names or coordinates (e.g., longitude and latitude). + Temporal coverage refers to what the resource is about + rather than when it was created or made available (the + latter belonging in the Date element). Temporal coverage is + typically specified using named time periods (e.g., + Neolithic) or the same date/time format [W3CDTF] + as recommended for the Date element. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#coverage-001 + n.a. + + + + rightsT-001 + http://purl.org/dc/terms/rights + http://purl.org/dc/terms/ + rights + + Information about rights held in and + over the resource. + Typically, rights information includes + a statement about various property rights + associated with the resource, including + intellectual property rights. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2007-08-15 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/terms/RightsStatement + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#rightsT-001 + + + + rights-006 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + rights + + Information about rights held in and + over the resource. + Typically, rights information includes + a statement about various property rights + associated with the resource, including + intellectual property rights. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#rights-006 + http://dublincore.org/usage/terms/history/#rights-005 + + + + rights-005 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + rights + + Information about rights held in and + over the resource. + Typically, rights information includes + a statement about various property rights + associated with the resource, including + intellectual property rights. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#rights-005 + http://dublincore.org/usage/terms/history/#rights-004 + http://dublincore.org/usage/terms/history/#rights-006 + + + + rights-004 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + rights + + Information about rights held in and over the resource. + Typically, a Rights element will contain a rights + management statement for the resource, or reference + a service providing such information. Rights information + often encompasses Intellectual Property Rights (IPR), + Copyright, and various Property Rights. + If the Rights element is absent, no assumptions can be made + about the status of these and other rights with respect to + the resource. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#rights-004 + http://dublincore.org/usage/terms/history/#rights-003 + http://dublincore.org/usage/terms/history/#rights-005 + + + + rights-003 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + Rights + + Information about rights held in and over the resource. + Typically, a Rights element will contain a rights + management statement for the resource, or reference + a service providing such information. Rights information + often encompasses Intellectual Property Rights (IPR), + Copyright, and various Property Rights. + If the Rights element is absent, no assumptions can be made + about the status of these and other rights with respect to + the resource. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#rights-003 + http://dublincore.org/usage/terms/history/#rights-002 + http://dublincore.org/usage/terms/history/#rights-004 + + + + rights-002 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + Rights + + Information about rights held in and over the resource. + Typically, a Rights element will contain a rights + management statement for the resource, or reference + a service providing such information. Rights information + often encompasses Intellectual Property Rights (IPR), + Copyright, and various Property Rights. + If the Rights element is absent, no assumptions can be made + about the status of these and other rights with respect to + the resource. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#rights-002 + http://dublincore.org/usage/terms/history/#rights-003 + + + + rights-001 + http://purl.org/dc/elements/1.0/rights + http://purl.org/dc/elements/1.0/ + Rights + + A rights management statement, an identifier that links + to a rights management statement, or an identifier that + links to a service providing information about rights + management for the resource. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#rights-001 + n.a. + + + + diff --git a/2007-08-15/dcmitype.xml b/2007-08-15/dcmitype.xml new file mode 100755 index 0000000..bf173ec --- /dev/null +++ b/2007-08-15/dcmitype.xml @@ -0,0 +1,761 @@ + + + + + + Collection-003 + http://purl.org/dc/dcmitype/Collection + http://purl.org/dc/dcmitype/ + Collection + + An aggregation of resources. + A collection is described as a group; its parts + may also be separately described. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#Collection-003 + http://dublincore.org/usage/terms/history/#Collection-002 + + + + Collection-002 + http://purl.org/dc/dcmitype/Collection + http://purl.org/dc/dcmitype/ + Collection + + An aggregation of resources. + A collection is described as a group; its parts + may also be separately described. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Collection-002 + http://dublincore.org/usage/terms/history/#Collection-001 + http://dublincore.org/usage/terms/history/#Collection-003 + + + + Collection-001 + http://purl.org/dc/dcmitype/Collection + http://purl.org/dc/dcmitype/ + Collection + + A collection is an aggregation of items. The term + collection means that the resource is described as a + group; its parts may be separately described and navigated. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Collection-001 + http://dublincore.org/usage/terms/history/#Collection-002 + + + + Dataset-003 + http://purl.org/dc/dcmitype/Dataset + http://purl.org/dc/dcmitype/ + Dataset + + Data encoded in a defined structure. + Examples include lists, tables, and databases. + A dataset may be useful for direct machine processing. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#Dataset-003 + http://dublincore.org/usage/terms/history/#Dataset-002 + + + + Dataset-002 + http://purl.org/dc/dcmitype/Dataset + http://purl.org/dc/dcmitype/ + Dataset + + Data encoded in a defined structure. + Examples include lists, tables, and databases. + A dataset may be useful for direct machine processing. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Dataset-002 + http://dublincore.org/usage/terms/history/#Dataset-001 + http://dublincore.org/usage/terms/history/#Dataset-003 + + + + Dataset-001 + http://purl.org/dc/dcmitype/Dataset + http://purl.org/dc/dcmitype/ + Dataset + + A dataset is information encoded in a defined structure + (for example, lists, tables, and databases), intended to + be useful for direct machine processing. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Dataset-001 + http://dublincore.org/usage/terms/history/#Dataset-002 + + + + Event-003 + http://purl.org/dc/dcmitype/Event + http://purl.org/dc/dcmitype/ + Event + + A non-persistent, time-based occurrence. + Metadata for an event provides descriptive + information that is the basis for discovery of the + purpose, location, duration, and responsible + agents associated with an event. Examples + include an exhibition, webcast, conference, workshop, + open day, performance, battle, trial, wedding, tea + party, conflagration. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#Event-003 + http://dublincore.org/usage/terms/history/#Event-002 + + + + Event-002 + http://purl.org/dc/dcmitype/Event + http://purl.org/dc/dcmitype/ + Event + + A non-persistent, time-based occurrence. + Metadata for an event provides descriptive + information that is the basis for discovery of the + purpose, location, duration, and responsible + agents associated with an event. Examples + include an exhibition, webcast, conference, workshop, + open day, performance, battle, trial, wedding, tea + party, conflagration. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Event-002 + http://dublincore.org/usage/terms/history/#Event-001 + http://dublincore.org/usage/terms/history/#Event-003 + + + + Event-001 + http://purl.org/dc/dcmitype/Event + http://purl.org/dc/dcmitype/ + Event + + An event is a non-persistent, time-based occurrence. + Metadata for an event provides descriptive + information that is the basis for discovery of the + purpose, location, duration, responsible agents, and + links to related events and resources. The resource + of type event may not be retrievable if the described + instantiation has expired or is yet to occur. + Examples - exhibition, web-cast, conference, + workshop, open-day, performance, battle, trial, + wedding, tea-party, conflagration. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Event-001 + http://dublincore.org/usage/terms/history/#Event-002 + + + + Image-004 + http://purl.org/dc/dcmitype/Image + http://purl.org/dc/dcmitype/ + Image + + A visual representation other than text. + Examples include images and photographs + of physical objects, paintings, prints, drawings, other + images and graphics, animations and moving + pictures, film, diagrams, maps, musical + notation. Note that Image may include both + electronic and physical representations. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/MovingImage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#Image-004 + http://dublincore.org/usage/terms/history/#Image-003 + + + + Image-003 + http://purl.org/dc/dcmitype/Image + http://purl.org/dc/dcmitype/ + Image + + A visual representation other than text. + Examples include images and photographs + of physical objects, paintings, prints, drawings, other + images and graphics, animations and moving + pictures, film, diagrams, maps, musical + notation. Note that Image may include both + electronic and physical representations. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/MovingImage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Image-003 + http://dublincore.org/usage/terms/history/#Image-002 + http://dublincore.org/usage/terms/history/#Image-004 + + + + Image-002 + http://purl.org/dc/dcmitype/Image + http://purl.org/dc/dcmitype/ + Image + + An image is a primarily symbolic visual representation + other than text. For example - images and photographs of + physical objects, paintings, prints, drawings, other + images and graphics, animations and moving pictures, + film, diagrams, maps, musical notation. Note that image + may include both electronic and physical representations. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/MovingImage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2003-11-18 + http://dublincore.org/usage/decisions/#Decision-2003-02 + http://dublincore.org/usage/terms/history/#Image-002 + http://dublincore.org/usage/terms/history/#Image-001 + http://dublincore.org/usage/terms/history/#Image-003 + + + + Image-001 + http://purl.org/dc/dcmitype/Image + http://purl.org/dc/dcmitype/ + Image + + An image is a primarily symbolic visual representation + other than text. For example - images and photographs of + physical objects, paintings, prints, drawings, other + images and graphics, animations and moving pictures, + film, diagrams, maps, musical notation. Note that image + may include both electronic and physical representations. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Image-001 + http://dublincore.org/usage/terms/history/#Image-002 + + + + InteractiveResource-003 + http://purl.org/dc/dcmitype/InteractiveResource + http://purl.org/dc/dcmitype/ + InteractiveResource + + A resource requiring interaction from the user to + be understood, executed, or experienced. + Examples include forms on Web pages, applets, multimedia + learning objects, chat services, or virtual reality + environments. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#InteractiveResource-003 + http://dublincore.org/usage/terms/history/#InteractiveResource-002 + + + + InteractiveResource-002 + http://purl.org/dc/dcmitype/InteractiveResource + http://purl.org/dc/dcmitype/ + InteractiveResource + + A resource requiring interaction from the user to + be understood, executed, or experienced. + Examples include forms on Web pages, applets, multimedia + learning objects, chat services, or virtual reality + environments. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#InteractiveResource-002 + http://dublincore.org/usage/terms/history/#InteractiveResource-001 + http://dublincore.org/usage/terms/history/#InteractiveResource-003 + + + + InteractiveResource-001 + http://purl.org/dc/dcmitype/InteractiveResource + http://purl.org/dc/dcmitype/ + InteractiveResource + + An interactive resource is a resource which requires + interaction from the user to be understood, executed, + or experienced. For example - forms on web pages, applets, + multimedia learning objects, chat services, virtual + reality. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#InteractiveResource-001 + http://dublincore.org/usage/terms/history/#InteractiveResource-002 + + + + Service-003 + http://purl.org/dc/dcmitype/Service + http://purl.org/dc/dcmitype/ + Service + + A system that provides one or more functions. + Examples include a photocopying service, a banking service, + an authentication service, interlibrary loans, a Z39.50 or + Web server. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#Service-003 + http://dublincore.org/usage/terms/history/#Service-002 + + + + Service-002 + http://purl.org/dc/dcmitype/Service + http://purl.org/dc/dcmitype/ + Service + + A system that provides one or more functions. + Examples include a photocopying service, a banking service, + an authentication service, interlibrary loans, a Z39.50 or + Web server. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Service-002 + http://dublincore.org/usage/terms/history/#Service-001 + http://dublincore.org/usage/terms/history/#Service-003 + + + + Service-001 + http://purl.org/dc/dcmitype/Service + http://purl.org/dc/dcmitype/ + Service + + A service is a system that provides one or more + functions of value to the end-user. Examples include: + a photocopying service, a banking service, an + authentication service, interlibrary loans, a Z39.50 + or Web server. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Service-001 + http://dublincore.org/usage/terms/history/#Service-002 + + + + Software-003 + http://purl.org/dc/dcmitype/Software + http://purl.org/dc/dcmitype/ + Software + + A computer program in source or compiled form. + Examples include a C source file, MS-Windows .exe executable, + or Perl script. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#Software-003 + http://dublincore.org/usage/terms/history/#Software-002 + + + + Software-002 + http://purl.org/dc/dcmitype/Software + http://purl.org/dc/dcmitype/ + Software + + A computer program in source or compiled form. + Examples include a C source file, MS-Windows .exe executable, + or Perl script. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Software-002 + http://dublincore.org/usage/terms/history/#Software-001 + http://dublincore.org/usage/terms/history/#Software-003 + + + + Software-001 + http://purl.org/dc/dcmitype/Software + http://purl.org/dc/dcmitype/ + Software + + Software is a computer program in source or + compiled form which may be available for installation + non-transiently on another machine. For software which + exists only to create an interactive environment, use + interactive instead. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Software-001 + http://dublincore.org/usage/terms/history/#Software-002 + + + + Sound-003 + http://purl.org/dc/dcmitype/Sound + http://purl.org/dc/dcmitype/ + Sound + + A resource primarily intended to be heard. + Examples include a music playback file format, an audio + compact disc, and recorded speech or sounds. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#Sound-003 + http://dublincore.org/usage/terms/history/#Sound-002 + + + + Sound-002 + http://purl.org/dc/dcmitype/Sound + http://purl.org/dc/dcmitype/ + Sound + + A resource primarily intended to be heard. + Examples include a music playback file format, an audio + compact disc, and recorded speech or sounds. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Sound-002 + http://dublincore.org/usage/terms/history/#Sound-001 + http://dublincore.org/usage/terms/history/#Sound-003 + + + + Sound-001 + http://purl.org/dc/dcmitype/Sound + http://purl.org/dc/dcmitype/ + Sound + + A sound is a resource whose content is primarily + intended to be rendered as audio. For example - a + music playback file format, an audio compact disc, + and recorded speech or sounds. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Sound-001 + http://dublincore.org/usage/terms/history/#Sound-002 + + + + Text-003 + http://purl.org/dc/dcmitype/Text + http://purl.org/dc/dcmitype/ + Text + + A resource consisting primarily of words for reading. + Examples include books, letters, dissertations, + poems, newspapers, articles, archives of mailing + lists. Note that facsimiles or images of + texts are still of the genre Text. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#Text-003 + http://dublincore.org/usage/terms/history/#Text-002 + + + + Text-002 + http://purl.org/dc/dcmitype/Text + http://purl.org/dc/dcmitype/ + Text + + A resource consisting primarily of words for reading. + Examples include books, letters, dissertations, + poems, newspapers, articles, archives of mailing + lists. Note that facsimiles or images of + texts are still of the genre Text. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Text-002 + http://dublincore.org/usage/terms/history/#Text-001 + http://dublincore.org/usage/terms/history/#Text-003 + + + + Text-001 + http://purl.org/dc/dcmitype/Text + http://purl.org/dc/dcmitype/ + Text + + A text is a resource whose content is primarily + words for reading. For example - books, letters, + dissertations, poems, newspapers, articles, + archives of mailing lists. Note that facsimiles + or images of texts are still of the genre text. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Text-001 + http://dublincore.org/usage/terms/history/#Text-002 + + + + PhysicalObject-003 + http://purl.org/dc/dcmitype/PhysicalObject + http://purl.org/dc/dcmitype/ + PhysicalObject + + An inanimate, three-dimensional object or substance. + Note that digital representations of, or surrogates for, + these objects should use Image, Text or one of the other + types. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2002-07-13 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/terms/history/#PhysicalObject-003 + http://dublincore.org/usage/terms/history/#PhysicalObject-002 + + + + PhysicalObject-002 + http://purl.org/dc/dcmitype/PhysicalObject + http://purl.org/dc/dcmitype/ + PhysicalObject + + An inanimate, three-dimensional object or substance. + Note that digital representations of, or surrogates for, + these objects should use Image, Text or one of the other + types. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2002-07-13 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#PhysicalObject-002 + http://dublincore.org/usage/terms/history/#PhysicalObject-001 + http://dublincore.org/usage/terms/history/#PhysicalObject-003 + + + + PhysicalObject-001 + http://purl.org/dc/dcmitype/PhysicalObject + http://purl.org/dc/dcmitype/ + PhysicalObject + + An inanimate, three-dimensional object or substance. + For example -- a computer, the great pyramid, a + sculpture. Note that digital representations + of, or surrogates for, these things should use Image, + Text or one of the other types. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#PhysicalObject-001 + http://dublincore.org/usage/terms/history/#PhysicalObject-002 + + + + StillImage-003 + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/ + StillImage + + A static visual representation. + Examples include paintings, drawings, + graphic designs, plans and maps. Recommended + best practice is to assign the type Text to + images of textual materials. Instances of the + type Still Image must also be describable as + instances of the broader type Image. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + 2007-08-15 + http://dublincore.org/usage/terms/history/#StillImage-003 + http://dublincore.org/usage/terms/history/#StillImage-002 + + + + StillImage-002 + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/ + StillImage + + A static visual representation. + Examples include paintings, drawings, + graphic designs, plans and maps. Recommended + best practice is to assign the type Text to + images of textual materials. Instances of the + type Still Image must also be describable as + instances of the broader type Image. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + 2006-08-28 + http://dublincore.org/usage/terms/history/#StillImage-002 + http://dublincore.org/usage/terms/history/#StillImage-001 + http://dublincore.org/usage/terms/history/#StillImage-003 + + + + StillImage-001 + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/ + StillImage + + A static visual representation. Examples of + still images are: paintings, drawings, graphic designs, + plans and maps. + Recommended best practice is to assign the type + "text" to images of textual materials. Instances of + the type "Still Image" must also be describable as + instances of the broader type "Image". + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2003-02 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + http://dublincore.org/usage/terms/history/#StillImage-001 + http://dublincore.org/usage/terms/history/#StillImage-002 + + + + MovingImage-003 + http://purl.org/dc/dcmitype/MovingImage + http://purl.org/dc/dcmitype/ + MovingImage + + A series of visual representations imparting + an impression of motion when shown in succession. + Examples include animations, movies, television programs, + videos, zoetropes, or visual output from a simulation. + Instances of the type Moving Image must also be describable + as instances of the broader type Image. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2007-ZZ + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + 2007-08-15 + http://dublincore.org/usage/terms/history/#MovingImage-003 + http://dublincore.org/usage/terms/history/#MovingImage-002 + + + + MovingImage-002 + http://purl.org/dc/dcmitype/MovingImage + http://purl.org/dc/dcmitype/ + MovingImage + + A series of visual representations imparting + an impression of motion when shown in succession. + Examples include animations, movies, television programs, + videos, zoetropes, or visual output from a simulation. + Instances of the type Moving Image must also be describable + as instances of the broader type Image. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + 2006-08-28 + http://dublincore.org/usage/terms/history/#MovingImage-002 + http://dublincore.org/usage/terms/history/#MovingImage-001 + http://dublincore.org/usage/terms/history/#MovingImage-003 + + + + MovingImage-001 + http://purl.org/dc/dcmitype/MovingImage + http://purl.org/dc/dcmitype/ + MovingImage + + A series of visual representations that, + when shown in succession, impart an impression + of motion. Examples of moving images are: + animations, movies, television programs, + videos, zoetropes, or visual output from + a simulation. + Instances of the type "Moving Image" must + also be describable as instances of the broader type "Image". + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2003-02 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + http://dublincore.org/usage/terms/history/#MovingImage-001 + http://dublincore.org/usage/terms/history/#MovingImage-002 + + + diff --git a/2007-08-15/header.dces.xml b/2007-08-15/header.dces.xml new file mode 100755 index 0000000..ded8aa3 --- /dev/null +++ b/2007-08-15/header.dces.xml @@ -0,0 +1,31 @@ + + +

+ The Dublin Core Element Set v1.1 namespace providing access to its content by means of an RDF Schema + The Dublin Core Metadata Initiative + The Dublin Core Element Set v1.1 namespace provides URIs for the Dublin Core Elements v1.1. Entries are declared using RDF Schema language to support RDF applications. + English + 1999-07-02 + 2002-05-22 + http://dublincore.org/documents/dces/ + http://dublincore.org/usage/decisions/ + http://www.dublincore.org/documents/2001/10/26/dcmi-namespace/ + http://purl.org/dc/terms/ + http://purl.org/dc/dcmitype/ + +

diff --git a/2007-08-15/header.dcmi-terms.xml b/2007-08-15/header.dcmi-terms.xml new file mode 100755 index 0000000..f788613 --- /dev/null +++ b/2007-08-15/header.dcmi-terms.xml @@ -0,0 +1,23 @@ + + +

+ DCMI Metadata Terms + mailto:dc-usage@jiscmail.ac.uk + + http://dublincore.org/documents/2003/02/12/dcmi-terms/ + 2003-02-12 + + http://dublincore.org/documents/dcmi-terms/ + http://dublincore.org/documents/2003/02/12/dcmi-terms/ + + http://dublincore.org/resources/translations/ + This is a DCMI Recommendation. + + This document is an up-to-date specification + of all metadata terms maintained by the Dublin Core + Metadata Initiative, including elements, element + refinements, encoding schemes, and vocabulary terms + (the DCMI Type Vocabulary). + +

+ diff --git a/2007-08-15/header.dcmi-type-vocabulary.xml b/2007-08-15/header.dcmi-type-vocabulary.xml new file mode 100755 index 0000000..d007133 --- /dev/null +++ b/2007-08-15/header.dcmi-type-vocabulary.xml @@ -0,0 +1,24 @@ + + +

+ DCMI Type Vocabulary + mailto:dc-usage@jiscmail.ac.uk + + http://dublincore.org/documents/2003-02-12/dcmi-type-vocabulary/ + 2003-02-12 + + http://dublincore.org/documents/dcmi-type-vocabulary/ + Not applicable + Not applicable + http://dublincore.org/resources/translations/ + This is a DCMI Recommendation. + + The DCMI Type Vocabulary provides a + general, cross-domain list of approved terms that + may be used as values for the Resource Type element + to identify the genre of a resource. The terms + documented here are also included in the more comprehensive + document "DCMI Metadata Terms" at http://dublincore.org/documents/dcmi-terms/. + + +

diff --git a/2007-08-15/header.dcmitype.xml b/2007-08-15/header.dcmitype.xml new file mode 100755 index 0000000..8fbc292 --- /dev/null +++ b/2007-08-15/header.dcmitype.xml @@ -0,0 +1,35 @@ + + +

+ The DCMI Types namespace providing access to its content by means of an RDF Schema + The Dublin Core Metadata Initiative + The Dublin Core Types namespace provides URIs for the entries of the DCMI Type Vocabulary. Entries are declared using RDF Schema language to support RDF applications. The Schema will be updated according to dc-usage decisions. + English + http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/terms/ + http://purl.org/dc/elements/1.1/ + http://purl.org/dc/terms/ + 2000-07-11 + 2002-05-22 + +

diff --git a/2007-08-15/header.dcq.xml b/2007-08-15/header.dcq.xml new file mode 100755 index 0000000..0365e1c --- /dev/null +++ b/2007-08-15/header.dcq.xml @@ -0,0 +1,30 @@ + + +

+ The Dublin Core Terms Namespace providing access to its content by means of an RDF Schema. + The Dublin Core Metadata Initiative + The Dublin Core Terms namespace provides URIs for the Dublin Core Element Set Qualifier Vocabulary. Vocabulary terms are declared using RDF Schema language to support RDF applications. The Dublin Core qualifiers form a richer vocabulary, which is intended to facilitate discovery of resources. It will be updated according to dc-usage decisions. + English + 2000-07-11 + 2002-05-24 + http://www.dublincore.org/documents/2000/07/11/dcmes-qualifiers/ + http://www.dublincore.org/usage/decisions/ + http://purl.org/dc/elements/1.1/ + http://purl.org/dc/dcmitype/ + +

diff --git a/2007-08-15/header.history.xml b/2007-08-15/header.history.xml new file mode 100755 index 0000000..28dfe8f --- /dev/null +++ b/2007-08-15/header.history.xml @@ -0,0 +1,28 @@ + + +

+ DCMI Metadata Terms: A complete historical record + mailto:dc-usage@jiscmail.ac.uk + + http://dublincore.org/usage/terms/history/2003/02/12/ + 2003-02-12 + + http://dublincore.org/usage/terms/history/ + Not applicable + Not applicable + http://dublincore.org/resources/translations/ + This is a DCMI Recommendation. + + This document is a consolidated, + historically complete, and updated representation of + all Elements, Element Refinements, Encoding Schemes, + and Vocabulary Terms in DCMI-maintained namespaces in + all of their historical versions both current and + superseded. While this document may be useful for tracking + changes in the status and attributes of terms over time, + most users will need just "the latest" information, + which is held in the document "DCMI Metadata Terms" + at http://dublincore.org/usage/documents/dcmi-terms/. + + +

diff --git a/2007-08-15/intro.dcmi-terms.xsl b/2007-08-15/intro.dcmi-terms.xsl new file mode 100755 index 0000000..d90e5e0 --- /dev/null +++ b/2007-08-15/intro.dcmi-terms.xsl @@ -0,0 +1,211 @@ + + + + + + +

+This document is an up-to-date, authoritative specification +of all metadata terms maintained by the Dublin Core Metadata +Initiative -- elements, element refinements, encoding schemes, +and vocabulary terms (the DCMI Type Vocabulary). Links to +other relevant documentation may be found on the "Overview +of Documentation for DCMI Metadata Terms" [OVERVIEW]. + +

+Legacy documents covering subsets of this document are +in the public domain, including the IETF +RFC 2413 [RFC2413], the CEN Workshop Agreement CWA 13874 +[CWA13874], NISO Standard Z39.85-2001 [Z3985], and a variety +of national standards that include some or all of the Dublin +Core Metadata Set. + +

+Each term is specified with the following minimal set of attributes: +

+ + + + + + + + +
+Name: + +The unique token assigned to the term. +
+URI: + +The Uniform Resource Identifier used to uniquely identify a term. +
+Label: + +The human-readable label assigned to the term. +
+Definition: + +A statement that represents the concept and essential nature of the term. +
+Type of Term: + +The type of term, such as Element or Encoding Scheme, as described in the DCMI Grammatical Principles. +
+Status: + +Status assigned to term by the DCMI Usage Board, as described in the DCMI Usage Board Process. +
+Date issued: + +Date on which a term was first declared. +
+ +

+Where applicable, the following attributes provide additional information about a term: +

+ + + + + + + + +
+Comment: + +Additional information about the term or its application. +
+See: + +A link to authoritative documentation. +
+References: + +A citation or URL of a resource referenced in the Definition or Comment. +
+Refines: + +A reference to a term refined by an Element Refinement. +
+Qualifies: + +A reference to a term qualified by an Encoding Scheme. +
+Broader Than: + +A reference from a more general to a more specific Vocabulary Term. +
+Narrower Than: + +A reference from a more specific to a more general Vocabulary Term. +
+ +

+Anchors have been embedded in this document so +that users may cite a particular entry with the form +"http://dublincore.org/documents/dcmi-terms/#term-name" +(e.g., "http://dublincore.org/documents/dcmi-terms/#title"). +While this form of citation is supported for documentary +convenience, note that the URI assigned to each term in +accordance with the DCMI Namespace Policy serves as its unique +identifier (e.g., "http://purl.org/dc/elements/1.1/title") +[NAMESPACE]. + +

+Readers desiring further information about the change history +or Usage Board decisions that support these terms should +consult the document "DCMI Metadata Terms -- A Complete +Historical Record" [HISTORY]. + +

+This documentation is maintained by the DCMI Usage +Board. Although DCMI is committed to ensuring a high degree +of stability of the specifications it maintains, changes may +occur as a result of the work of the Usage Board. The policies +and processes governing the identification and maintenance +of metadata terms are described in "DCMI Namespace Policy" +[NAMESPACE], "DCMI Grammatical Principles" [PRINCIPLES], +and "DCMI Usage Board Administrative Processes" [PROCESS]. +Usage Board decisions with respect to DCMI metadata terms +are summarized on the Web page "DCMI Usage Board Decisions" +[DECISIONS]. + +Three attributes of terms -- Label, Definition, and Comment +-- have natural-language values which may be translated into +Japanese, Norwegian, or other languages. Although there is +currently no mechanism in place to validate or certify such +translations in an official sense, DCMI maintains a Web page +with pointers to known translations of semantic specifications +and related DCMI documents [TRANSLATIONS] + +

+

References

+ + + + + + + + + + + + + + + + + + + + + + +
+ [RFC2413] + +http://www.ietf.org/rfc/rfc2413.txt +
+ [Z3985] + +http://www.niso.org/standards/resources/Z39-85.pdf +
+ [CWA13874] + +CEN Workshop Agreement CWA 13874. March 2000 (no longer available). +
+ [NAMESPACE] + +http://dublincore.org/documents/dcmi-namespace/ +
+ [HISTORY] + +http://dublincore.org/usage/terms/history/ +
+ [OVERVIEW] + +http://dublincore.org/usage/documents/overview/ +
+ [PRINCIPLES] + +http://dublincore.org/usage/documents/principles/ +
+ [PROCESS] + +http://dublincore.org/usage/documents/process/ +
+ [DECISIONS] + +http://dublincore.org/usage/decisions/ +
+ [TRANSLATIONS] + +http://dublincore.org/resources/translations/ +
+ +
+
diff --git a/2007-08-15/intro.history.xsl b/2007-08-15/intro.history.xsl new file mode 100755 index 0000000..ef163de --- /dev/null +++ b/2007-08-15/intro.history.xsl @@ -0,0 +1,86 @@ + + + + + + +

Introduction

+ +

This document is an authoritative specification of +all metadata terms maintained by the Dublin Core Metadata +Initiative -- elements, element refinements, encoding +schemes, and vocabulary terms (the DCMI Type Vocabulary) -- +in all of their historical versions. + +

Most users will not need the historical detail presented +here and should instead consult the document "DCMI Metadata +Terms", which presents only the most current information on +terms [TERMS]. Links to other relevant documentation may +be found on the "Overview of Documentation for DCMI Metadata +Terms" [OVERVIEW]. + +

In addition to the attributes used to describe terms +in the document "DCMI Metadata Terms" [TERMS], this document +includes additional information related to the versioning +history of individual terms: + +

+ + + + + + + + + + + + +
+Namespace: + +The URI of the namespace within which the term is defined. +
+Date modified: + +Date on which a term declaration was subsequently modified. +
+Decision: + +A link to the Usage Board decision describing the creation or modification of a term declaration. +
+Version: + +An historical version of a term declaration. +
+Replaces: + +A reference to the immediately precedent historical version of a term declaration. +
+Is Replaced By: + +An identifier for the historical version of a term declaration by which this historical version is superseded. +
+ +

+

References

+ + + + + + +
+ [TERMS] + +http://dublincore.org/documents/dcmi-terms/ +
+ [OVERVIEW] + +http://dublincore.org/usage/documents/overview/ +
+ +
+
diff --git a/2007-08-15/mn-dcmi-class-list.xml b/2007-08-15/mn-dcmi-class-list.xml new file mode 100755 index 0000000..a45c032 --- /dev/null +++ b/2007-08-15/mn-dcmi-class-list.xml @@ -0,0 +1,129 @@ + + + + + + ]> + + + + + &dcns;subject + + Subject Encoding Schemes + A set of subject encoding schemes and/or formats + + + 2000-07-11 + + + + + &dcns;date + + Date Encoding Schemes + A set of date encoding schemes and/or formats + + + + 2000-07-11 + + + + + &dcns;format + + Format Encoding Schemes + A set of format encoding schemes. + + + 2000-07-11 + + + + + &dcns;language + + Language Encoding Schemes + A set of language encoding schemes and/or formats. + + + 2000-07-11 + + + + + &dctermsns;spatial + + Place Encoding Schemes + A set of geographic place encoding schemes and/or formats + + + 2000-07-11 + + + + + &dctermsns;temporal + + Encoding Schemes + for temporal characteristics + A set of encoding schemes for + the coverage qualifier "temporal" + + 2000-07-11 + + + + + + &dcns;type + + Resource Type Encoding Schemes + A set of resource type encoding schemes and/or formats + + 2000-07-11 + + + + + + &dcns;identifier + + Resource Identifier Encoding Schemes + A set of resource identifier encoding schemes and/or formats + + 2000-07-11 + + + + + + &dcns;relation + + Resource Relation Encoding Schemes + A set of resource relation encoding schemes and/or formats + + 2000-07-11 + + + + + + &dcns;source + + Source Encoding Schemes + A set of source encoding schemes and/or formats + + 2000-07-11 + + + + + diff --git a/2007-08-15/schemes.xml b/2007-08-15/schemes.xml new file mode 100755 index 0000000..7cdf1ec --- /dev/null +++ b/2007-08-15/schemes.xml @@ -0,0 +1,996 @@ + + + + + + LCSH-003 + http://purl.org/dc/terms/LCSH + http://purl.org/dc/terms/ + LCSH + + The set of concepts defined by Library of Congress Subject Headings. + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#LCSH-003 + http://dublincore.org/usage/terms/history/#LCSH-002 + + + + LCSH-002 + http://purl.org/dc/terms/LCSH + http://purl.org/dc/terms/ + LCSH + + Library of Congress Subject Headings + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#LCSH-002 + http://dublincore.org/usage/terms/history/#LCSH-001 + http://dublincore.org/usage/terms/history/#LCSH-002 + + + + LCSH-001 + http://purl.org/dc/terms/LCSH + http://purl.org/dc/terms/ + LCSH + + Library of Congress Subject Headings + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#LCSH-001 + http://dublincore.org/usage/terms/history/#LCSH-002 + + + + MESH-003 + http://purl.org/dc/terms/MESH + http://purl.org/dc/terms/ + MESH + + The set of concepts defined by Medical Subject Headings. + http://www.nlm.nih.gov/mesh/meshhome.html + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#MESH-003 + http://dublincore.org/usage/terms/history/#MESH-002 + + + + MESH-002 + http://purl.org/dc/terms/MESH + http://purl.org/dc/terms/ + MESH + + Medical Subject Headings + http://www.nlm.nih.gov/mesh/meshhome.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#MESH-002 + http://dublincore.org/usage/terms/history/#MESH-001 + http://dublincore.org/usage/terms/history/#MESH-003 + + + + MESH-001 + http://purl.org/dc/terms/MESH + http://purl.org/dc/terms/ + MESH + + Medical Subject Headings + http://www.nlm.nih.gov/mesh/meshhome.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#MESH-001 + http://dublincore.org/usage/terms/history/#MESH-002 + + + + DDC-003 + http://purl.org/dc/terms/DDC + http://purl.org/dc/terms/ + DDC + + The set of concepts defined by Dewey Decimal Classification. + http://www.oclc.org/dewey/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#DDC-003 + http://dublincore.org/usage/terms/history/#DDC-002 + + + + DDC-002 + http://purl.org/dc/terms/DDC + http://purl.org/dc/terms/ + DDC + + Dewey Decimal Classification + http://www.oclc.org/dewey/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#DDC-002 + http://dublincore.org/usage/terms/history/#DDC-001 + http://dublincore.org/usage/terms/history/#DDC-003 + + + + DDC-001 + http://purl.org/dc/terms/DDC + http://purl.org/dc/terms/ + DDC + + Dewey Decimal Classification + http://www.oclc.org/dewey/index.htm + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#DDC-001 + http://dublincore.org/usage/terms/history/#DDC-002 + + + + LCC-003 + http://purl.org/dc/terms/LCC + http://purl.org/dc/terms/ + LCC + + The set of concepts defined by Library of Congress Classification. + http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#LCC-003 + http://dublincore.org/usage/terms/history/#LCC-002 + + + + LCC-002 + http://purl.org/dc/terms/LCC + http://purl.org/dc/terms/ + LCC + + Library of Congress Classification + http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#LCC-002 + http://dublincore.org/usage/terms/history/#LCC-001 + http://dublincore.org/usage/terms/history/#LCC-003 + + + + LCC-001 + http://purl.org/dc/terms/LCC + http://purl.org/dc/terms/ + LCC + + Library of Congress Classification + http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#LCC-001 + http://dublincore.org/usage/terms/history/#LCC-002 + + + + UDC-003 + http://purl.org/dc/terms/UDC + http://purl.org/dc/terms/ + UDC + + The set of concepts defined by Universal Decimal Classification. + http://www.udcc.org/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#UDC-003 + http://dublincore.org/usage/terms/history/#UDC-002 + + + + UDC-002 + http://purl.org/dc/terms/UDC + http://purl.org/dc/terms/ + UDC + + Universal Decimal Classification + http://www.udcc.org/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#UDC-002 + http://dublincore.org/usage/terms/history/#UDC-001 + http://dublincore.org/usage/terms/history/#UDC-003 + + + + UDC-001 + http://purl.org/dc/terms/UDC + http://purl.org/dc/terms/ + UDC + + Universal Decimal Classification + http://www.udcc.org/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#UDC-001 + http://dublincore.org/usage/terms/history/#UDC-002 + + + + DCMIType-003 + http://purl.org/dc/terms/DCMIType + http://purl.org/dc/terms/ + DCMIType + + A set of concepts used to categorize the nature or genre of the resource. + http://dublincore.org/documents/dcmi-type-vocabulary/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#DCMIType-003 + http://dublincore.org/usage/terms/history/#DCMIType-002 + + + + DCMIType-002 + http://purl.org/dc/terms/DCMIType + http://purl.org/dc/terms/ + DCMIType + + A list of types used to categorize the nature or genre + of the content of the resource. + http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/type + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#DCMIType-002 + http://dublincore.org/usage/terms/history/#DCMIType-001 + http://dublincore.org/usage/terms/history/#DCMIType-003 + + + + DCMIType-001 + http://purl.org/dc/terms/DCMIType + http://purl.org/dc/terms/ + DCMIType + + A list of types used to categorize the nature or genre + of the content of the resource. + http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/type + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#DCMIType-001 + http://dublincore.org/usage/terms/history/#DCMIType-002 + + + + IMT-004 + http://purl.org/dc/terms/IMT + http://purl.org/dc/terms/ + IMT + + A set of concepts defined by IANA used to indicate the media type of the resource. + http://www.iana.org/assignments/media-types/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#IMT-004 + http://dublincore.org/usage/terms/history/#IMT-003 + + + + IMT-003 + http://purl.org/dc/terms/IMT + http://purl.org/dc/terms/ + IMT + + The Internet media type of the resource. + http://www.iana.org/assignments/media-types/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/format + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2004-12-17 + http://dublincore.org/usage/decisions/#Decision-2004-03 + http://dublincore.org/usage/terms/history/#IMT-003 + http://dublincore.org/usage/terms/history/#IMT-002 + http://dublincore.org/usage/terms/history/#IMT-004 + + + + IMT-002 + http://purl.org/dc/terms/IMT + http://purl.org/dc/terms/ + IMT + + The Internet media type of the resource. + http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/format + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#IMT-002 + http://dublincore.org/usage/terms/history/#IMT-001 + http://dublincore.org/usage/terms/history/#IMT-003 + + + + IMT-001 + http://purl.org/dc/terms/IMT + http://purl.org/dc/terms/ + IMT + + The Internet media type of the resource. + http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/format + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#IMT-001 + http://dublincore.org/usage/terms/history/#IMT-002 + + + + ISO639-2-003 + http://purl.org/dc/terms/ISO639-2 + http://purl.org/dc/terms/ + ISO639-2 + + The set of three-letter codes listed in ISO639-2 for the representation of names of languages. + http://lcweb.loc.gov/standards/iso639-2/langhome.html + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#ISO639-2-003 + http://dublincore.org/usage/terms/history/#ISO639-2-002 + + + + ISO639-2-002 + http://purl.org/dc/terms/ISO639-2 + http://purl.org/dc/terms/ + ISO639-2 + + ISO 639-2: Codes for the representation of names of languages. + http://lcweb.loc.gov/standards/iso639-2/langhome.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#ISO639-2-002 + http://dublincore.org/usage/terms/history/#ISO639-2-001 + http://dublincore.org/usage/terms/history/#ISO639-2-003 + + + + ISO639-2-001 + http://purl.org/dc/terms/ISO639-2 + http://purl.org/dc/terms/ + ISO639-2 + + ISO 639-2: Codes for the representation of names of languages. + http://lcweb.loc.gov/standards/iso639-2/langhome.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#ISO639-2-001 + http://dublincore.org/usage/terms/history/#ISO639-2-002 + + + + RFC1766-003 + http://purl.org/dc/terms/RFC1766 + http://purl.org/dc/terms/ + RFC1766 + + The set of tags, constructed according to RFC 1766, for the identification of languages. + http://www.ietf.org/rfc/rfc1766.txt + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#RFC1766-003 + http://dublincore.org/usage/terms/history/#RFC1766-002 + + + + RFC1766-002 + http://purl.org/dc/terms/RFC1766 + http://purl.org/dc/terms/ + RFC1766 + + Internet RFC 1766 'Tags for the identification of Language' + specifies a two letter code taken from ISO 639, followed + optionally by a two letter country code taken from ISO 3166. + http://www.ietf.org/rfc/rfc1766.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#RFC1766-002 + http://dublincore.org/usage/terms/history/#RFC1766-001 + http://dublincore.org/usage/terms/history/#RFC1766-003 + + + + RFC1766-001 + http://purl.org/dc/terms/RFC1766 + http://purl.org/dc/terms/ + RFC1766 + + Internet RFC 1766 'Tags for the identification of Language' + specifies a two letter code taken from ISO 639, followed + optionally by a two letter country code taken from ISO 3166. + http://www.ietf.org/rfc/rfc1766.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#RFC1766-001 + http://dublincore.org/usage/terms/history/#RFC1766-002 + + + + URI-003 + http://purl.org/dc/terms/URI + http://purl.org/dc/terms/ + URI + + The set of identifiers constructed according to the generic syntax for Uniform Resource Identifiers as defined by the IETF. + http://www.ietf.org/rfc/rfc3986.txt + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#URI-003 + http://dublincore.org/usage/terms/history/#URI-002 + + + + URI-002 + http://purl.org/dc/terms/URI + http://purl.org/dc/terms/ + URI + + A URI Uniform Resource Identifier + http://www.ietf.org/rfc/rfc2396.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#URI-002 + http://dublincore.org/usage/terms/history/#URI-001 + http://dublincore.org/usage/terms/history/#URI-003 + + + + URI-001 + http://purl.org/dc/terms/URI + http://purl.org/dc/terms/ + URI + + A URI Uniform Resource Identifier + http://www.ietf.org/rfc/rfc2396.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#URI-001 + http://dublincore.org/usage/terms/history/#URI-002 + + + + Point-003 + http://purl.org/dc/terms/Point + http://purl.org/dc/terms/ + Point + + The set of points in space defined by their geographic coordinates according to the DCMI Point Encoding Scheme. + http://dublincore.org/documents/dcmi-point/ + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#Point-003 + http://dublincore.org/usage/terms/history/#Point-002 + + + + Point-002 + http://purl.org/dc/terms/Point + http://purl.org/dc/terms/ + Point + + The DCMI Point identifies a point in space using its geographic coordinates. + http://dublincore.org/documents/dcmi-point/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#Point-002 + http://dublincore.org/usage/terms/history/#Point-001 + http://dublincore.org/usage/terms/history/#Point-003 + + + + Point-001 + http://purl.org/dc/terms/Point + http://purl.org/dc/terms/ + Point + + The DCMI Point identifies a point in space using its geographic coordinates. + http://dublincore.org/documents/dcmi-point/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#Point-001 + http://dublincore.org/usage/terms/history/#Point-002 + + + + ISO3166-004 + http://purl.org/dc/terms/ISO3166 + http://purl.org/dc/terms/ + ISO3166 + + The set of codes listed in ISO 3166-1 for the representation of names of countries. + http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#ISO3166-004 + http://dublincore.org/usage/terms/history/#ISO3166-003 + + + + ISO3166-003 + http://purl.org/dc/terms/ISO3166 + http://purl.org/dc/terms/ + ISO3166 + + ISO 3166 Codes for the representation of names of countries + http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2004-12-17 + http://dublincore.org/usage/decisions/#Decision-2004-03 + http://dublincore.org/usage/terms/history/#ISO3166-003 + http://dublincore.org/usage/terms/history/#ISO3166-002 + http://dublincore.org/usage/terms/history/#ISO3166-004 + + + + ISO3166-002 + http://purl.org/dc/terms/ISO3166 + http://purl.org/dc/terms/ + ISO3166 + + ISO 3166 Codes for the representation of names of countries + http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/index.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#ISO3166-002 + http://dublincore.org/usage/terms/history/#ISO3166-001 + http://dublincore.org/usage/terms/history/#ISO3166-003 + + + + ISO3166-001 + http://purl.org/dc/terms/ISO3166 + http://purl.org/dc/terms/ + ISO3166 + + ISO 3166 Codes for the representation of names of countries + http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/index.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#ISO3166-001 + http://dublincore.org/usage/terms/history/#ISO3166-002 + + + + Box-003 + http://purl.org/dc/terms/Box + http://purl.org/dc/terms/ + Box + + The set of regions in space defined by their geographic coordinates according to the DCMI Box Encoding Scheme. + http://dublincore.org/documents/dcmi-box/ + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#Box-003 + http://dublincore.org/usage/terms/history/#Box-002 + + + + Box-002 + http://purl.org/dc/terms/Box + http://purl.org/dc/terms/ + Box + + The DCMI Box identifies a region of space using its geographic limits. + http://dublincore.org/documents/dcmi-box/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#Box-002 + http://dublincore.org/usage/terms/history/#Box-001 + http://dublincore.org/usage/terms/history/#Box-003 + + + + Box-001 + http://purl.org/dc/terms/Box + http://purl.org/dc/terms/ + Box + + The DCMI Box identifies a region of space using its geographic limits. + http://dublincore.org/documents/dcmi-box/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#Box-001 + http://dublincore.org/usage/terms/history/#Box-002 + + + + TGN-003 + http://purl.org/dc/terms/TGN + http://purl.org/dc/terms/ + TGN + + The set of places defined by the Getty Thesaurus of Geographic Names. + http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#TGN-003 + http://dublincore.org/usage/terms/history/#TGN-002 + + + + TGN-002 + http://purl.org/dc/terms/TGN + http://purl.org/dc/terms/ + TGN + + The Getty Thesaurus of Geographic Names + http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#TGN-002 + http://dublincore.org/usage/terms/history/#TGN-001 + http://dublincore.org/usage/terms/history/#TGN-003 + + + + TGN-001 + http://purl.org/dc/terms/TGN + http://purl.org/dc/terms/ + TGN + + The Getty Thesaurus of Geographic Names + http://shiva.pub.getty.edu/tgn_browser/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#TGN-001 + http://dublincore.org/usage/terms/history/#TGN-002 + + + + Period-003 + http://purl.org/dc/terms/Period + http://purl.org/dc/terms/ + Period + + The set of time intervals defined by their limits according to the DCMI Period Encoding Scheme. + http://dublincore.org/documents/dcmi-period/ + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#Period-003 + http://dublincore.org/usage/terms/history/#Period-002 + + + + Period-002 + http://purl.org/dc/terms/Period + http://purl.org/dc/terms/ + Period + + A specification of the limits of a time interval. + http://dublincore.org/documents/dcmi-period/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#Period-002 + http://dublincore.org/usage/terms/history/#Period-001 + http://dublincore.org/usage/terms/history/#Period-003 + + + + Period-001 + http://purl.org/dc/terms/Period + http://purl.org/dc/terms/ + Period + + A specification of the limits of a time interval. + http://dublincore.org/documents/dcmi-period/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#Period-001 + http://dublincore.org/usage/terms/history/#Period-002 + + + + W3CDTF-003 + http://purl.org/dc/terms/W3CDTF + http://purl.org/dc/terms/ + W3CDTF + + The set of dates and times constructed according to the W3C Date and Time Formats Specification. + http://www.w3.org/TR/NOTE-datetime + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#W3CDTF-003 + http://dublincore.org/usage/terms/history/#W3CDTF-002 + + + + W3CDTF-002 + http://purl.org/dc/terms/W3CDTF + http://purl.org/dc/terms/ + W3CDTF + + W3C Encoding rules for dates and times - a profile based on ISO 8601 + http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#W3CDTF-002 + http://dublincore.org/usage/terms/history/#W3CDTF-001 + http://dublincore.org/usage/terms/history/#W3CDTF-003 + + + + W3CDTF-001 + http://purl.org/dc/terms/W3CDTF + http://purl.org/dc/terms/ + W3CDTF + + W3C Encoding rules for dates and times - a profile based on ISO 8601 + http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#W3CDTF-001 + http://dublincore.org/usage/terms/history/#W3CDTF-002 + + + + RFC3066-002 + http://purl.org/dc/terms/RFC3066 + http://purl.org/dc/terms/ + RFC3066 + + The set of tags, constructed according to RFC 3066, for the identification of languages. + RFC 3066 has been obsoleted by RFC 4646. + http://www.ietf.org/rfc/rfc3066.txt + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2002-07-13 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#RFC3066-002 + http://dublincore.org/usage/terms/history/#RFC3066-001 + + + + RFC3066-001 + http://purl.org/dc/terms/RFC3066 + http://purl.org/dc/terms/ + RFC3066 + + Internet RFC 3066 'Tags for the + Identification of Languages' specifies a primary + subtag which is a two-letter code taken from ISO + 639 part 1 or a three-letter code taken from ISO 639 + part 2, followed optionally by a two-letter country + code taken from ISO 3166. When a language in ISO + 639 has both a two-letter and three-letter code, use + the two-letter code; when it has only a three-letter + code, use the three-letter code. This RFC replaces + RFC 1766. + http://www.ietf.org/rfc/rfc3066.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + http://dublincore.org/usage/documents/process/#registered + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#RFC3066-001 + + + + NLM-002 + NLM + http://purl.org/dc/terms/NLM + http://purl.org/dc/terms/ + + The set of concepts defined by the National Library of Medicine Classification. + http://wwwcf.nlm.nih.gov/class/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2005-06-13 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#NLM-002 + http://dublincore.org/usage/terms/history/#NLM-001 + + + + NLM-001 + NLM + http://purl.org/dc/terms/NLM + http://purl.org/dc/terms/ + + National Library of Medicine Classification + http://wwwcf.nlm.nih.gov/class/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-01 + http://dublincore.org/usage/terms/history/#NLM-001 + http://dublincore.org/usage/terms/history/#NLM-002 + + + + RFC4646-001 + RFC4646 + + The set of tags, constructed according to RFC 4646, for the identification of languages. + RFC 4646 obsoletes RFC 3066. + http://www.ietf.org/rfc/rfc4646.txt + http://www.w3.org/2000/01/rdf-schema#Datatype + 2007-08-15 + + + + memberOf-001 + memberOf + + A relationship between a resource and a vocabulary encoding scheme which indicates that the resource is a member of a set. + RFC 4646 obsoletes RFC 3066. + http://dublincore.org/documents/2007/06/04/abstract-model/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + 2007-08-15 + + + + VocabularyEncodingScheme-001 + VocabularyEncodingScheme + + An enumerated set of resources. + RFC 4646 obsoletes RFC 3066. + http://dublincore.org/documents/2007/06/04/abstract-model/ + http://www.w3.org/2000/01/rdf-schema#Class + 2007-08-15 + + + diff --git a/2007-08-15/terms.xml b/2007-08-15/terms.xml new file mode 100755 index 0000000..efdb423 --- /dev/null +++ b/2007-08-15/terms.xml @@ -0,0 +1,1897 @@ + + + + + + audience-003 + http://purl.org/dc/terms/audience + http://purl.org/dc/terms/ + audience + + An entity for whom the resource is intended or useful. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#audience-003 + http://dublincore.org/usage/terms/history/#audience-002 + + + + audience-002 + http://purl.org/dc/terms/audience + http://purl.org/dc/terms/ + audience + + A class of entity for whom the resource is intended or useful. + A class of entity may be determined by the creator or the + publisher or by a third party. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#audience-002 + http://dublincore.org/usage/terms/history/#audience-001 + http://dublincore.org/usage/terms/history/#audience-003 + + + + audience-001 + http://purl.org/dc/terms/audience + http://purl.org/dc/terms/ + audience + + A class of entity for whom the resource is intended or useful. + A class of entity may be determined by the creator or the + publisher or by a third party. + http://dublincore.org/usage/documents/principles/#element + Domain-Specific + 2001-05-21 + http://dublincore.org/usage/decisions/#Decision-2001-01 + http://dublincore.org/usage/terms/history/#audience-001 + http://dublincore.org/usage/terms/history/#audience-002 + + + + alternative-003 + http://purl.org/dc/terms/alternative + http://purl.org/dc/terms/ + alternative + + An alternative name for the resource. + The distinction between titles and alternative titles is application- specific. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/title + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#alternative-003 + http://dublincore.org/usage/terms/history/#alternative-002 + + + + alternative-002 + http://purl.org/dc/terms/alternative + http://purl.org/dc/terms/ + alternative + + Any form of the title used as a substitute or alternative + to the formal title of the resource. + This qualifier can include Title abbreviations as well + as translations. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/title + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#alternative-002 + http://dublincore.org/usage/terms/history/#alternative-001 + http://dublincore.org/usage/terms/history/#alternative-003 + + + + alternative-001 + http://purl.org/dc/terms/alternative + http://purl.org/dc/terms/ + alternative + + Any form of the title used as a substitute or alternative + to the formal title of the resource. + This qualifier can include Title abbreviations as well + as translations. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/title + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#alternative-001 + http://dublincore.org/usage/terms/history/#alternative-002 + + + + tableOfContents-003 + http://purl.org/dc/terms/tableOfContents + http://purl.org/dc/terms/ + tableOfContents + + A list of subunits of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/description + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#tableOfContents-003 + http://dublincore.org/usage/terms/history/#tableOfContents-002 + + + + tableOfContents-002 + http://purl.org/dc/terms/tableOfContents + http://purl.org/dc/terms/ + tableOfContents + + A list of subunits of the content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/description + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#tableOfContents-002 + http://dublincore.org/usage/terms/history/#tableOfContents-001 + http://dublincore.org/usage/terms/history/#tableOfContents-003 + + + + tableOfContents-001 + http://purl.org/dc/terms/tableOfContents + http://purl.org/dc/terms/ + tableOfContents + + A list of subunits of the content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/description + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#tableOfContents-001 + http://dublincore.org/usage/terms/history/#tableOfContents-002 + + + + abstract-003 + http://purl.org/dc/terms/abstract + http://purl.org/dc/terms/ + abstract + + A summary of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/description + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#abstract-003 + http://dublincore.org/usage/terms/history/#abstract-002 + + + + abstract-002 + http://purl.org/dc/terms/abstract + http://purl.org/dc/terms/ + abstract + + A summary of the content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/description + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#abstract-002 + http://dublincore.org/usage/terms/history/#abstract-001 + http://dublincore.org/usage/terms/history/#abstract-003 + + + + abstract-001 + http://purl.org/dc/terms/abstract + http://purl.org/dc/terms/ + abstract + + A summary of the content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/description + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#abstract-001 + http://dublincore.org/usage/terms/history/#abstract-002 + + + + created-003 + http://purl.org/dc/terms/created + http://purl.org/dc/terms/ + created + + Date of creation of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#created-003 + http://dublincore.org/usage/terms/history/#created-002 + + + + created-002 + http://purl.org/dc/terms/created + http://purl.org/dc/terms/ + created + + Date of creation of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#created-002 + http://dublincore.org/usage/terms/history/#created-001 + http://dublincore.org/usage/terms/history/#created-003 + + + + created-001 + http://purl.org/dc/terms/created + http://purl.org/dc/terms/ + created + + Date of creation of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#created-001 + http://dublincore.org/usage/terms/history/#created-002 + + + + valid-003 + http://purl.org/dc/terms/valid + http://purl.org/dc/terms/ + valid + + Date (often a range) of validity of a resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#valid-003 + http://dublincore.org/usage/terms/history/#valid-002 + + + + valid-002 + http://purl.org/dc/terms/valid + http://purl.org/dc/terms/ + valid + + Date (often a range) of validity of a resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#valid-002 + http://dublincore.org/usage/terms/history/#valid-001 + http://dublincore.org/usage/terms/history/#valid-003 + + + + valid-001 + http://purl.org/dc/terms/valid + http://purl.org/dc/terms/ + valid + + Date (often a range) of validity of a resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#valid-001 + http://dublincore.org/usage/terms/history/#valid-002 + + + + available-003 + http://purl.org/dc/terms/available + http://purl.org/dc/terms/ + available + + Date (often a range) that the resource became or will become available. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#available-003 + http://dublincore.org/usage/terms/history/#available-002 + + + + available-002 + http://purl.org/dc/terms/available + http://purl.org/dc/terms/ + available + + Date (often a range) that the resource will become or did + become available. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#available-002 + http://dublincore.org/usage/terms/history/#available-001 + http://dublincore.org/usage/terms/history/#available-003 + + + + available-001 + http://purl.org/dc/terms/available + http://purl.org/dc/terms/ + available + + Date (often a range) that the resource will become or did + become available. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#available-001 + http://dublincore.org/usage/terms/history/#available-002 + + + + issued-003 + http://purl.org/dc/terms/issued + http://purl.org/dc/terms/ + issued + + Date of formal issuance (e.g., publication) of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#issued-003 + http://dublincore.org/usage/terms/history/#issued-002 + + + + issued-002 + http://purl.org/dc/terms/issued + http://purl.org/dc/terms/ + issued + + Date of formal issuance (e.g., publication) of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#issued-002 + http://dublincore.org/usage/terms/history/#issued-001 + http://dublincore.org/usage/terms/history/#issued-003 + + + + issued-001 + http://purl.org/dc/terms/issued + http://purl.org/dc/terms/ + issued + + Date of formal issuance (e.g., publication) of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#issued-001 + http://dublincore.org/usage/terms/history/#issued-002 + + + + modified-003 + http://purl.org/dc/terms/modified + http://purl.org/dc/terms/ + modified + + Date on which the resource was changed. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#modified-003 + http://dublincore.org/usage/terms/history/#modified-002 + + + + modified-002 + http://purl.org/dc/terms/modified + http://purl.org/dc/terms/ + modified + + Date on which the resource was changed. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#modified-002 + http://dublincore.org/usage/terms/history/#modified-001 + http://dublincore.org/usage/terms/history/#modified-003 + + + + modified-001 + http://purl.org/dc/terms/modified + http://purl.org/dc/terms/ + modified + + Date on which the resource was changed. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#modified-001 + http://dublincore.org/usage/terms/history/#modified-002 + + + + extent-003 + http://purl.org/dc/terms/extent + http://purl.org/dc/terms/ + extent + + The size or duration of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/format + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#extent-003 + http://dublincore.org/usage/terms/history/#extent-002 + + + + extent-002 + http://purl.org/dc/terms/extent + http://purl.org/dc/terms/ + extent + + The size or duration of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/format + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#extent-002 + http://dublincore.org/usage/terms/history/#extent-001 + http://dublincore.org/usage/terms/history/#extent-003 + + + + extent-001 + http://purl.org/dc/terms/extent + http://purl.org/dc/terms/ + extent + + The size or duration of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/format + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#extent-001 + http://dublincore.org/usage/terms/history/#extent-002 + + + + medium-003 + http://purl.org/dc/terms/medium + http://purl.org/dc/terms/ + medium + + The material or physical carrier of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/format + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#medium-003 + http://dublincore.org/usage/terms/history/#medium-002 + + + + medium-002 + http://purl.org/dc/terms/medium + http://purl.org/dc/terms/ + medium + + The material or physical carrier of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/format + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#medium-002 + http://dublincore.org/usage/terms/history/#medium-001 + http://dublincore.org/usage/terms/history/#medium-003 + + + + medium-001 + http://purl.org/dc/terms/medium + http://purl.org/dc/terms/ + medium + + The material or physical carrier of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/format + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#medium-001 + http://dublincore.org/usage/terms/history/#medium-002 + + + + isVersionOf-003 + http://purl.org/dc/terms/isVersionOf + http://purl.org/dc/terms/ + isVersionOf + + A resource of which the described resource is + a version, edition, or adaptation. + Changes in version imply substantive changes + in content rather than differences in format. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#isVersionOf-003 + http://dublincore.org/usage/terms/history/#isVersionOf-002 + + + + isVersionOf-002 + http://purl.org/dc/terms/isVersionOf + http://purl.org/dc/terms/ + isVersionOf + + The described resource is a version, edition, or adaptation + of the referenced resource. Changes in version imply substantive + changes in content rather than differences in format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isVersionOf-002 + http://dublincore.org/usage/terms/history/#isVersionOf-001 + http://dublincore.org/usage/terms/history/#isVersionOf-003 + + + + isVersionOf-001 + http://purl.org/dc/terms/isVersionOf + http://purl.org/dc/terms/ + isVersionOf + + The described resource is a version, edition, or adaptation + of the referenced resource. Changes in version imply substantive + changes in content rather than differences in format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isVersionOf-001 + http://dublincore.org/usage/terms/history/#isVersionOf-002 + + + + hasVersion-003 + http://purl.org/dc/terms/hasVersion + http://purl.org/dc/terms/ + hasVersion + + A related resource that is a version, edition, or adaptation of the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#hasVersion-003 + http://dublincore.org/usage/terms/history/#hasVersion-002 + + + + hasVersion-002 + http://purl.org/dc/terms/hasVersion + http://purl.org/dc/terms/ + hasVersion + + The described resource has a version, edition, or adaptation, + namely, the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#hasVersion-002 + http://dublincore.org/usage/terms/history/#hasVersion-001 + http://dublincore.org/usage/terms/history/#hasVersion-003 + + + + hasVersion-001 + http://purl.org/dc/terms/hasVersion + http://purl.org/dc/terms/ + hasVersion + + The described resource has a version, edition, or adaptation, + namely, the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#hasVersion-001 + http://dublincore.org/usage/terms/history/#hasVersion-002 + + + + isReplacedBy-003 + http://purl.org/dc/terms/isReplacedBy + http://purl.org/dc/terms/ + isReplacedBy + + A related resource that supplants, displaces, or supersedes the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#isReplacedBy-003 + http://dublincore.org/usage/terms/history/#isReplacedBy-002 + + + + isReplacedBy-002 + http://purl.org/dc/terms/isReplacedBy + http://purl.org/dc/terms/ + isReplacedBy + + The described resource is supplanted, displaced, or + superseded by the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isReplacedBy-002 + http://dublincore.org/usage/terms/history/#isReplacedBy-001 + http://dublincore.org/usage/terms/history/#isReplacedBy-003 + + + + isReplacedBy-001 + http://purl.org/dc/terms/isReplacedBy + http://purl.org/dc/terms/ + isReplacedBy + + The described resource is supplanted, displaced, or + superceded by the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isReplacedBy-001 + http://dublincore.org/usage/terms/history/#isReplacedBy-002 + + + + replaces-003 + http://purl.org/dc/terms/replaces + http://purl.org/dc/terms/ + replaces + + A related resource that is supplanted, displaced, or superseded by the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#replaces-003 + http://dublincore.org/usage/terms/history/#replaces-002 + + + + replaces-002 + http://purl.org/dc/terms/replaces + http://purl.org/dc/terms/ + replaces + + The described resource supplants, displaces, or supersedes + the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#replaces-002 + http://dublincore.org/usage/terms/history/#replaces-001 + http://dublincore.org/usage/terms/history/#Is-Replaced-By-003 + + + + replaces-001 + http://purl.org/dc/terms/replaces + http://purl.org/dc/terms/ + replaces + + The described resource supplants, displaces, or supersedes + the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#replaces-001 + http://dublincore.org/usage/terms/history/#replaces-002 + + + + isRequiredBy-003 + http://purl.org/dc/terms/isRequiredBy + http://purl.org/dc/terms/ + isRequiredBy + + A related resource that requires the described resource to support its function, delivery, or coherence. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#isRequiredBy-003 + http://dublincore.org/usage/terms/history/#isRequiredBy-002 + + + + isRequiredBy-002 + http://purl.org/dc/terms/isRequiredBy + http://purl.org/dc/terms/ + isRequiredBy + + The described resource is required by the referenced resource, + either physically or logically. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isRequiredBy-002 + http://dublincore.org/usage/terms/history/#isRequiredBy-001 + http://dublincore.org/usage/terms/history/#isRequiredBy-003 + + + + isRequiredBy-001 + http://purl.org/dc/terms/isRequiredBy + http://purl.org/dc/terms/ + isRequiredBy + + The described resource is required by the referenced resource, + either physically or logically. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isRequiredBy-001 + http://dublincore.org/usage/terms/history/#isRequiredBy-002 + + + + requires-003 + http://purl.org/dc/terms/requires + http://purl.org/dc/terms/ + requires + + A related resource that is required by the described resource to support its function, delivery, or coherence. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#requires-003 + http://dublincore.org/usage/terms/history/#requires-002 + + + + requires-002 + http://purl.org/dc/terms/requires + http://purl.org/dc/terms/ + requires + + The described resource requires the referenced resource to + support its function, delivery, or coherence of content. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#requires-002 + http://dublincore.org/usage/terms/history/#requires-001 + http://dublincore.org/usage/terms/history/#requires-003 + + + + requires-001 + http://purl.org/dc/terms/requires + http://purl.org/dc/terms/ + requires + + The described resource requires the referenced resource to + support its function, delivery, or coherence of content. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#requires-001 + http://dublincore.org/usage/terms/history/#requires-002 + + + + isPartOf-003 + http://purl.org/dc/terms/isPartOf + http://purl.org/dc/terms/ + isPartOf + + A related resource in which the described resource is physically or logically included. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#isPartOf-003 + http://dublincore.org/usage/terms/history/#isPartOf-002 + + + + isPartOf-002 + http://purl.org/dc/terms/isPartOf + http://purl.org/dc/terms/ + isPartOf + + The described resource is a physical or logical part of the + referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isPartOf-002 + http://dublincore.org/usage/terms/history/#isPartOf-001 + http://dublincore.org/usage/terms/history/#isPartOf-003 + + + + isPartOf-001 + http://purl.org/dc/terms/isPartOf + http://purl.org/dc/terms/ + isPartOf + + The described resource is a physical or logical part of the + referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isPartOf-001 + http://dublincore.org/usage/terms/history/#isPartOf-002 + + + + hasPart-003 + http://purl.org/dc/terms/hasPart + http://purl.org/dc/terms/ + hasPart + + A related resource that is included either physically or logically in the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#hasPart-003 + http://dublincore.org/usage/terms/history/#hasPart-002 + + + + hasPart-002 + http://purl.org/dc/terms/hasPart + http://purl.org/dc/terms/ + hasPart + + The described resource includes the referenced resource either + physically or logically. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#hasPart-002 + http://dublincore.org/usage/terms/history/#hasPart-001 + http://dublincore.org/usage/terms/history/#hasPart-003 + + + + hasPart-001 + http://purl.org/dc/terms/hasPart + http://purl.org/dc/terms/ + hasPart + + The described resource includes the referenced resource either + physically or logically. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#hasPart-001 + http://dublincore.org/usage/terms/history/#hasPart-002 + + + + isReferencedBy-003 + http://purl.org/dc/terms/isReferencedBy + http://purl.org/dc/terms/ + isReferencedBy + + A related resource that references, cites, or otherwise points to the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#isReferencedBy-003 + http://dublincore.org/usage/terms/history/#isReferencedBy-002 + + + + isReferencedBy-002 + http://purl.org/dc/terms/isReferencedBy + http://purl.org/dc/terms/ + isReferencedBy + + The described resource is referenced, cited, or otherwise + pointed to by the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isReferencedBy-002 + http://dublincore.org/usage/terms/history/#isReferencedBy-001 + http://dublincore.org/usage/terms/history/#isReferencedBy-003 + + + + isReferencedBy-001 + http://purl.org/dc/terms/isReferencedBy + http://purl.org/dc/terms/ + isReferencedBy + + The described resource is referenced, cited, or otherwise + pointed to by the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isReferencedBy-001 + http://dublincore.org/usage/terms/history/#isReferencedBy-002 + + + + references-003 + http://purl.org/dc/terms/references + http://purl.org/dc/terms/ + references + + A related resource that is referenced, cited, or otherwise pointed to by the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#references-003 + http://dublincore.org/usage/terms/history/#references-002 + + + + references-002 + http://purl.org/dc/terms/references + http://purl.org/dc/terms/ + references + + The described resource references, cites, or otherwise points + to the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#references-002 + http://dublincore.org/usage/terms/history/#references-001 + http://dublincore.org/usage/terms/history/#references-003 + + + + references-001 + http://purl.org/dc/terms/references + http://purl.org/dc/terms/ + references + + The described resource references, cites, or otherwise points + to the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#references-001 + http://dublincore.org/usage/terms/history/#references-002 + + + + isFormatOf-003 + http://purl.org/dc/terms/isFormatOf + http://purl.org/dc/terms/ + isFormatOf + + A related resource that is substantially the same as the described resource, but in another format. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#isFormatOf-003 + http://dublincore.org/usage/terms/history/#isFormatOf-002 + + + + isFormatOf-002 + http://purl.org/dc/terms/isFormatOf + http://purl.org/dc/terms/ + isFormatOf + + The described resource is the same intellectual content of + the referenced resource, but presented in another format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isFormatOf-002 + http://dublincore.org/usage/terms/history/#isFormatOf-001 + http://dublincore.org/usage/terms/history/#isFormatOf-003 + + + + isFormatOf-001 + http://purl.org/dc/terms/isFormatOf + http://purl.org/dc/terms/ + isFormatOf + + The described resource is the same intellectual content of + the referenced resource, but presented in another format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isFormatOf-001 + http://dublincore.org/usage/terms/history/#isFormatOf-002 + + + + hasFormat-003 + http://purl.org/dc/terms/hasFormat + http://purl.org/dc/terms/ + hasFormat + + A related resource that is substantially the same as the pre-existing described resource, but in another format. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#hasFormat-003 + http://dublincore.org/usage/terms/history/#hasFormat-002 + + + + hasFormat-002 + http://purl.org/dc/terms/hasFormat + http://purl.org/dc/terms/ + hasFormat + + The described resource pre-existed the referenced resource, + which is essentially the same intellectual content presented + in another format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#hasFormat-002 + http://dublincore.org/usage/terms/history/#hasFormat-001 + http://dublincore.org/usage/terms/history/#hasFormat-003 + + + + hasFormat-001 + http://purl.org/dc/terms/hasFormat + http://purl.org/dc/terms/ + hasFormat + + The described resource pre-existed the referenced resource, + which is essentially the same intellectual content presented + in another format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#hasFormat-001 + http://dublincore.org/usage/terms/history/#hasFormat-002 + + + + conformsTo-003 + http://purl.org/dc/terms/conformsTo + http://purl.org/dc/terms/ + conformsTo + + An established standard to which the resource conforms. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#conformsTo-003 + http://dublincore.org/usage/terms/history/#conformsTo-002 + + + + conformsTo-002 + http://purl.org/dc/terms/conformsTo + http://purl.org/dc/terms/ + conformsTo + + A reference to an established standard to which the resource conforms. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#conformsTo-002 + http://dublincore.org/usage/terms/history/#conformsTo-001 + http://dublincore.org/usage/terms/history/#conformsTo-003 + + + + conformsTo-001 + http://purl.org/dc/terms/conformsTo + http://purl.org/dc/terms/ + conformsTo + + A reference to an established standard to which the resource conforms. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + Domain-Specific + 2001-05-21 + http://dublincore.org/usage/decisions/#Decision-2001-01 + http://dublincore.org/usage/terms/history/#conformsTo-001 + http://dublincore.org/usage/terms/history/#conformsTo-002 + + + + spatial-003 + http://purl.org/dc/terms/spatial + http://purl.org/dc/terms/ + spatial + + Spatial characteristics of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/coverage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#spatial-003 + http://dublincore.org/usage/terms/history/#spatial-002 + + + + spatial-002 + http://purl.org/dc/terms/spatial + http://purl.org/dc/terms/ + spatial + + Spatial characteristics of the intellectual content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/coverage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#spatial-002 + http://dublincore.org/usage/terms/history/#spatial-001 + http://dublincore.org/usage/terms/history/#spatial-003 + + + + spatial-001 + http://purl.org/dc/terms/spatial + http://purl.org/dc/terms/ + spatial + + Spatial characteristics of the intellectual content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/coverage + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#spatial-001 + http://dublincore.org/usage/terms/history/#spatial-002 + + + + temporal-003 + http://purl.org/dc/terms/temporal + http://purl.org/dc/terms/ + temporal + + Temporal characteristics of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/coverage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#temporal-003 + http://dublincore.org/usage/terms/history/#temporal-002 + + + + temporal-002 + http://purl.org/dc/terms/temporal + http://purl.org/dc/terms/ + temporal + + Temporal characteristics of the intellectual content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/coverage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#temporal-002 + http://dublincore.org/usage/terms/history/#temporal-001 + http://dublincore.org/usage/terms/history/#temporal-003 + + + + temporal-001 + http://purl.org/dc/terms/temporal + http://purl.org/dc/terms/ + temporal + + Temporal characteristics of the intellectual content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/coverage + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#temporal-001 + http://dublincore.org/usage/terms/history/#temporal-002 + + + + mediator-003 + http://purl.org/dc/terms/mediator + http://purl.org/dc/terms/ + mediator + + An entity that mediates access to the + resource and for whom the resource is intended or useful. + In an educational context, a mediator might be a parent, teacher, teaching assistant, or care-giver. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/audience + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#mediator-003 + http://dublincore.org/usage/terms/history/#mediator-002 + + + + mediator-002 + http://purl.org/dc/terms/mediator + http://purl.org/dc/terms/ + mediator + + A class of entity that mediates access to the + resource and for whom the resource is intended or useful. + The audiences for a resource are of two basic classes: (1) an + ultimate beneficiary of the resource, and (2) frequently, an + entity that mediates access to the resource. The mediator + element refinement represents the second of these two classes. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/terms/audience + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#mediator-002 + http://dublincore.org/usage/terms/history/#mediator-001 + http://dublincore.org/usage/terms/history/#mediator-003 + + + + mediator-001 + http://purl.org/dc/terms/mediator + http://purl.org/dc/terms/ + mediator + + A class of entity that mediates access to the + resource and for whom the resource is intended or useful. + The audience for a resource in the education/training + domain are of two basic classes: (1) an ultimate beneficiary of + the resource (usually a student or trainee), and (2) frequently, + an entity that mediates access to the resource (usually a + teacher or trainer). The mediator element refinement represents + the second of these two classes. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/terms/audience + Domain-Specific + 2001-05-21 + http://dublincore.org/usage/decisions/#Decision-2001-01 + http://dublincore.org/usage/terms/history/#mediator-001 + http://dublincore.org/usage/terms/history/#mediator-002 + + + + dateAccepted-002 + http://purl.org/dc/terms/dateAccepted + http://purl.org/dc/terms/ + dateAccepted + + Date of acceptance of the resource. + Examples of resources to which a Date Accepted may be relevant are a thesis (accepted by a university department) or an article (accepted by a journal). + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#dateAccepted-002 + http://dublincore.org/usage/terms/history/#dateAccepted-001 + + + + dateAccepted-001 + http://purl.org/dc/terms/dateAccepted + http://purl.org/dc/terms/ + dateAccepted + + Date of acceptance of the resource (e.g. of thesis + by university department, of article by journal, etc.). + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#dateAccepted-001 + + + + dateCopyrighted-002 + http://purl.org/dc/terms/dateCopyrighted + http://purl.org/dc/terms/ + dateCopyrighted + + Date of copyright. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#dateCopyrighted-002 + http://dublincore.org/usage/terms/history/#dateCopyrighted-001 + + + + dateCopyrighted-001 + http://purl.org/dc/terms/dateCopyrighted + http://purl.org/dc/terms/ + dateCopyrighted + + Date of a statement of copyright. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#dateCopyrighted-001 + http://dublincore.org/usage/terms/history/#dateCopyrighted-002 + + + + dateSubmitted-002 + http://purl.org/dc/terms/dateSubmitted + http://purl.org/dc/terms/ + dateSubmitted + + Date of submission of the resource. + Examples of resources to which a Date Submitted may be relevant are a thesis (submitted to a university department) or an article (submitted to a journal). + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#dateSubmitted-002 + http://dublincore.org/usage/terms/history/#dateSubmitted-001 + + + + dateSubmitted-001 + http://purl.org/dc/terms/dateSubmitted + http://purl.org/dc/terms/ + dateSubmitted + + Date of submission of the resource (e.g. thesis, + articles, etc.). + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#dateSubmitted-001 + + + + educationLevel-002 + http://purl.org/dc/terms/educationLevel + http://purl.org/dc/terms/ + educationLevel + + A class of entity, defined in terms of progression through an educational or training context, for whom the resource is intended. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/audience + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#educationLevel-002 + http://dublincore.org/usage/terms/history/#educationLevel-001 + + + + educationLevel-001 + http://purl.org/dc/terms/educationLevel + http://purl.org/dc/terms/ + educationLevel + + A general statement describing the education or + training context. Alternatively, a more specific + statement of the location of the audience in terms of + its progression through an education or training context. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/terms/audience + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#educationLevel-001 + http://dublincore.org/usage/terms/history/#educationLevel-002 + + + + accessRights-002 + http://purl.org/dc/terms/accessRights + http://purl.org/dc/terms/ + accessRights + + Information about who can access the + resource or an indication of its security status. + + Access Rights may include information regarding access or restrictions based on privacy, security or other policies. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/rights + http://dublincore.org/usage/documents/process/#conforming + 2003-02-15 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#accessRights-002 + http://dublincore.org/usage/terms/history/#accessRights-001 + + + + accessRights-001 + http://purl.org/dc/terms/accessRights + http://purl.org/dc/terms/ + accessRights + + Information about who can access the + resource or an indication of its security status. + + Access Rights may include information + regarding access or restrictions based on privacy, + security or other regulations. + + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/rights + http://dublincore.org/usage/documents/process/#conforming + 2003-02-15 + http://dublincore.org/usage/decisions/#Decision-2003-01 + http://dublincore.org/usage/terms/history/#accessRights-001 + + + + bibliographicCitation-002 + http://purl.org/dc/terms/bibliographicCitation + http://purl.org/dc/terms/ + bibliographicCitation + + A bibliographic reference for the resource. + Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/identifier + http://dublincore.org/usage/documents/process/#conforming + 2003-02-15 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#bibliographicCitation-002 + http://dublincore.org/usage/terms/history/#bibliographicCitation-001 + + + + bibliographicCitation-001 + http://purl.org/dc/terms/bibliographicCitation + http://purl.org/dc/terms/ + bibliographicCitation + + A bibliographic reference for the resource. + + Recommended practice is to include sufficient + bibliographic detail to identify the resource as + unambiguously as possible, whether or not the + citation is in a standard form. + + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/identifier + http://dublincore.org/usage/documents/process/#conforming + 2003-02-15 + http://dublincore.org/usage/decisions/#Decision-2003-01 + http://dublincore.org/usage/terms/history/#bibliographicCitation-001 + http://dublincore.org/usage/terms/history/#bibliographicCitation-002 + + + + license-002 + http://purl.org/dc/terms/license + http://purl.org/dc/terms/ + license + + A legal document giving official permission to do something + with the resource. + Recommended best practice is to identify the license using a + URI. Examples of such licenses can be found at + http://creativecommons.org/licenses/. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/rights + http://dublincore.org/usage/documents/process/#conforming + 2004-06-14 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#license-002 + http://dublincore.org/usage/terms/history/#license-001 + + + + license-001 + http://purl.org/dc/terms/license + http://purl.org/dc/terms/ + license + + A legal document giving official permission to do something + with the resource. + Recommended best practice is to identify the license using a + URI. Examples of such licenses can be found at + http://creativecommons.org/licenses/. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/rights + http://dublincore.org/usage/documents/process/#conforming + 2004-06-14 + http://dublincore.org/usage/decisions/#Decision-2004-01 + http://dublincore.org/usage/terms/history/#license-001 + + + + rightsHolder-002 + http://purl.org/dc/terms/rightsHolder + http://purl.org/dc/terms/ + rightsHolder + + A person or organization owning or managing rights over the resource. + + + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2004-06-14 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#rightsHolder-002 + http://dublincore.org/usage/terms/history/#rightsHolder-001 + + + + rightsHolder-001 + http://purl.org/dc/terms/rightsHolder + http://purl.org/dc/terms/ + rightsHolder + + A person or organization owning or managing rights over the resource. + + Recommended best practice is to use the URI or name of + the Rights Holder to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2004-06-14 + http://dublincore.org/usage/decisions/#Decision-2004-01 + http://dublincore.org/usage/terms/history/#rightsHolder-001 + http://dublincore.org/usage/terms/history/#rightsHolder-002 + + + + Provenance-002 + http://purl.org/dc/terms/provenance + http://purl.org/dc/terms/ + provenance + + A statement of any changes in ownership and custody + of the resource since its creation that are + significant for its authenticity, integrity and + interpretation. + + The statement may include a description of any + changes successive custodians made to the resource. + + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2004-09-20 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#provenance-002 + http://dublincore.org/usage/terms/history/#provenance-001 + + + + Provenance-001 + http://purl.org/dc/terms/provenance + http://purl.org/dc/terms/ + provenance + + A statement of any changes in ownership and custody + of the resource since its creation that are + significant for its authenticity, integrity and + interpretation. + + The statement may include a description of any + changes successive custodians made to the resource. + + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2004-09-20 + http://dublincore.org/usage/decisions/#Decision-2004-02 + http://dublincore.org/usage/terms/history/#provenance-001 + + + + instructionalMethod-002 + instructionalMethod + http://purl.org/dc/terms/instructionalMethod + http://purl.org/dc/terms/ + + A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support. + Instructional Method will typically include ways of presenting + instructional materials or conducting instructional activities, + patterns of learner-to-learner and learner-to-instructor interactions, + and mechanisms by which group and individual levels of learning are measured. + Instructional methods include all aspects of the instruction and learning + processes from planning and implementation through evaluation and + feedback. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#instructionalMethod-002 + http://dublincore.org/usage/terms/history/#instructionalMethod-001 + + + + instructionalMethod-001 + instructionalMethod + http://purl.org/dc/terms/instructionalMethod + http://purl.org/dc/terms/ + + A process, used to engender knowledge, attitudes and skills, + that the resource is designed to support. + Instructional Method will typically include ways of presenting + instructional materials or conducting instructional activities, + patterns of learner-to-learner and learner-to-instructor interactions, + and mechanisms by which group and individual levels of learning are measured. + Instructional methods include all aspects of the instruction and learning + processes from planning and implementation through evaluation and + feedback. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-02 + http://dublincore.org/usage/terms/history/#instructionalMethod-001 + http://dublincore.org/usage/terms/history/#instructionalMethod-002 + + + + accrualMethod-002 + accrualMethod + http://purl.org/dc/terms/accrualMethod + http://purl.org/dc/terms/ + + The method by which items are added to a collection. + + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#accrualMethod-002 + http://dublincore.org/usage/terms/history/#accrualMethod-001 + + + + accrualMethod-001 + accrualMethod + http://purl.org/dc/terms/accrualMethod + http://purl.org/dc/terms/ + + The method by which items are added to a collection. + Recommended best practice is to use a value from a controlled + vocabulary. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-03 + http://dublincore.org/usage/terms/history/#accrualMethod-001 + + + + accrualPeriodicity-002 + accrualPeriodicity + http://purl.org/dc/terms/accrualPeriodicity + http://purl.org/dc/terms/ + + The frequency with which items are added to a collection. + + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#accrualPeriodicity-002 + http://dublincore.org/usage/terms/history/#accrualPeriodicity-001 + + + + accrualPeriodicity-001 + accrualPeriodicity + http://purl.org/dc/terms/accrualPeriodicity + http://purl.org/dc/terms/ + + The frequency with which items are added to a collection. + Recommended best practice is to use a value from a + controlled vocabulary. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-03 + http://dublincore.org/usage/terms/history/#accrualPeriodicity-001 + http://dublincore.org/usage/terms/history/#accrualPeriodicity-002 + + + + accrualPolicy-002 + accrualPolicy + http://purl.org/dc/terms/accrualPolicy + http://purl.org/dc/terms/ + + The policy governing the addition of items to a collection. + + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + 2007-08-15 + http://dublincore.org/usage/decisions/#Decision-2007-YY + http://dublincore.org/usage/terms/history/#accrualPolicy-002 + http://dublincore.org/usage/terms/history/#accrualPolicy-001 + + + + accrualPolicy-001 + accrualPolicy + http://purl.org/dc/terms/accrualPolicy + http://purl.org/dc/terms/ + + The policy governing the addition of items to a collection. + Recommended best practice is to use a value from a controlled + vocabulary. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-03 + http://dublincore.org/usage/terms/history/#accrualPolicy-001 + + + diff --git a/2007-12-07/headers/header-doc-dcterms.xml b/2007-12-07/headers/header-doc-dcterms.xml new file mode 100755 index 0000000..b7ceafe --- /dev/null +++ b/2007-12-07/headers/header-doc-dcterms.xml @@ -0,0 +1,19 @@ + + +

+ DCMI Metadata Terms + mailto:dc-usage@jiscmail.ac.uk + + http://dublincore.org/documents/2008/01/14/dcmi-terms/ + 2008-01-14 + + http://dublincore.org/documents/dcmi-terms/ + http://dublincore.org/documents/2006/12/18/dcmi-terms/ + + http://dublincore.org/resources/translations/ + This is a DCMI Recommendation. + + This document is an up-to-date specification of all metadata terms maintained by the Dublin Core Metadata Initiative, including elements, element refinements, encoding schemes, and vocabulary terms (the DCMI Type Vocabulary). + +

+ diff --git a/2007-12-07/headers/header-doc-dctype.xml b/2007-12-07/headers/header-doc-dctype.xml new file mode 100755 index 0000000..678cdeb --- /dev/null +++ b/2007-12-07/headers/header-doc-dctype.xml @@ -0,0 +1,18 @@ + + +

+ DCMI Type Vocabulary + mailto:dc-usage@jiscmail.ac.uk + + http://dublincore.org/documents/2008/01/14/dcmi-type-vocabulary/ + 2008-01-14 + + http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/documents/2006/08/28/dcmi-type-vocabulary/ + Not applicable + http://dublincore.org/resources/translations/ + This is a DCMI Recommendation. + + The DCMI Type Vocabulary provides a general, cross-domain list of approved terms that may be used as values for the Resource Type element to identify the genre of a resource. The terms documented here are also included in the more comprehensive document "DCMI Metadata Terms" at http://dublincore.org/documents/dcmi-terms/. + +

diff --git a/2007-12-07/headers/header-doc-history.xml b/2007-12-07/headers/header-doc-history.xml new file mode 100755 index 0000000..177e380 --- /dev/null +++ b/2007-12-07/headers/header-doc-history.xml @@ -0,0 +1,18 @@ + + +

+ DCMI Metadata Terms: A complete historical record + mailto:dc-usage@jiscmail.ac.uk + + http://dublincore.org/usage/terms/history/2008/01/14/ + 2008-01-14 + + http://dublincore.org/usage/terms/history/ + http://dublincore.org/usage/terms/history/2006/12/18/ + Not applicable + http://dublincore.org/resources/translations/ + This is a DCMI Recommendation. + + This document is a consolidated, historically complete, and updated representation of all Elements, Element Refinements, Encoding Schemes, and Vocabulary Terms in DCMI-maintained namespaces in all of their historical versions both current and superseded. While this document may be useful for tracking changes in the status and attributes of terms over time, most users will need just "the latest" information, which is held in the document "DCMI Metadata Terms" at http://dublincore.org/usage/documents/dcmi-terms/. + +

diff --git a/2007-12-07/headers/header-rdf-dcam.xml b/2007-12-07/headers/header-rdf-dcam.xml new file mode 100755 index 0000000..3be81fa --- /dev/null +++ b/2007-12-07/headers/header-rdf-dcam.xml @@ -0,0 +1,7 @@ + + +

+ DCMI Namespace for metadata terms related to the DCMI Abstract Model + The Dublin Core Metadata Initiative + 2008-01-14 +

diff --git a/2007-12-07/headers/header-rdf-dcelements.xml b/2007-12-07/headers/header-rdf-dcelements.xml new file mode 100755 index 0000000..57f535c --- /dev/null +++ b/2007-12-07/headers/header-rdf-dcelements.xml @@ -0,0 +1,7 @@ + + +

+ DCMI Namespace for the Dublin Core Metadata Element Set, Version 1.1 + The Dublin Core Metadata Initiative + 2008-01-14 +

diff --git a/2007-12-07/headers/header-rdf-dcterms.xml b/2007-12-07/headers/header-rdf-dcterms.xml new file mode 100755 index 0000000..b0bb898 --- /dev/null +++ b/2007-12-07/headers/header-rdf-dcterms.xml @@ -0,0 +1,7 @@ + + +

+ DCMI Namespace for metadata terms in the http://purl.org/dc/terms/ namespace + The Dublin Core Metadata Initiative + 2008-01-14 +

diff --git a/2007-12-07/headers/header-rdf-dctype.xml b/2007-12-07/headers/header-rdf-dctype.xml new file mode 100755 index 0000000..2be2b92 --- /dev/null +++ b/2007-12-07/headers/header-rdf-dctype.xml @@ -0,0 +1,7 @@ + + +

+ DCMI Namespace for metadata terms of the DCMI Type Vocabulary + The Dublin Core Metadata Initiative + 2008-01-14 +

diff --git a/2007-12-07/headers/intro.dcmi-terms.xsl b/2007-12-07/headers/intro.dcmi-terms.xsl new file mode 100755 index 0000000..d90e5e0 --- /dev/null +++ b/2007-12-07/headers/intro.dcmi-terms.xsl @@ -0,0 +1,211 @@ + + + + + + +

+This document is an up-to-date, authoritative specification +of all metadata terms maintained by the Dublin Core Metadata +Initiative -- elements, element refinements, encoding schemes, +and vocabulary terms (the DCMI Type Vocabulary). Links to +other relevant documentation may be found on the "Overview +of Documentation for DCMI Metadata Terms" [OVERVIEW]. + +

+Legacy documents covering subsets of this document are +in the public domain, including the IETF +RFC 2413 [RFC2413], the CEN Workshop Agreement CWA 13874 +[CWA13874], NISO Standard Z39.85-2001 [Z3985], and a variety +of national standards that include some or all of the Dublin +Core Metadata Set. + +

+Each term is specified with the following minimal set of attributes: +

+ + + + + + + + +
+Name: + +The unique token assigned to the term. +
+URI: + +The Uniform Resource Identifier used to uniquely identify a term. +
+Label: + +The human-readable label assigned to the term. +
+Definition: + +A statement that represents the concept and essential nature of the term. +
+Type of Term: + +The type of term, such as Element or Encoding Scheme, as described in the DCMI Grammatical Principles. +
+Status: + +Status assigned to term by the DCMI Usage Board, as described in the DCMI Usage Board Process. +
+Date issued: + +Date on which a term was first declared. +
+ +

+Where applicable, the following attributes provide additional information about a term: +

+ + + + + + + + +
+Comment: + +Additional information about the term or its application. +
+See: + +A link to authoritative documentation. +
+References: + +A citation or URL of a resource referenced in the Definition or Comment. +
+Refines: + +A reference to a term refined by an Element Refinement. +
+Qualifies: + +A reference to a term qualified by an Encoding Scheme. +
+Broader Than: + +A reference from a more general to a more specific Vocabulary Term. +
+Narrower Than: + +A reference from a more specific to a more general Vocabulary Term. +
+ +

+Anchors have been embedded in this document so +that users may cite a particular entry with the form +"http://dublincore.org/documents/dcmi-terms/#term-name" +(e.g., "http://dublincore.org/documents/dcmi-terms/#title"). +While this form of citation is supported for documentary +convenience, note that the URI assigned to each term in +accordance with the DCMI Namespace Policy serves as its unique +identifier (e.g., "http://purl.org/dc/elements/1.1/title") +[NAMESPACE]. + +

+Readers desiring further information about the change history +or Usage Board decisions that support these terms should +consult the document "DCMI Metadata Terms -- A Complete +Historical Record" [HISTORY]. + +

+This documentation is maintained by the DCMI Usage +Board. Although DCMI is committed to ensuring a high degree +of stability of the specifications it maintains, changes may +occur as a result of the work of the Usage Board. The policies +and processes governing the identification and maintenance +of metadata terms are described in "DCMI Namespace Policy" +[NAMESPACE], "DCMI Grammatical Principles" [PRINCIPLES], +and "DCMI Usage Board Administrative Processes" [PROCESS]. +Usage Board decisions with respect to DCMI metadata terms +are summarized on the Web page "DCMI Usage Board Decisions" +[DECISIONS]. + +Three attributes of terms -- Label, Definition, and Comment +-- have natural-language values which may be translated into +Japanese, Norwegian, or other languages. Although there is +currently no mechanism in place to validate or certify such +translations in an official sense, DCMI maintains a Web page +with pointers to known translations of semantic specifications +and related DCMI documents [TRANSLATIONS] + +

+

References

+ + + + + + + + + + + + + + + + + + + + + + +
+ [RFC2413] + +http://www.ietf.org/rfc/rfc2413.txt +
+ [Z3985] + +http://www.niso.org/standards/resources/Z39-85.pdf +
+ [CWA13874] + +CEN Workshop Agreement CWA 13874. March 2000 (no longer available). +
+ [NAMESPACE] + +http://dublincore.org/documents/dcmi-namespace/ +
+ [HISTORY] + +http://dublincore.org/usage/terms/history/ +
+ [OVERVIEW] + +http://dublincore.org/usage/documents/overview/ +
+ [PRINCIPLES] + +http://dublincore.org/usage/documents/principles/ +
+ [PROCESS] + +http://dublincore.org/usage/documents/process/ +
+ [DECISIONS] + +http://dublincore.org/usage/decisions/ +
+ [TRANSLATIONS] + +http://dublincore.org/resources/translations/ +
+ +
+
diff --git a/2007-12-07/headers/intro.history.xsl b/2007-12-07/headers/intro.history.xsl new file mode 100755 index 0000000..ef163de --- /dev/null +++ b/2007-12-07/headers/intro.history.xsl @@ -0,0 +1,86 @@ + + + + + + +

Introduction

+ +

This document is an authoritative specification of +all metadata terms maintained by the Dublin Core Metadata +Initiative -- elements, element refinements, encoding +schemes, and vocabulary terms (the DCMI Type Vocabulary) -- +in all of their historical versions. + +

Most users will not need the historical detail presented +here and should instead consult the document "DCMI Metadata +Terms", which presents only the most current information on +terms [TERMS]. Links to other relevant documentation may +be found on the "Overview of Documentation for DCMI Metadata +Terms" [OVERVIEW]. + +

In addition to the attributes used to describe terms +in the document "DCMI Metadata Terms" [TERMS], this document +includes additional information related to the versioning +history of individual terms: + +

+ + + + + + + + + + + + +
+Namespace: + +The URI of the namespace within which the term is defined. +
+Date modified: + +Date on which a term declaration was subsequently modified. +
+Decision: + +A link to the Usage Board decision describing the creation or modification of a term declaration. +
+Version: + +An historical version of a term declaration. +
+Replaces: + +A reference to the immediately precedent historical version of a term declaration. +
+Is Replaced By: + +An identifier for the historical version of a term declaration by which this historical version is superseded. +
+ +

+

References

+ + + + + + +
+ [TERMS] + +http://dublincore.org/documents/dcmi-terms/ +
+ [OVERVIEW] + +http://dublincore.org/usage/documents/overview/ +
+ +
+
diff --git a/2007-12-07/xmldata/dcam.xml b/2007-12-07/xmldata/dcam.xml new file mode 100755 index 0000000..dcdf9ff --- /dev/null +++ b/2007-12-07/xmldata/dcam.xml @@ -0,0 +1,35 @@ + + + + + + memberOf-001 + memberOf + http://purl.org/dc/dcam/memberOf + http://purl.org/dc/dcam/ + + A relationship between a resource and a vocabulary encoding scheme which indicates that the resource is a member of a set. + http://dublincore.org/documents/2007/06/04/abstract-model/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#memberOf-001 + + + + VocabularyEncodingScheme-001 + VocabularyEncodingScheme + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://purl.org/dc/dcam/ + + An enumerated set of resources. + http://dublincore.org/documents/2007/06/04/abstract-model/ + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#VocabularyEncodingScheme-001 + + + diff --git a/2007-12-07/xmldata/dcelements.xml b/2007-12-07/xmldata/dcelements.xml new file mode 100755 index 0000000..933f260 --- /dev/null +++ b/2007-12-07/xmldata/dcelements.xml @@ -0,0 +1,1909 @@ + + + + + + title-006 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + title + + A name given to the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#title-006 + http://dublincore.org/usage/terms/history/#title-005 + + + + title-005 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + title + + A name given to the resource. + Typically, a Title will be a name by which + the resource is formally known. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#title-005 + http://dublincore.org/usage/terms/history/#title-004 + http://dublincore.org/usage/terms/history/#title-006 + + + + title-004 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + title + + A name given to the resource. + Typically, a Title will be a name by which the resource is + formally known. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#title-004 + http://dublincore.org/usage/terms/history/#title-003 + http://dublincore.org/usage/terms/history/#title-005 + + + + title-003 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + Title + + A name given to the resource. + Typically, a Title will be a name by which the resource is + formally known. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#title-003 + http://dublincore.org/usage/terms/history/#title-002 + http://dublincore.org/usage/terms/history/#title-004 + + + + title-002 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + Title + + A name given to the resource. + Typically, a Title will be a name by which the resource is + formally known. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#title-002 + http://dublincore.org/usage/terms/history/#title-003 + + + + title-001 + http://purl.org/dc/elements/1.0/title + http://purl.org/dc/elements/1.0/ + Title + + The name given to the resource, usually by the Creator or + Publisher. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#title-001 + n.a. + + + + creator-006 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + creator + + An entity primarily responsible for making the resource. + Examples of a Creator include a person, an organization, or a service. Typically, the name of a Creator should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#creator-006 + http://dublincore.org/usage/terms/history/#creator-005 + + + + creator-005 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + creator + + An entity primarily responsible for making + the resource. + Examples of a Creator include a person, an + organization, or a service. Typically, the name + of a Creator should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#creator-005 + http://dublincore.org/usage/terms/history/#creator-004 + http://dublincore.org/usage/terms/history/#creator-006 + + + + creator-004 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + creator + + An entity primarily responsible for making the content + of the resource. + Examples of a Creator include a person, an organisation, + or a service. Typically, the name of a Creator should + be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#creator-004 + http://dublincore.org/usage/terms/history/#creator-003 + http://dublincore.org/usage/terms/history/#creator-005 + + + + creator-003 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + Creator + + An entity primarily responsible for making the content + of the resource. + Examples of a Creator include a person, an organisation, + or a service. Typically, the name of a Creator should + be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#creator-003 + http://dublincore.org/usage/terms/history/#creator-002 + http://dublincore.org/usage/terms/history/#creator-004 + + + + creator-002 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + Creator + + An entity primarily responsible for making the content of + the resource. + Examples of a Creator include a person, an organisation, + or a service. Typically, the name of a Creator should be + used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#creator-002 + http://dublincore.org/usage/terms/history/#creator-003 + + + + creator-001 + http://purl.org/dc/elements/1.0/creator + http://purl.org/dc/elements/1.0/ + Creator + + The person or organization primarily responsible for + creating the intellectual content of the resource. For + example, authors in the case of written documents, + artists, photographers, or illustrators in the case of + visual resources. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#creator-001 + n.a. + + + + subject-006 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + subject + + The topic of the resource. + Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary. To describe the spatial or temporal topic of the resource, use the Coverage element. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#subject-006 + http://dublincore.org/usage/terms/history/#subject-005 + + + + subject-005 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + subject + + The topic of the resource. + Typically, the topic will be represented using + keywords, key phrases, or classification codes. + Recommended best practice is to use a controlled + vocabulary. To describe the spatial or temporal + topic of the resource, use the Coverage element. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#subject-005 + http://dublincore.org/usage/terms/history/#subject-004 + http://dublincore.org/usage/terms/history/#subject-006 + + + + subject-004 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + subject + + The topic of the content of the resource. + Typically, a Subject will be expressed as keywords, + key phrases or classification codes that describe a topic + of the resource. Recommended best practice is to select + a value from a controlled vocabulary or formal + classification scheme. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#subject-004 + http://dublincore.org/usage/terms/history/#subject-003 + http://dublincore.org/usage/terms/history/#subject-005 + + + + subject-003 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + Subject + + The topic of the content of the resource. + Typically, a Subject will be expressed as keywords, + key phrases or classification codes that describe a topic + of the resource. Recommended best practice is to select + a value from a controlled vocabulary or formal + classification scheme. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#subject-003 + http://dublincore.org/usage/terms/history/#subject-002 + http://dublincore.org/usage/terms/history/#subject-004 + + + + subject-002 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + Subject + + The topic of the content of the resource. + Typically, a Subject will be expressed as keywords, + key phrases or classification codes that describe a topic + of the resource. Recommended best practice is to select + a value from a controlled vocabulary or formal + classification scheme. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#subject-002 + http://dublincore.org/usage/terms/history/#subject-003 + + + + subject-001 + http://purl.org/dc/elements/1.0/subject + http://purl.org/dc/elements/1.0/ + Subject + + The topic of the resource. Typically, subject will be + expressed as keywords or phrases that describe the subject + or content of the resource. The use of controlled + vocabularies and formal classification schemas is + encouraged. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#subject-001 + n.a. + + + + description-006 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + description + + An account of the resource. + Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#description-006 + http://dublincore.org/usage/terms/history/#description-005 + + + + description-005 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + description + + An account of the resource. + Description may include but is not limited to: + an abstract, a table of contents, a graphical + representation, or a free-text account of + the resource. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#description-005 + http://dublincore.org/usage/terms/history/#description-004 + http://dublincore.org/usage/terms/history/#description-006 + + + + description-004 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + description + + An account of the content of the resource. + Description may include but is not limited to: an abstract, + table of contents, reference to a graphical representation + of content or a free-text account of the content. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#description-004 + http://dublincore.org/usage/terms/history/#description-003 + http://dublincore.org/usage/terms/history/#description-005 + + + + description-003 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + Description + + An account of the content of the resource. + Description may include but is not limited to: an abstract, + table of contents, reference to a graphical representation + of content or a free-text account of the content. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#description-003 + http://dublincore.org/usage/terms/history/#description-002 + http://dublincore.org/usage/terms/history/#description-004 + + + + description-002 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + Description + + An account of the content of the resource. + Description may include but is not limited to: an abstract, + table of contents, reference to a graphical representation + of content or a free-text account of the content. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#description-002 + http://dublincore.org/usage/terms/history/#description-003 + + + + description-001 + http://purl.org/dc/elements/1.0/description + http://purl.org/dc/elements/1.0/ + Description + + A textual description of the content of the resource, + including abstracts in the case of document-like objects or + content descriptions in the case of visual resources. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#description-001 + n.a. + + + + publisher-006 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + publisher + + An entity responsible for making the resource available. + Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#publisher-006 + http://dublincore.org/usage/terms/history/#publisher-005 + + + + publisher-005 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + publisher + + An entity responsible for making the resource + available. + Examples of a Publisher include a person, an + organization, or a service. Typically, the name of + a Publisher should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#publisher-005 + http://dublincore.org/usage/terms/history/#publisher-004 + http://dublincore.org/usage/terms/history/#publisher-006 + + + + publisher-004 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + publisher + + An entity responsible for making the resource available + Examples of a Publisher include a person, an organisation, + or a service. + Typically, the name of a Publisher should be used to + indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#publisher-004 + http://dublincore.org/usage/terms/history/#publisher-003 + http://dublincore.org/usage/terms/history/#publisher-005 + + + + publisher-003 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + Publisher + + An entity responsible for making the resource available + Examples of a Publisher include a person, an organisation, + or a service. + Typically, the name of a Publisher should be used to + indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#publisher-003 + http://dublincore.org/usage/terms/history/#publisher-002 + http://dublincore.org/usage/terms/history/#publisher-004 + + + + publisher-002 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + Publisher + + An entity responsible for making the resource available. + Examples of a Publisher include a person, an organisation, + or a service. + Typically, the name of a Publisher should be used to + indicate the entity. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#publisher-002 + http://dublincore.org/usage/terms/history/#publisher-003 + + + + publisher-001 + http://purl.org/dc/elements/1.0/publisher + http://purl.org/dc/elements/1.0/ + Publisher + + The entity responsible for making the resource available + in its present form, such as a publishing house, a + university department, or a corporate entity. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#publisher-001 + n.a. + + + + contributor-006 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + contributor + + An entity responsible for making contributions to the resource. + Examples of a Contributor include a person, an organization, or a service. Typically, the name of a Contributor should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#contributor-006 + http://dublincore.org/usage/terms/history/#contributor-005 + + + + contributor-005 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + contributor + + An entity responsible for making + contributions to the resource. + Examples of a Contributor include a person, + an organization, or a service. Typically, the + name of a Contributor should be used to indicate + the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#contributor-005 + http://dublincore.org/usage/terms/history/#contributor-004 + http://dublincore.org/usage/terms/history/#contributor-006 + + + + contributor-004 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + contributor + + An entity responsible for making contributions to the + content of the resource. + Examples of a Contributor include a person, an + organisation, or a service. Typically, the name of a + Contributor should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#contributor-004 + http://dublincore.org/usage/terms/history/#contributor-003 + http://dublincore.org/usage/terms/history/#contributor-005 + + + + contributor-003 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + Contributor + + An entity responsible for making contributions to the + content of the resource. + Examples of a Contributor include a person, an + organisation, or a service. Typically, the name of a + Contributor should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#contributor-003 + http://dublincore.org/usage/terms/history/#contributor-002 + http://dublincore.org/usage/terms/history/#contributor-004 + + + + contributor-002 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + Contributor + + An entity responsible for making contributions to the + content of the resource. + Examples of a Contributor include a person, an + organisation, or a service. Typically, the name of a + Contributor should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#contributor-002 + http://dublincore.org/usage/terms/history/#contributor-003 + + + + contributor-001 + http://purl.org/dc/elements/1.0/contributor + http://purl.org/dc/elements/1.0/ + Contributor + + A person or organization not specified in a Creator + element who has made significant intellectual + contributions to the resource but whose contribution + is secondary to any person or organization specified + in a Creator element (for example, editor, transcriber, + and illustrator). + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#contributor-001 + n.a. + + + + date-006 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + date + + A point or period of time associated with an event in the lifecycle of the resource. + Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#date-006 + http://dublincore.org/usage/terms/history/#date-005 + + + + date-005 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + date + + A point or period of time associated with an + event in the lifecycle of the resource. + Date may be used to express temporal information + at any level of granularity. Recommended best + practice is to use an encoding scheme, such as + the W3CDTF profile of ISO 8601 [W3CDTF]. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#date-005 + http://dublincore.org/usage/terms/history/#date-004 + http://dublincore.org/usage/terms/history/#date-006 + + + + date-004 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + date + + A date associated with an event in the life cycle of the + resource. + Typically, Date will be associated with the creation or + availability of the resource. Recommended best practice + for encoding the date value is defined in a profile of + ISO 8601 [W3CDTF] and follows the YYYY-MM-DD format. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#date-004 + http://dublincore.org/usage/terms/history/#date-003 + http://dublincore.org/usage/terms/history/#date-005 + + + + date-003 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + Date + + A date associated with an event in the life cycle of the + resource. + Typically, Date will be associated with the creation or + availability of the resource. Recommended best practice + for encoding the date value is defined in a profile of + ISO 8601 [W3CDTF] and follows the YYYY-MM-DD format. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#date-003 + http://dublincore.org/usage/terms/history/#date-002 + http://dublincore.org/usage/terms/history/#date-004 + + + + date-002 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + Date + + A date associated with an event in the life cycle of the + resource. + Typically, Date will be associated with the creation or + availability of the resource. Recommended best practice + for encoding the date value is defined in a profile of + ISO 8601 [W3CDTF] and follows the YYYY-MM-DD format. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#date-002 + http://dublincore.org/usage/terms/history/#date-003 + + + + date-001 + http://purl.org/dc/elements/1.0/date + http://purl.org/dc/elements/1.0/ + Date + + A date associated with the creation or availability of + the resource. Recommended best practice is defined in + a profile of ISO 8601 [W3CDTF] that includes (among + others) dates of the forms YYYY and YYYY-MM-DD. In this + scheme, the date 1994-11-05 corresponds to November 5, + 1994. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#date-001 + n.a. + + + + type-006 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + type + + The nature or genre of the resource. + Recommended best practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [DCMITYPE]. To describe the file format, physical medium, or dimensions of the resource, use the Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#type-006 + http://dublincore.org/usage/terms/history/#type-005 + + + + type-005 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + type + + The nature or genre of the resource. + Recommended best practice is to use a controlled + vocabulary such as the DCMI Type Vocabulary + [DCMITYPE]. To describe the file format, physical + medium, or dimensions of the resource, use the + Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#type-005 + http://dublincore.org/usage/terms/history/#type-004 + http://dublincore.org/usage/terms/history/#type-006 + + + + type-004 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + type + + The nature or genre of the content of the resource. + Type includes terms describing general categories, functions, + genres, or aggregation levels for content. Recommended best + practice is to select a value from a controlled vocabulary + (for example, the DCMI Type Vocabulary [DCMITYPE]). To + describe the physical or digital manifestation of the + resource, use the Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#type-004 + http://dublincore.org/usage/terms/history/#type-003 + http://dublincore.org/usage/terms/history/#type-005 + + + + type-003 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + Type + + The nature or genre of the content of the resource. + Type includes terms describing general categories, functions, + genres, or aggregation levels for content. Recommended best + practice is to select a value from a controlled vocabulary + (for example, the DCMI Type Vocabulary [DCMITYPE]). To + describe the physical or digital manifestation of the + resource, use the Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#type-003 + http://dublincore.org/usage/terms/history/#type-002 + http://dublincore.org/usage/terms/history/#type-004 + + + + type-002 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + Type + + The nature or genre of the content of the resource. + Type includes terms describing general categories, functions, + genres, or aggregation levels for content. Recommended best + practice is to select a value from a controlled vocabulary + (for example, the working draft list of Dublin Core Types + [DCT1]). To describe the physical or digital manifestation + of the resource, use the FORMAT element. + [DCT1] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#type-002 + http://dublincore.org/usage/terms/history/#type-003 + + + + type-001 + http://purl.org/dc/elements/1.0/type + http://purl.org/dc/elements/1.0/ + Type + + The category of the resource, such as home page, novel, + poem, working paper, technical report, essay, dictionary. + For the sake of interoperability, Type should be selected + from an enumerated list that is under development in the + workshop series. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#type-001 + n.a. + + + + format-007 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + format + + The file format, physical medium, or dimensions of the resource. + Examples of dimensions include size and duration. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types [MIME]. + [MIME] http://www.iana.org/assignments/media-types/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#format-007 + http://dublincore.org/usage/terms/history/#format-006 + + + + format-006 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + format + + The file format, physical medium, or dimensions + of the resource. + Examples of dimensions include + size and duration. Recommended best practice is + to use a controlled vocabulary such as the list + of Internet Media Types [MIME]. + [MIME] http://www.iana.org/assignments/media-types/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#format-006 + http://dublincore.org/usage/terms/history/#format-005 + http://dublincore.org/usage/terms/history/#format-007 + + + + format-005 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + format + + The physical or digital manifestation of the resource. + Typically, Format may include the media-type or dimensions of + the resource. Format may be used to determine the software, + hardware or other equipment needed to display or operate the + resource. Examples of dimensions include size and duration. + Recommended best practice is to select a value from a + controlled vocabulary (for example, the list of Internet Media + Types [MIME] defining computer media formats). + [MIME] http://www.iana.org/assignments/media-types/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2004-12-17 + http://dublincore.org/usage/decisions/#Decision-2004-03 + http://dublincore.org/usage/terms/history/#format-005 + http://dublincore.org/usage/terms/history/#format-004 + http://dublincore.org/usage/terms/history/#format-006 + + + + format-004 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + format + + The physical or digital manifestation of the resource. + Typically, Format may include the media-type or dimensions of + the resource. Format may be used to determine the software, + hardware or other equipment needed to display or operate the + resource. Examples of dimensions include size and duration. + Recommended best practice is to select a value from a + controlled vocabulary (for example, the list of Internet Media + Types [MIME] defining computer media formats). + [MIME] http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#format-004 + http://dublincore.org/usage/terms/history/#format-003 + http://dublincore.org/usage/terms/history/#format-005 + + + + format-003 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + Format + + The physical or digital manifestation of the resource. + Typically, Format may include the media-type or dimensions of + the resource. Format may be used to determine the software, + hardware or other equipment needed to display or operate the + resource. Examples of dimensions include size and duration. + Recommended best practice is to select a value from a + controlled vocabulary (for example, the list of Internet Media + Types [MIME] defining computer media formats). + [MIME] http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#format-003 + http://dublincore.org/usage/terms/history/#format-002 + http://dublincore.org/usage/terms/history/#format-004 + + + + format-002 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + Format + + The physical or digital manifestation of the resource. + Typically, Format may include the media-type or dimensions of + the resource. Format may be used to determine the software, + hardware or other equipment needed to display or operate the + resource. Examples of dimensions include size and duration. + Recommended best practice is to select a value from a + controlled vocabulary (for example, the list of Internet Media + Types [MIME] defining computer media formats). + [MIME] http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#format-002 + http://dublincore.org/usage/terms/history/#format-003 + + + + format-001 + http://purl.org/dc/elements/1.0/format + http://purl.org/dc/elements/1.0/ + Format + + The data format and, optionally, dimensions (e.g., size, + duration) of the resource. The format is used to identify + the software and possibly hardware that might be needed to + display or operate the resource. For the sake of + interoperability, the format should be selected from an + enumerated list that is currently under development in the + workshop series. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#format-001 + n.a. + + + + identifier-006 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#identifier-006 + http://dublincore.org/usage/terms/history/#identifier-005 + + + + identifier-005 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + identifier + + An unambiguous reference to the resource within + a given context. + Recommended best practice is to identify the + resource by means of a string conforming + to a formal identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#identifier-005 + http://dublincore.org/usage/terms/history/#identifier-004 + http://dublincore.org/usage/terms/history/#identifier-006 + + + + identifier-004 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means + of a string or number conforming to a formal identification + system. + Example formal identification systems include the Uniform + Resource Identifier (URI) (including the Uniform Resource + Locator (URL)), the Digital Object Identifier (DOI) and the + International Standard Book Number (ISBN). + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#identifier-004 + http://dublincore.org/usage/terms/history/#identifier-003 + http://dublincore.org/usage/terms/history/#identifier-005 + + + + identifier-003 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + Identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means + of a string or number conforming to a formal identification + system. + Example formal identification systems include the Uniform + Resource Identifier (URI) (including the Uniform Resource + Locator (URL)), the Digital Object Identifier (DOI) and the + International Standard Book Number (ISBN). + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#identifier-003 + http://dublincore.org/usage/terms/history/#identifier-002 + http://dublincore.org/usage/terms/history/#identifier-004 + + + + identifier-002 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + Identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means + of a string or number conforming to a formal identification + system. + Example formal identification systems include the Uniform + Resource Identifier (URI) (including the Uniform Resource + Locator (URL)), the Digital Object Identifier (DOI) and the + International Standard Book Number (ISBN). + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#identifier-002 + http://dublincore.org/usage/terms/history/#identifier-003 + + + + identifier-001 + http://purl.org/dc/elements/1.0/identifier + http://purl.org/dc/elements/1.0/ + Identifier + + A string or number used to uniquely identify the resource. + Examples for networked resources include URLs and URNs (when + implemented). Other globally-unique identifiers, such as + International Standard Book Numbers (ISBN) or other formal + names would also be candidates for this element. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#identifier-001 + n.a. + + + + source-006 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + source + + A related resource from which the described resource is derived. + The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#source-006 + http://dublincore.org/usage/terms/history/#source-005 + + + + source-005 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + source + + The resource from which the described + resource is derived. + The described resource may be derived from the + related resource in whole or in part. Recommended + best practice is to identify the related resource + by means of a string conforming to a formal + identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#source-005 + http://dublincore.org/usage/terms/history/#source-004 + http://dublincore.org/usage/terms/history/#source-006 + + + + source-004 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + source + + A reference to a resource from which the present resource + is derived. + The present resource may be derived from the Source resource + in whole or in part. Recommended best practice is to reference + the resource by means of a string or number conforming to a + formal identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#source-004 + http://dublincore.org/usage/terms/history/#source-003 + http://dublincore.org/usage/terms/history/#source-005 + + + + source-003 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + Source + + A reference to a resource from which the present resource + is derived. + The present resource may be derived from the Source resource + in whole or in part. Recommended best practice is to reference + the resource by means of a string or number conforming to a + formal identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#source-003 + http://dublincore.org/usage/terms/history/#source-002 + http://dublincore.org/usage/terms/history/#source-004 + + + + source-002 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + Source + + A reference to a resource from which the present resource + is derived. + The present resource may be derived from the Source resource + in whole or in part. Recommended best practice is to reference + the resource by means of a string or number conforming to a + formal identification system. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#source-002 + http://dublincore.org/usage/terms/history/#source-003 + + + + source-001 + http://purl.org/dc/elements/1.0/source + http://purl.org/dc/elements/1.0/ + Source + + Information about a second resource from which the present + resource is derived. While it is generally recommended that + elements contain information about the present resource + only, this element may contain metadata for the second + resource when it is considered important for discovery of + the present resource. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#source-001 + n.a. + + + + language-007 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + language + + A language of the resource. + Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646]. + [RFC4646] http://www.ietf.org/rfc/rfc4646.txt + http://www.ietf.org/rfc/rfc4646.txt + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#language-007 + http://dublincore.org/usage/terms/history/#language-006 + + + + language-006 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + language + + A language of the resource. + Recommended best practice is to use a controlled + vocabulary such as RFC 3066 [RFC3066]. + [RFC3066] http://www.ietf.org/rfc/rfc3066.txt + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#language-006 + http://dublincore.org/usage/terms/history/#language-005 + http://dublincore.org/usage/terms/history/#language-007 + + + + language-005 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + language + + A language of the intellectual content of the resource. + Recommended best practice is to use RFC 3066 [RFC3066], + which, in conjunction with ISO 639 [ISO639], defines two- + and three-letter primary language tags with optional + subtags. Examples include "en" or "eng" for English, + "akk" for Akkadian, and "en-GB" for English used in the + United Kingdom. + [RFC3066] http://www.ietf.org/rfc/rfc3066.txt + [ISO639] http://www.loc.gov/standards/iso639-2/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#language-005 + http://dublincore.org/usage/terms/history/#language-004 + http://dublincore.org/usage/terms/history/#language-006 + + + + language-004 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + Language + + A language of the intellectual content of the resource. + Recommended best practice is to use RFC 3066 [RFC3066], + which, in conjunction with ISO 639 [ISO639], defines two- + and three-letter primary language tags with optional + subtags. Examples include "en" or "eng" for English, + "akk" for Akkadian, and "en-GB" for English used in the + United Kingdom. + [RFC3066] http://www.ietf.org/rfc/rfc3066.txt + [ISO639] http://www.loc.gov/standards/iso639-2/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#language-004 + http://dublincore.org/usage/terms/history/#language-003 + http://dublincore.org/usage/terms/history/#language-005 + + + + language-003 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + Language + + A language of the intellectual content of the resource. + Recommended best practice is to use RFC 3066 [RFC3066], + which, in conjunction with ISO 639 [ISO639], defines two- + and three-letter primary language tags with optional + subtags. Examples include "en" or "eng" for English, + "akk" for Akkadian, and "en-GB" for English used in the + United Kingdom. + [RFC3066] http://www.ietf.org/rfc/rfc3066.txt + [ISO639] http://www.loc.gov/standards/iso639-2/ + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 2001-05-21 + http://dublincore.org/usage/decisions/#Decision-2001-04 + http://dublincore.org/usage/terms/history/#language-003 + http://dublincore.org/usage/terms/history/#language-002 + http://dublincore.org/usage/terms/history/#language-004 + + + + language-002 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + Language + + A language of the intellectual content of the resource. + Recommended best practice for the values of the Language + element is defined by RFC 1766 [RFC1766] which includes + a two-letter Language Code (taken from the ISO 639 + standard [ISO639]), followed optionally, by a two-letter + Country Code (taken from the ISO 3166 standard [ISO3166]). + For example, 'en' for English, 'fr' for French, or + 'en-uk' for English used in the United Kingdom. + [RFC1766] http://www.ietf.org/rfc/rfc1766.txt + [ISO639] http://www.loc.gov/standards/iso639-2/ + [ISO3166] http://www.iso.org/iso/en/prods-services/iso3166ma/index.html + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#language-002 + http://dublincore.org/usage/terms/history/#language-003 + + + + language-001 + http://purl.org/dc/elements/1.0/language + http://purl.org/dc/elements/1.0/ + Language + + The language of the intellectual content of the resource. + Recommended best practice is defined in RFC 1766 [RFC1766]. + [RFC1766] http://www.ietf.org/rfc/rfc1766.txt + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#language-001 + n.a. + + + + relation-006 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + relation + + A related resource. + Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#relation-006 + http://dublincore.org/usage/terms/history/#relation-005 + + + + relation-005 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + relation + + A related resource. + Recommended best practice is to identify the + related resource by means of a string conforming + to a formal identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#relation-005 + http://dublincore.org/usage/terms/history/#relation-004 + http://dublincore.org/usage/terms/history/#relation-006 + + + + relation-004 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + relation + + A reference to a related resource. + Recommended best practice is to reference the resource by means + of a string or number conforming to a formal identification + system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#relation-004 + http://dublincore.org/usage/terms/history/#relation-003 + http://dublincore.org/usage/terms/history/#relation-005 + + + + relation-003 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + Relation + + A reference to a related resource. + Recommended best practice is to reference the resource by means + of a string or number conforming to a formal identification + system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#relation-003 + http://dublincore.org/usage/terms/history/#relation-002 + http://dublincore.org/usage/terms/history/#relation-004 + + + + relation-002 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + Relation + + A reference to a related resource. + Recommended best practice is to reference the resource by means + of a string or number conforming to a formal identification + system. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#relation-002 + http://dublincore.org/usage/terms/history/#relation-003 + + + + relation-001 + http://purl.org/dc/elements/1.0/relation + http://purl.org/dc/elements/1.0/ + Relation + + An identifier of a second resource and its relationship to + the present resource. This element is used to express + linkages among related resources. For the sake of + interoperability, relationships should be selected from an + enumerated list that is currently under development in the + workshop series. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#relation-001 + n.a. + + + + coverage-006 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + coverage + + The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. + Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN]. Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#coverage-006 + http://dublincore.org/usage/terms/history/#coverage-005 + + + + coverage-005 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + coverage + + The spatial or temporal topic of the resource, the + spatial applicability of the resource, or the + jurisdiction under which the resource is relevant. + Spatial topic may be a named place or a location + specified by its geographic coordinates. Temporal + period may be a named period, date, or date + range. A jurisdiction may be a named administrative + entity or a geographic place to which the resource + applies. Recommended best practice is to use a + controlled vocabulary such as the Thesaurus of + Geographic Names [TGN]). Where appropriate, named + places or time periods can be used in preference + to numeric identifiers such as sets of coordinates + or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#coverage-005 + http://dublincore.org/usage/terms/history/#coverage-004 + http://dublincore.org/usage/terms/history/#coverage-006 + + + + coverage-004 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + coverage + + The extent or scope of the content of the resource. + Coverage will typically include spatial location (a place name + or geographic coordinates), temporal period (a period label, + date, or date range) or jurisdiction (such as a named + administrative entity). + Recommended best practice is to select a value from a + controlled vocabulary (for example, the Thesaurus of Geographic + Names [TGN]) and that, where appropriate, named places or time + periods be used in preference to numeric identifiers such as + sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#coverage-004 + http://dublincore.org/usage/terms/history/#coverage-003 + http://dublincore.org/usage/terms/history/#coverage-005 + + + + coverage-003 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + Coverage + + The extent or scope of the content of the resource. + Coverage will typically include spatial location (a place name + or geographic coordinates), temporal period (a period label, + date, or date range) or jurisdiction (such as a named + administrative entity). + Recommended best practice is to select a value from a + controlled vocabulary (for example, the Thesaurus of Geographic + Names [TGN]) and that, where appropriate, named places or time + periods be used in preference to numeric identifiers such as + sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#coverage-003 + http://dublincore.org/usage/terms/history/#coverage-002 + http://dublincore.org/usage/terms/history/#coverage-004 + + + + coverage-002 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + Coverage + + The extent or scope of the content of the resource. + Coverage will typically include spatial location (a place name + or geographic coordinates), temporal period (a period label, + date, or date range) or jurisdiction (such as a named + administrative entity). + Recommended best practice is to select a value from a + controlled vocabulary (for example, the Thesaurus of Geographic + Names [TGN]) and that, where appropriate, named places or time + periods be used in preference to numeric identifiers such as + sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#coverage-002 + http://dublincore.org/usage/terms/history/#coverage-003 + + + + coverage-001 + http://purl.org/dc/elements/1.0/coverage + http://purl.org/dc/elements/1.0/ + Coverage + + The spatial and/or temporal characteristics of the + intellectual content of the resource. Spatial coverage + refers to a physical region (e.g., celestial sector) using + place names or coordinates (e.g., longitude and latitude). + Temporal coverage refers to what the resource is about + rather than when it was created or made available (the + latter belonging in the Date element). Temporal coverage is + typically specified using named time periods (e.g., + Neolithic) or the same date/time format [W3CDTF] + as recommended for the Date element. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#coverage-001 + n.a. + + + + rights-006 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + rights + + Information about rights held in and over the resource. + Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#rights-006 + http://dublincore.org/usage/terms/history/#rights-005 + + + + rights-005 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + rights + + Information about rights held in and + over the resource. + Typically, rights information includes + a statement about various property rights + associated with the resource, including + intellectual property rights. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#rights-005 + http://dublincore.org/usage/terms/history/#rights-004 + http://dublincore.org/usage/terms/history/#rights-006 + + + + rights-004 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + rights + + Information about rights held in and over the resource. + Typically, a Rights element will contain a rights + management statement for the resource, or reference + a service providing such information. Rights information + often encompasses Intellectual Property Rights (IPR), + Copyright, and various Property Rights. + If the Rights element is absent, no assumptions can be made + about the status of these and other rights with respect to + the resource. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#rights-004 + http://dublincore.org/usage/terms/history/#rights-003 + http://dublincore.org/usage/terms/history/#rights-005 + + + + rights-003 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + Rights + + Information about rights held in and over the resource. + Typically, a Rights element will contain a rights + management statement for the resource, or reference + a service providing such information. Rights information + often encompasses Intellectual Property Rights (IPR), + Copyright, and various Property Rights. + If the Rights element is absent, no assumptions can be made + about the status of these and other rights with respect to + the resource. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#rights-003 + http://dublincore.org/usage/terms/history/#rights-002 + http://dublincore.org/usage/terms/history/#rights-004 + + + + rights-002 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + Rights + + Information about rights held in and over the resource. + Typically, a Rights element will contain a rights + management statement for the resource, or reference + a service providing such information. Rights information + often encompasses Intellectual Property Rights (IPR), + Copyright, and various Property Rights. + If the Rights element is absent, no assumptions can be made + about the status of these and other rights with respect to + the resource. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#rights-002 + http://dublincore.org/usage/terms/history/#rights-003 + + + + rights-001 + http://purl.org/dc/elements/1.0/rights + http://purl.org/dc/elements/1.0/ + Rights + + A rights management statement, an identifier that links + to a rights management statement, or an identifier that + links to a service providing information about rights + management for the resource. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#rights-001 + n.a. + + + + diff --git a/2007-12-07/xmldata/dcterms-classes.xml b/2007-12-07/xmldata/dcterms-classes.xml new file mode 100755 index 0000000..b8b84d0 --- /dev/null +++ b/2007-12-07/xmldata/dcterms-classes.xml @@ -0,0 +1,329 @@ + + + + + + Agent-001 + http://purl.org/dc/terms/Agent + http://purl.org/dc/terms/ + Agent + + A resource that acts or has the power to act. + Examples of Agent include person, organization, and software agent. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/AgentClass + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Agent-001 + + + + AgentClass-001 + http://purl.org/dc/terms/AgentClass + http://purl.org/dc/terms/ + AgentClass + + A group of agents. + Examples of Agent Class include groups seen as classes, such as students, women, charities, lecturers. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/AgentClass + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#AgentClass-001 + + + + BibliographicResource-001 + http://purl.org/dc/terms/BibliographicResource + http://purl.org/dc/terms/ + BibliographicResource + + A book, article, or other documentary resource. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#BibliographicResource-001 + + + + FileFormat-001 + http://purl.org/dc/terms/FileFormat + http://purl.org/dc/terms/ + FileFormat + + A digital resource format. + Examples include the formats defined by the list of Internet Media Types. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/MediaType + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#FileFormat-001 + + + + Frequency-001 + http://purl.org/dc/terms/Frequency + http://purl.org/dc/terms/ + Frequency + + A rate at which something recurs. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Frequency-001 + + + + Jurisdiction-001 + http://purl.org/dc/terms/Jurisdiction + http://purl.org/dc/terms/ + Jurisdiction + + The extent or range of judicial, law enforcement, or other authority. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/LocationPeriodOrJurisdiction + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Jurisdiction-001 + + + + LicenseDocument-001 + http://purl.org/dc/terms/LicenseDocument + http://purl.org/dc/terms/ + LicenseDocument + + A legal document giving official permission to do something with a Resource. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/RightsStatement + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#LicenseDocument-001 + + + + LinguisticSystem-001 + http://purl.org/dc/terms/LinguisticSystem + http://purl.org/dc/terms/ + LinguisticSystem + + Examples include written, spoken, sign, and computer languages. + A system of signs, symbols, sounds, gestures, or rules used in communication. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#LinguisticSystem-001 + + + + Location-001 + http://purl.org/dc/terms/Location + http://purl.org/dc/terms/ + Location + + A spatial region or named place. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/LocationPeriodOrJurisdiction + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Location-001 + + + + LocationPeriodOrJurisdiction-001 + http://purl.org/dc/terms/LocationPeriodOrJurisdiction + http://purl.org/dc/terms/ + LocationPeriodOrJurisdiction + + A location, period of time, or jurisdiction. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#LocationPeriodOrJurisdiction-001 + + + + MediaType-001 + http://purl.org/dc/terms/MediaType + http://purl.org/dc/terms/ + MediaType + + A file format or physical medium. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/MediaTypeOrExtent + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#MediaType-001 + + + + MediaTypeOrExtent-001 + http://purl.org/dc/terms/MediaTypeOrExtent + http://purl.org/dc/terms/ + MediaTypeOrExtent + + A media type or extent. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#MediaTypeOrExtent-001 + + + + MethodOfInstruction-001 + http://purl.org/dc/terms/MethodOfInstruction + http://purl.org/dc/terms/ + MethodOfInstruction + + A process that is used to engender knowledge, attitudes, and skills. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#MethodOfInstruction-001 + + + + MethodOfAccrual-001 + http://purl.org/dc/terms/MethodOfAccrual + http://purl.org/dc/terms/ + MethodOfAccrual + + A method by which resources are added to a collection. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#MethodOfAccrual-001 + + + + PeriodOfTime-001 + http://purl.org/dc/terms/PeriodOfTime + http://purl.org/dc/terms/ + PeriodOfTime + + An interval of time that is named or defined by its start and end dates. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/LocationPeriodOrJurisdiction + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#PeriodOfTime-001 + + + + PhysicalMedium-001 + http://purl.org/dc/terms/PhysicalMedium + http://purl.org/dc/terms/ + PhysicalMedium + + A physical material or carrier. + Examples include paper, canvas, or DVD. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/MediaType + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#PhysicalMedium-001 + + + + PhysicalResource-001 + http://purl.org/dc/terms/PhysicalResource + http://purl.org/dc/terms/ + PhysicalResource + + A material thing. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#PhysicalResource-001 + + + + Policy-001 + http://purl.org/dc/terms/Policy + http://purl.org/dc/terms/ + Policy + + A plan or course of action by an authority, intended to influence and determine decisions, actions, and other matters. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Policy-001 + + + + ProvenanceStatement-001 + http://purl.org/dc/terms/ProvenanceStatement + http://purl.org/dc/terms/ + ProvenanceStatement + + A statement of any changes in ownership and custody of a resource since its creation that are significant for its authenticity, integrity, and interpretation. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#ProvenanceStatement-001 + + + + RightsStatement-001 + http://purl.org/dc/terms/RightsStatement + http://purl.org/dc/terms/ + RightsStatement + + A statement about the intellectual property rights (IPR) held in or over a Resource, a legal document giving official permission to do something with a resource, or a statement about access rights. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#RightsStatement-001 + + + + SizeOrDuration-001 + http://purl.org/dc/terms/SizeOrDuration + http://purl.org/dc/terms/ + SizeOrDuration + + A dimension or extent, or a time taken to play or execute. + Examples include a number of pages, a specification of length, width, and breadth, or a period in hours, minutes, and seconds. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/MediaTypeOrExtent + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#SizeOrDuration-001 + + + + Standard-001 + http://purl.org/dc/terms/Standard + http://purl.org/dc/terms/ + Standard + + A basis for comparison; a reference point against which other things can be evaluated. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Standard-001 + + + diff --git a/2007-12-07/xmldata/dcterms-properties.xml b/2007-12-07/xmldata/dcterms-properties.xml new file mode 100755 index 0000000..a2e2a55 --- /dev/null +++ b/2007-12-07/xmldata/dcterms-properties.xml @@ -0,0 +1,2226 @@ + + + + + + titleT-001 + http://purl.org/dc/terms/title + http://purl.org/dc/terms/ + title + + A name given to the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/title + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#titleT-001 + In current practice, this term is used primarily with literal values; however, there are important uses with non-literal values as well. As of December 2007, the DCMI Usage Board is leaving this range unspecified pending an investigation of options. + + + + creatorT-001 + http://purl.org/dc/terms/creator + http://purl.org/dc/terms/ + creator + + An entity primarily responsible for making the resource. + Examples of a Creator include a person, an organization, or a service. Typically, the name of a Creator should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/terms/contributor + http://purl.org/dc/terms/Agent + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#creatorT-001 + + + + subjectT-001 + http://purl.org/dc/terms/subject + http://purl.org/dc/terms/ + subject + + The topic of the resource. + Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary. To describe the spatial or temporal topic of the resource, use the Coverage element. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/subject + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#subjectT-001 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + descriptionT-001 + http://purl.org/dc/terms/description + http://purl.org/dc/terms/ + description + + An account of the resource. + Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/description + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#descriptionT-001 + + + + publisherT-001 + http://purl.org/dc/terms/publisher + http://purl.org/dc/terms/ + publisher + + An entity responsible for making the resource available. + Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/terms/Agent + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#publisherT-001 + + + + contributorT-001 + http://purl.org/dc/terms/contributor + http://purl.org/dc/terms/ + contributor + + An entity responsible for making contributions to the resource. + Examples of a Contributor include a person, an organization, or a service. Typically, the name of a Contributor should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/terms/Agent + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#contributorT-001 + + + + dateT-001 + http://purl.org/dc/terms/date + http://purl.org/dc/terms/ + date + + A point or period of time associated with an event in the lifecycle of the resource. + Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/date + http://www.w3.org/2000/01/rdf-schema#Literal + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#dateT-001 + + + + typeT-001 + http://purl.org/dc/terms/type + http://purl.org/dc/terms/ + type + + The nature or genre of the resource. + Recommended best practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [DCMITYPE]. To describe the file format, physical medium, or dimensions of the resource, use the Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/title + http://www.w3.org/2000/01/rdf-schema#Class + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#typeT-001 + + + + formatT-001 + http://purl.org/dc/terms/format + http://purl.org/dc/terms/ + format + + The file format, physical medium, or dimensions of the resource. + Examples of dimensions include size and duration. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types [MIME]. + [MIME] http://www.iana.org/assignments/media-types/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/terms/MediaTypeOrExtent + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#formatT-001 + + + + identifierT-001 + http://purl.org/dc/terms/identifier + http://purl.org/dc/terms/ + identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/identifier + http://www.w3.org/2000/01/rdf-schema#Literal + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#identifierT-001 + + + + sourceT-001 + http://purl.org/dc/terms/source + http://purl.org/dc/terms/ + source + + A related resource from which the described resource is derived. + The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/terms/relation + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#sourceT-001 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + languageT-001 + http://purl.org/dc/terms/language + http://purl.org/dc/terms/ + language + + A language of the resource. + Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646]. + [RFC4646] http://www.ietf.org/rfc/rfc4646.txt + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/terms/LinguisticSystem + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#languageT-001 + + + + relationT-001 + http://purl.org/dc/terms/relation + http://purl.org/dc/terms/ + relation + + A related resource. + Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/relation + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#relationT-001 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + coverageT-001 + http://purl.org/dc/terms/coverage + http://purl.org/dc/terms/ + coverage + + The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. + Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN]. Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/terms/LocationPeriodOrJurisdiction + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#coverageT-001 + + + + rightsT-001 + http://purl.org/dc/terms/rights + http://purl.org/dc/terms/ + rights + + Information about rights held in and over the resource. + Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/terms/RightsStatement + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#rightsT-001 + + + + audience-003 + http://purl.org/dc/terms/audience + http://purl.org/dc/terms/ + audience + + A class of entity for whom the resource is intended or useful. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + http://purl.org/dc/terms/AgentClass + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#audience-003 + http://dublincore.org/usage/terms/history/#audience-002 + + + + audience-002 + http://purl.org/dc/terms/audience + http://purl.org/dc/terms/ + audience + + A class of entity for whom the resource is intended or useful. + A class of entity may be determined by the creator or the + publisher or by a third party. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#audience-002 + http://dublincore.org/usage/terms/history/#audience-001 + http://dublincore.org/usage/terms/history/#audience-003 + + + + audience-001 + http://purl.org/dc/terms/audience + http://purl.org/dc/terms/ + audience + + A class of entity for whom the resource is intended or useful. + A class of entity may be determined by the creator or the + publisher or by a third party. + http://dublincore.org/usage/documents/principles/#element + Domain-Specific + 2001-05-21 + http://dublincore.org/usage/decisions/#Decision-2001-01 + http://dublincore.org/usage/terms/history/#audience-001 + http://dublincore.org/usage/terms/history/#audience-002 + + + + alternative-003 + http://purl.org/dc/terms/alternative + http://purl.org/dc/terms/ + alternative + + An alternative name for the resource. + The distinction between titles and alternative titles is application-specific. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/terms/title + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#alternative-003 + http://dublincore.org/usage/terms/history/#alternative-002 + In current practice, this term is used primarily with literal values; however, there are important uses with non-literal values as well. As of December 2007, the DCMI Usage Board is leaving this range unspecified pending an investigation of options. + + + + alternative-002 + http://purl.org/dc/terms/alternative + http://purl.org/dc/terms/ + alternative + + Any form of the title used as a substitute or alternative + to the formal title of the resource. + This qualifier can include Title abbreviations as well + as translations. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/title + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#alternative-002 + http://dublincore.org/usage/terms/history/#alternative-001 + http://dublincore.org/usage/terms/history/#alternative-003 + + + + alternative-001 + http://purl.org/dc/terms/alternative + http://purl.org/dc/terms/ + alternative + + Any form of the title used as a substitute or alternative + to the formal title of the resource. + This qualifier can include Title abbreviations as well + as translations. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/title + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#alternative-001 + http://dublincore.org/usage/terms/history/#alternative-002 + + + + tableOfContents-003 + http://purl.org/dc/terms/tableOfContents + http://purl.org/dc/terms/ + tableOfContents + + A list of subunits of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/terms/description + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#tableOfContents-003 + http://dublincore.org/usage/terms/history/#tableOfContents-002 + + + + tableOfContents-002 + http://purl.org/dc/terms/tableOfContents + http://purl.org/dc/terms/ + tableOfContents + + A list of subunits of the content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/description + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#tableOfContents-002 + http://dublincore.org/usage/terms/history/#tableOfContents-001 + http://dublincore.org/usage/terms/history/#tableOfContents-003 + + + + tableOfContents-001 + http://purl.org/dc/terms/tableOfContents + http://purl.org/dc/terms/ + tableOfContents + + A list of subunits of the content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/description + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#tableOfContents-001 + http://dublincore.org/usage/terms/history/#tableOfContents-002 + + + + abstract-003 + http://purl.org/dc/terms/abstract + http://purl.org/dc/terms/ + abstract + + A summary of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/terms/description + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#abstract-003 + http://dublincore.org/usage/terms/history/#abstract-002 + + + + abstract-002 + http://purl.org/dc/terms/abstract + http://purl.org/dc/terms/ + abstract + + A summary of the content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/description + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#abstract-002 + http://dublincore.org/usage/terms/history/#abstract-001 + http://dublincore.org/usage/terms/history/#abstract-003 + + + + abstract-001 + http://purl.org/dc/terms/abstract + http://purl.org/dc/terms/ + abstract + + A summary of the content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/description + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#abstract-001 + http://dublincore.org/usage/terms/history/#abstract-002 + + + + created-003 + http://purl.org/dc/terms/created + http://purl.org/dc/terms/ + created + + Date of creation of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#created-003 + http://dublincore.org/usage/terms/history/#created-002 + + + + created-002 + http://purl.org/dc/terms/created + http://purl.org/dc/terms/ + created + + Date of creation of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#created-002 + http://dublincore.org/usage/terms/history/#created-001 + http://dublincore.org/usage/terms/history/#created-003 + + + + created-001 + http://purl.org/dc/terms/created + http://purl.org/dc/terms/ + created + + Date of creation of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#created-001 + http://dublincore.org/usage/terms/history/#created-002 + + + + valid-003 + http://purl.org/dc/terms/valid + http://purl.org/dc/terms/ + valid + + Date (often a range) of validity of a resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#valid-003 + http://dublincore.org/usage/terms/history/#valid-002 + + + + valid-002 + http://purl.org/dc/terms/valid + http://purl.org/dc/terms/ + valid + + Date (often a range) of validity of a resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#valid-002 + http://dublincore.org/usage/terms/history/#valid-001 + http://dublincore.org/usage/terms/history/#valid-003 + + + + valid-001 + http://purl.org/dc/terms/valid + http://purl.org/dc/terms/ + valid + + Date (often a range) of validity of a resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#valid-001 + http://dublincore.org/usage/terms/history/#valid-002 + + + + available-003 + http://purl.org/dc/terms/available + http://purl.org/dc/terms/ + available + + Date (often a range) that the resource became or will become available. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#available-003 + http://dublincore.org/usage/terms/history/#available-002 + + + + available-002 + http://purl.org/dc/terms/available + http://purl.org/dc/terms/ + available + + Date (often a range) that the resource will become or did + become available. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#available-002 + http://dublincore.org/usage/terms/history/#available-001 + http://dublincore.org/usage/terms/history/#available-003 + + + + available-001 + http://purl.org/dc/terms/available + http://purl.org/dc/terms/ + available + + Date (often a range) that the resource will become or did + become available. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#available-001 + http://dublincore.org/usage/terms/history/#available-002 + + + + issued-003 + http://purl.org/dc/terms/issued + http://purl.org/dc/terms/ + issued + + Date of formal issuance (e.g., publication) of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#issued-003 + http://dublincore.org/usage/terms/history/#issued-002 + + + + issued-002 + http://purl.org/dc/terms/issued + http://purl.org/dc/terms/ + issued + + Date of formal issuance (e.g., publication) of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#issued-002 + http://dublincore.org/usage/terms/history/#issued-001 + http://dublincore.org/usage/terms/history/#issued-003 + + + + issued-001 + http://purl.org/dc/terms/issued + http://purl.org/dc/terms/ + issued + + Date of formal issuance (e.g., publication) of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#issued-001 + http://dublincore.org/usage/terms/history/#issued-002 + + + + modified-003 + http://purl.org/dc/terms/modified + http://purl.org/dc/terms/ + modified + + Date on which the resource was changed. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#modified-003 + http://dublincore.org/usage/terms/history/#modified-002 + + + + modified-002 + http://purl.org/dc/terms/modified + http://purl.org/dc/terms/ + modified + + Date on which the resource was changed. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#modified-002 + http://dublincore.org/usage/terms/history/#modified-001 + http://dublincore.org/usage/terms/history/#modified-003 + + + + modified-001 + http://purl.org/dc/terms/modified + http://purl.org/dc/terms/ + modified + + Date on which the resource was changed. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#modified-001 + http://dublincore.org/usage/terms/history/#modified-002 + + + + extent-003 + http://purl.org/dc/terms/extent + http://purl.org/dc/terms/ + extent + + The size or duration of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/terms/format + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/SizeOrDuration + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#extent-003 + http://dublincore.org/usage/terms/history/#extent-002 + + + + extent-002 + http://purl.org/dc/terms/extent + http://purl.org/dc/terms/ + extent + + The size or duration of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/format + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#extent-002 + http://dublincore.org/usage/terms/history/#extent-001 + http://dublincore.org/usage/terms/history/#extent-003 + + + + extent-001 + http://purl.org/dc/terms/extent + http://purl.org/dc/terms/ + extent + + The size or duration of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/format + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#extent-001 + http://dublincore.org/usage/terms/history/#extent-002 + + + + medium-003 + http://purl.org/dc/terms/medium + http://purl.org/dc/terms/ + medium + + The material or physical carrier of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/terms/format + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/PhysicalResource + http://purl.org/dc/terms/PhysicalMedium + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#medium-003 + http://dublincore.org/usage/terms/history/#medium-002 + + + + medium-002 + http://purl.org/dc/terms/medium + http://purl.org/dc/terms/ + medium + + The material or physical carrier of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/format + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#medium-002 + http://dublincore.org/usage/terms/history/#medium-001 + http://dublincore.org/usage/terms/history/#medium-003 + + + + medium-001 + http://purl.org/dc/terms/medium + http://purl.org/dc/terms/ + medium + + The material or physical carrier of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/format + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#medium-001 + http://dublincore.org/usage/terms/history/#medium-002 + + + + isVersionOf-003 + http://purl.org/dc/terms/isVersionOf + http://purl.org/dc/terms/ + isVersionOf + + A related resource of which the described resource is a version, edition, or adaptation. + Changes in version imply substantive changes in content rather than differences in format. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isVersionOf-003 + http://dublincore.org/usage/terms/history/#isVersionOf-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isVersionOf-002 + http://purl.org/dc/terms/isVersionOf + http://purl.org/dc/terms/ + isVersionOf + + The described resource is a version, edition, or adaptation + of the referenced resource. Changes in version imply substantive + changes in content rather than differences in format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isVersionOf-002 + http://dublincore.org/usage/terms/history/#isVersionOf-001 + http://dublincore.org/usage/terms/history/#isVersionOf-003 + + + + isVersionOf-001 + http://purl.org/dc/terms/isVersionOf + http://purl.org/dc/terms/ + isVersionOf + + The described resource is a version, edition, or adaptation + of the referenced resource. Changes in version imply substantive + changes in content rather than differences in format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isVersionOf-001 + http://dublincore.org/usage/terms/history/#isVersionOf-002 + + + + hasVersion-003 + http://purl.org/dc/terms/hasVersion + http://purl.org/dc/terms/ + hasVersion + + A related resource that is a version, edition, or adaptation of the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#hasVersion-003 + http://dublincore.org/usage/terms/history/#hasVersion-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + hasVersion-002 + http://purl.org/dc/terms/hasVersion + http://purl.org/dc/terms/ + hasVersion + + The described resource has a version, edition, or adaptation, + namely, the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#hasVersion-002 + http://dublincore.org/usage/terms/history/#hasVersion-001 + http://dublincore.org/usage/terms/history/#hasVersion-003 + + + + hasVersion-001 + http://purl.org/dc/terms/hasVersion + http://purl.org/dc/terms/ + hasVersion + + The described resource has a version, edition, or adaptation, + namely, the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#hasVersion-001 + http://dublincore.org/usage/terms/history/#hasVersion-002 + + + + isReplacedBy-003 + http://purl.org/dc/terms/isReplacedBy + http://purl.org/dc/terms/ + isReplacedBy + + A related resource that supplants, displaces, or supersedes the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isReplacedBy-003 + http://dublincore.org/usage/terms/history/#isReplacedBy-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isReplacedBy-002 + http://purl.org/dc/terms/isReplacedBy + http://purl.org/dc/terms/ + isReplacedBy + + The described resource is supplanted, displaced, or + superseded by the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isReplacedBy-002 + http://dublincore.org/usage/terms/history/#isReplacedBy-001 + http://dublincore.org/usage/terms/history/#isReplacedBy-003 + + + + isReplacedBy-001 + http://purl.org/dc/terms/isReplacedBy + http://purl.org/dc/terms/ + isReplacedBy + + The described resource is supplanted, displaced, or + superceded by the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isReplacedBy-001 + http://dublincore.org/usage/terms/history/#isReplacedBy-002 + + + + replaces-003 + http://purl.org/dc/terms/replaces + http://purl.org/dc/terms/ + replaces + + A related resource that is supplanted, displaced, or superseded by the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#replaces-003 + http://dublincore.org/usage/terms/history/#replaces-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + replaces-002 + http://purl.org/dc/terms/replaces + http://purl.org/dc/terms/ + replaces + + The described resource supplants, displaces, or supersedes + the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#replaces-002 + http://dublincore.org/usage/terms/history/#replaces-001 + http://dublincore.org/usage/terms/history/#Is-Replaced-By-003 + + + + replaces-001 + http://purl.org/dc/terms/replaces + http://purl.org/dc/terms/ + replaces + + The described resource supplants, displaces, or supersedes + the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#replaces-001 + http://dublincore.org/usage/terms/history/#replaces-002 + + + + isRequiredBy-003 + http://purl.org/dc/terms/isRequiredBy + http://purl.org/dc/terms/ + isRequiredBy + + A related resource that requires the described resource to support its function, delivery, or coherence. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isRequiredBy-003 + http://dublincore.org/usage/terms/history/#isRequiredBy-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isRequiredBy-002 + http://purl.org/dc/terms/isRequiredBy + http://purl.org/dc/terms/ + isRequiredBy + + The described resource is required by the referenced resource, + either physically or logically. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isRequiredBy-002 + http://dublincore.org/usage/terms/history/#isRequiredBy-001 + http://dublincore.org/usage/terms/history/#isRequiredBy-003 + + + + isRequiredBy-001 + http://purl.org/dc/terms/isRequiredBy + http://purl.org/dc/terms/ + isRequiredBy + + The described resource is required by the referenced resource, + either physically or logically. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isRequiredBy-001 + http://dublincore.org/usage/terms/history/#isRequiredBy-002 + + + + requires-003 + http://purl.org/dc/terms/requires + http://purl.org/dc/terms/ + requires + + A related resource that is required by the described resource to support its function, delivery, or coherence. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#requires-003 + http://dublincore.org/usage/terms/history/#requires-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + requires-002 + http://purl.org/dc/terms/requires + http://purl.org/dc/terms/ + requires + + The described resource requires the referenced resource to + support its function, delivery, or coherence of content. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#requires-002 + http://dublincore.org/usage/terms/history/#requires-001 + http://dublincore.org/usage/terms/history/#requires-003 + + + + requires-001 + http://purl.org/dc/terms/requires + http://purl.org/dc/terms/ + requires + + The described resource requires the referenced resource to + support its function, delivery, or coherence of content. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#requires-001 + http://dublincore.org/usage/terms/history/#requires-002 + + + + isPartOf-003 + http://purl.org/dc/terms/isPartOf + http://purl.org/dc/terms/ + isPartOf + + A related resource in which the described resource is physically or logically included. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isPartOf-003 + http://dublincore.org/usage/terms/history/#isPartOf-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isPartOf-002 + http://purl.org/dc/terms/isPartOf + http://purl.org/dc/terms/ + isPartOf + + The described resource is a physical or logical part of the + referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isPartOf-002 + http://dublincore.org/usage/terms/history/#isPartOf-001 + http://dublincore.org/usage/terms/history/#isPartOf-003 + + + + isPartOf-001 + http://purl.org/dc/terms/isPartOf + http://purl.org/dc/terms/ + isPartOf + + The described resource is a physical or logical part of the + referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isPartOf-001 + http://dublincore.org/usage/terms/history/#isPartOf-002 + + + + hasPart-003 + http://purl.org/dc/terms/hasPart + http://purl.org/dc/terms/ + hasPart + + A related resource that is included either physically or logically in the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#hasPart-003 + http://dublincore.org/usage/terms/history/#hasPart-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + hasPart-002 + http://purl.org/dc/terms/hasPart + http://purl.org/dc/terms/ + hasPart + + The described resource includes the referenced resource either + physically or logically. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#hasPart-002 + http://dublincore.org/usage/terms/history/#hasPart-001 + http://dublincore.org/usage/terms/history/#hasPart-003 + + + + hasPart-001 + http://purl.org/dc/terms/hasPart + http://purl.org/dc/terms/ + hasPart + + The described resource includes the referenced resource either + physically or logically. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#hasPart-001 + http://dublincore.org/usage/terms/history/#hasPart-002 + + + + isReferencedBy-003 + http://purl.org/dc/terms/isReferencedBy + http://purl.org/dc/terms/ + isReferencedBy + + A related resource that references, cites, or otherwise points to the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isReferencedBy-003 + http://dublincore.org/usage/terms/history/#isReferencedBy-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isReferencedBy-002 + http://purl.org/dc/terms/isReferencedBy + http://purl.org/dc/terms/ + isReferencedBy + + The described resource is referenced, cited, or otherwise + pointed to by the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isReferencedBy-002 + http://dublincore.org/usage/terms/history/#isReferencedBy-001 + http://dublincore.org/usage/terms/history/#isReferencedBy-003 + + + + isReferencedBy-001 + http://purl.org/dc/terms/isReferencedBy + http://purl.org/dc/terms/ + isReferencedBy + + The described resource is referenced, cited, or otherwise + pointed to by the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isReferencedBy-001 + http://dublincore.org/usage/terms/history/#isReferencedBy-002 + + + + references-003 + http://purl.org/dc/terms/references + http://purl.org/dc/terms/ + references + + A related resource that is referenced, cited, or otherwise pointed to by the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#references-003 + http://dublincore.org/usage/terms/history/#references-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + references-002 + http://purl.org/dc/terms/references + http://purl.org/dc/terms/ + references + + The described resource references, cites, or otherwise points + to the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#references-002 + http://dublincore.org/usage/terms/history/#references-001 + http://dublincore.org/usage/terms/history/#references-003 + + + + references-001 + http://purl.org/dc/terms/references + http://purl.org/dc/terms/ + references + + The described resource references, cites, or otherwise points + to the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#references-001 + http://dublincore.org/usage/terms/history/#references-002 + + + + isFormatOf-003 + http://purl.org/dc/terms/isFormatOf + http://purl.org/dc/terms/ + isFormatOf + + A related resource that is substantially the same as the described resource, but in another format. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isFormatOf-003 + http://dublincore.org/usage/terms/history/#isFormatOf-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isFormatOf-002 + http://purl.org/dc/terms/isFormatOf + http://purl.org/dc/terms/ + isFormatOf + + The described resource is the same intellectual content of + the referenced resource, but presented in another format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isFormatOf-002 + http://dublincore.org/usage/terms/history/#isFormatOf-001 + http://dublincore.org/usage/terms/history/#isFormatOf-003 + + + + isFormatOf-001 + http://purl.org/dc/terms/isFormatOf + http://purl.org/dc/terms/ + isFormatOf + + The described resource is the same intellectual content of + the referenced resource, but presented in another format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isFormatOf-001 + http://dublincore.org/usage/terms/history/#isFormatOf-002 + + + + hasFormat-003 + http://purl.org/dc/terms/hasFormat + http://purl.org/dc/terms/ + hasFormat + + A related resource that is substantially the same as the pre-existing described resource, but in another format. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#hasFormat-003 + http://dublincore.org/usage/terms/history/#hasFormat-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + hasFormat-002 + http://purl.org/dc/terms/hasFormat + http://purl.org/dc/terms/ + hasFormat + + The described resource pre-existed the referenced resource, + which is essentially the same intellectual content presented + in another format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#hasFormat-002 + http://dublincore.org/usage/terms/history/#hasFormat-001 + http://dublincore.org/usage/terms/history/#hasFormat-003 + + + + hasFormat-001 + http://purl.org/dc/terms/hasFormat + http://purl.org/dc/terms/ + hasFormat + + The described resource pre-existed the referenced resource, + which is essentially the same intellectual content presented + in another format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#hasFormat-001 + http://dublincore.org/usage/terms/history/#hasFormat-002 + + + + conformsTo-003 + http://purl.org/dc/terms/conformsTo + http://purl.org/dc/terms/ + conformsTo + + An established standard to which the described resource conforms. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2008-01-14 + http://purl.org/dc/terms/Standard + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#conformsTo-003 + http://dublincore.org/usage/terms/history/#conformsTo-002 + + + + conformsTo-002 + http://purl.org/dc/terms/conformsTo + http://purl.org/dc/terms/ + conformsTo + + A reference to an established standard to which the resource conforms. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#conformsTo-002 + http://dublincore.org/usage/terms/history/#conformsTo-001 + http://dublincore.org/usage/terms/history/#conformsTo-003 + + + + conformsTo-001 + http://purl.org/dc/terms/conformsTo + http://purl.org/dc/terms/ + conformsTo + + A reference to an established standard to which the resource conforms. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + Domain-Specific + 2001-05-21 + http://dublincore.org/usage/decisions/#Decision-2001-01 + http://dublincore.org/usage/terms/history/#conformsTo-001 + http://dublincore.org/usage/terms/history/#conformsTo-002 + + + + spatial-003 + http://purl.org/dc/terms/spatial + http://purl.org/dc/terms/ + spatial + + Spatial characteristics of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/terms/coverage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/Location + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#spatial-003 + http://dublincore.org/usage/terms/history/#spatial-002 + + + + spatial-002 + http://purl.org/dc/terms/spatial + http://purl.org/dc/terms/ + spatial + + Spatial characteristics of the intellectual content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/coverage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#spatial-002 + http://dublincore.org/usage/terms/history/#spatial-001 + http://dublincore.org/usage/terms/history/#spatial-003 + + + + spatial-001 + http://purl.org/dc/terms/spatial + http://purl.org/dc/terms/ + spatial + + Spatial characteristics of the intellectual content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/coverage + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#spatial-001 + http://dublincore.org/usage/terms/history/#spatial-002 + + + + temporal-003 + http://purl.org/dc/terms/temporal + http://purl.org/dc/terms/ + temporal + + Temporal characteristics of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/terms/coverage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/PeriodOfTime + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#temporal-003 + http://dublincore.org/usage/terms/history/#temporal-002 + + + + temporal-002 + http://purl.org/dc/terms/temporal + http://purl.org/dc/terms/ + temporal + + Temporal characteristics of the intellectual content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/coverage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#temporal-002 + http://dublincore.org/usage/terms/history/#temporal-001 + http://dublincore.org/usage/terms/history/#temporal-003 + + + + temporal-001 + http://purl.org/dc/terms/temporal + http://purl.org/dc/terms/ + temporal + + Temporal characteristics of the intellectual content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/coverage + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#temporal-001 + http://dublincore.org/usage/terms/history/#temporal-002 + + + + mediator-003 + http://purl.org/dc/terms/mediator + http://purl.org/dc/terms/ + mediator + + An entity that mediates access to the resource and for whom the resource is intended or useful. + In an educational context, a mediator might be a parent, teacher, teaching assistant, or care-giver. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/audience + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2008-01-14 + http://purl.org/dc/terms/AgentClass + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#mediator-003 + http://dublincore.org/usage/terms/history/#mediator-002 + + + + mediator-002 + http://purl.org/dc/terms/mediator + http://purl.org/dc/terms/ + mediator + + A class of entity that mediates access to the + resource and for whom the resource is intended or useful. + The audiences for a resource are of two basic classes: (1) an + ultimate beneficiary of the resource, and (2) frequently, an + entity that mediates access to the resource. The mediator + element refinement represents the second of these two classes. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/terms/audience + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#mediator-002 + http://dublincore.org/usage/terms/history/#mediator-001 + http://dublincore.org/usage/terms/history/#mediator-003 + + + + mediator-001 + http://purl.org/dc/terms/mediator + http://purl.org/dc/terms/ + mediator + + A class of entity that mediates access to the + resource and for whom the resource is intended or useful. + The audience for a resource in the education/training + domain are of two basic classes: (1) an ultimate beneficiary of + the resource (usually a student or trainee), and (2) frequently, + an entity that mediates access to the resource (usually a + teacher or trainer). The mediator element refinement represents + the second of these two classes. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/terms/audience + Domain-Specific + 2001-05-21 + http://dublincore.org/usage/decisions/#Decision-2001-01 + http://dublincore.org/usage/terms/history/#mediator-001 + http://dublincore.org/usage/terms/history/#mediator-002 + + + + dateAccepted-002 + http://purl.org/dc/terms/dateAccepted + http://purl.org/dc/terms/ + dateAccepted + + Date of acceptance of the resource. + Examples of resources to which a Date Accepted may be relevant are a thesis (accepted by a university department) or an article (accepted by a journal). + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#dateAccepted-002 + http://dublincore.org/usage/terms/history/#dateAccepted-001 + + + + dateAccepted-001 + http://purl.org/dc/terms/dateAccepted + http://purl.org/dc/terms/ + dateAccepted + + Date of acceptance of the resource (e.g. of thesis + by university department, of article by journal, etc.). + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#dateAccepted-001 + http://dublincore.org/usage/terms/history/#dateAccepted-002 + + + + dateCopyrighted-002 + http://purl.org/dc/terms/dateCopyrighted + http://purl.org/dc/terms/ + dateCopyrighted + + Date of copyright. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#dateCopyrighted-002 + http://dublincore.org/usage/terms/history/#dateCopyrighted-001 + + + + dateCopyrighted-001 + http://purl.org/dc/terms/dateCopyrighted + http://purl.org/dc/terms/ + dateCopyrighted + + Date of a statement of copyright. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#dateCopyrighted-001 + http://dublincore.org/usage/terms/history/#dateCopyrighted-002 + + + + dateSubmitted-002 + http://purl.org/dc/terms/dateSubmitted + http://purl.org/dc/terms/ + dateSubmitted + + Date of submission of the resource. + Examples of resources to which a Date Submitted may be relevant are a thesis (submitted to a university department) or an article (submitted to a journal). + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#dateSubmitted-002 + http://dublincore.org/usage/terms/history/#dateSubmitted-001 + + + + dateSubmitted-001 + http://purl.org/dc/terms/dateSubmitted + http://purl.org/dc/terms/ + dateSubmitted + + Date of submission of the resource (e.g. thesis, + articles, etc.). + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#dateSubmitted-001 + http://dublincore.org/usage/terms/history/#dateSubmitted-002 + + + + educationLevel-002 + http://purl.org/dc/terms/educationLevel + http://purl.org/dc/terms/ + educationLevel + + A class of entity, defined in terms of progression through an educational or training context, for which the described resource is intended. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/audience + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + 2008-01-14 + http://purl.org/dc/terms/AgentClass + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#educationLevel-002 + http://dublincore.org/usage/terms/history/#educationLevel-001 + + + + educationLevel-001 + http://purl.org/dc/terms/educationLevel + http://purl.org/dc/terms/ + educationLevel + + A general statement describing the education or + training context. Alternatively, a more specific + statement of the location of the audience in terms of + its progression through an education or training context. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/terms/audience + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#educationLevel-001 + http://dublincore.org/usage/terms/history/#educationLevel-002 + + + + accessRights-002 + http://purl.org/dc/terms/accessRights + http://purl.org/dc/terms/ + accessRights + + Information about who can access the resource or an indication of its security status. + Access Rights may include information regarding access or restrictions based on privacy, security, or other policies. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/terms/rights + http://dublincore.org/usage/documents/process/#conforming + 2003-02-15 + 2008-01-14 + http://purl.org/dc/terms/RightsStatement + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#accessRights-002 + http://dublincore.org/usage/terms/history/#accessRights-001 + + + + accessRights-001 + http://purl.org/dc/terms/accessRights + http://purl.org/dc/terms/ + accessRights + + Information about who can access the + resource or an indication of its security status. + + Access Rights may include information + regarding access or restrictions based on privacy, + security or other regulations. + + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/rights + http://dublincore.org/usage/documents/process/#conforming + 2003-02-15 + http://dublincore.org/usage/decisions/#Decision-2003-01 + http://dublincore.org/usage/terms/history/#accessRights-001 + http://dublincore.org/usage/terms/history/#accessRights-002 + + + + bibliographicCitation-002 + http://purl.org/dc/terms/bibliographicCitation + http://purl.org/dc/terms/ + bibliographicCitation + + A bibliographic reference for the resource. + Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/terms/identifier + http://dublincore.org/usage/documents/process/#conforming + 2003-02-15 + 2008-01-14 + http://purl.org/dc/terms/BibliographicResource + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#bibliographicCitation-002 + http://dublincore.org/usage/terms/history/#bibliographicCitation-001 + + + + bibliographicCitation-001 + http://purl.org/dc/terms/bibliographicCitation + http://purl.org/dc/terms/ + bibliographicCitation + + A bibliographic reference for the resource. + + Recommended practice is to include sufficient + bibliographic detail to identify the resource as + unambiguously as possible, whether or not the + citation is in a standard form. + + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/identifier + http://dublincore.org/usage/documents/process/#conforming + 2003-02-15 + http://dublincore.org/usage/decisions/#Decision-2003-01 + http://dublincore.org/usage/terms/history/#bibliographicCitation-001 + http://dublincore.org/usage/terms/history/#bibliographicCitation-002 + + + + license-002 + http://purl.org/dc/terms/license + http://purl.org/dc/terms/ + license + + A legal document giving official permission to do something with the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/terms/rights + http://dublincore.org/usage/documents/process/#conforming + 2004-06-14 + 2008-01-14 + http://purl.org/dc/terms/LicenseDocument + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#license-002 + http://dublincore.org/usage/terms/history/#license-001 + + + + license-001 + http://purl.org/dc/terms/license + http://purl.org/dc/terms/ + license + + A legal document giving official permission to do something + with the resource. + Recommended best practice is to identify the license using a + URI. Examples of such licenses can be found at + http://creativecommons.org/licenses/. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/rights + http://dublincore.org/usage/documents/process/#conforming + 2004-06-14 + http://dublincore.org/usage/decisions/#Decision-2004-01 + http://dublincore.org/usage/terms/history/#license-001 + http://dublincore.org/usage/terms/history/#license-002 + + + + rightsHolder-002 + http://purl.org/dc/terms/rightsHolder + http://purl.org/dc/terms/ + rightsHolder + + A person or organization owning or managing rights over the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2004-06-14 + 2008-01-14 + http://purl.org/dc/terms/Agent + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#rightsHolder-002 + http://dublincore.org/usage/terms/history/#rightsHolder-001 + + + + rightsHolder-001 + http://purl.org/dc/terms/rightsHolder + http://purl.org/dc/terms/ + rightsHolder + + A person or organization owning or managing rights over the resource. + + Recommended best practice is to use the URI or name of + the Rights Holder to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2004-06-14 + http://dublincore.org/usage/decisions/#Decision-2004-01 + http://dublincore.org/usage/terms/history/#rightsHolder-001 + http://dublincore.org/usage/terms/history/#rightsHolder-002 + + + + Provenance-002 + http://purl.org/dc/terms/provenance + http://purl.org/dc/terms/ + provenance + + A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. + The statement may include a description of any changes successive custodians made to the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2004-09-20 + 2008-01-14 + http://purl.org/dc/terms/ProvenanceStatement + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#provenance-002 + http://dublincore.org/usage/terms/history/#provenance-001 + + + + Provenance-001 + http://purl.org/dc/terms/provenance + http://purl.org/dc/terms/ + provenance + + A statement of any changes in ownership and custody + of the resource since its creation that are + significant for its authenticity, integrity and + interpretation. + + The statement may include a description of any + changes successive custodians made to the resource. + + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2004-09-20 + http://dublincore.org/usage/decisions/#Decision-2004-02 + http://dublincore.org/usage/terms/history/#provenance-001 + http://dublincore.org/usage/terms/history/#provenance-002 + + + + instructionalMethod-002 + instructionalMethod + http://purl.org/dc/terms/instructionalMethod + http://purl.org/dc/terms/ + + A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support. + Instructional Method will typically include ways of presenting instructional materials or conducting instructional activities, patterns of learner-to-learner and learner-to-instructor interactions, and mechanisms by which group and individual levels of learning are measured. Instructional methods include all aspects of the instruction and learning processes from planning and implementation through evaluation and feedback. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + 2008-01-14 + http://purl.org/dc/terms/MethodOfInstruction + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#instructionalMethod-002 + http://dublincore.org/usage/terms/history/#instructionalMethod-001 + + + + instructionalMethod-001 + instructionalMethod + http://purl.org/dc/terms/instructionalMethod + http://purl.org/dc/terms/ + + A process, used to engender knowledge, attitudes and skills, + that the resource is designed to support. + Instructional Method will typically include ways of presenting + instructional materials or conducting instructional activities, + patterns of learner-to-learner and learner-to-instructor interactions, + and mechanisms by which group and individual levels of learning are measured. + Instructional methods include all aspects of the instruction and learning + processes from planning and implementation through evaluation and + feedback. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-02 + http://dublincore.org/usage/terms/history/#instructionalMethod-001 + http://dublincore.org/usage/terms/history/#instructionalMethod-002 + + + + accrualMethod-002 + accrualMethod + http://purl.org/dc/terms/accrualMethod + http://purl.org/dc/terms/ + + The method by which items are added to a collection. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + 2008-01-14 + http://purl.org/dc/terms/Collection + http://purl.org/dc/terms/MethodOfAccrual + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#accrualMethod-002 + http://dublincore.org/usage/terms/history/#accrualMethod-001 + + + + accrualMethod-001 + accrualMethod + http://purl.org/dc/terms/accrualMethod + http://purl.org/dc/terms/ + + The method by which items are added to a collection. + Recommended best practice is to use a value from a controlled vocabulary. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-03 + http://dublincore.org/usage/terms/history/#accrualMethod-001 + http://dublincore.org/usage/terms/history/#accrualMethod-002 + + + + accrualPeriodicity-002 + accrualPeriodicity + http://purl.org/dc/terms/accrualPeriodicity + http://purl.org/dc/terms/ + + The frequency with which items are added to a collection. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + 2008-01-14 + http://purl.org/dc/terms/Collection + http://purl.org/dc/terms/Frequency + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#accrualPeriodicity-002 + http://dublincore.org/usage/terms/history/#accrualPeriodicity-001 + + + + accrualPeriodicity-001 + accrualPeriodicity + http://purl.org/dc/terms/accrualPeriodicity + http://purl.org/dc/terms/ + + The frequency with which items are added to a collection. + Recommended best practice is to use a value from a + controlled vocabulary. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-03 + http://dublincore.org/usage/terms/history/#accrualPeriodicity-001 + http://dublincore.org/usage/terms/history/#accrualPeriodicity-002 + + + + accrualPolicy-002 + accrualPolicy + http://purl.org/dc/terms/accrualPolicy + http://purl.org/dc/terms/ + + The policy governing the addition of items to a collection. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + 2008-01-14 + http://purl.org/dc/terms/Collection + http://purl.org/dc/terms/Policy + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#accrualPolicy-002 + http://dublincore.org/usage/terms/history/#accrualPolicy-001 + + + + accrualPolicy-001 + accrualPolicy + http://purl.org/dc/terms/accrualPolicy + http://purl.org/dc/terms/ + + The policy governing the addition of items to a collection. + Recommended best practice is to use a value from a controlled + vocabulary. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-03 + http://dublincore.org/usage/terms/history/#accrualPolicy-001 + http://dublincore.org/usage/terms/history/#accrualPolicy-002 + + + diff --git a/2007-12-07/xmldata/dcterms-ses.xml b/2007-12-07/xmldata/dcterms-ses.xml new file mode 100755 index 0000000..6f57159 --- /dev/null +++ b/2007-12-07/xmldata/dcterms-ses.xml @@ -0,0 +1,525 @@ + + + + + + ISO639-2-003 + http://purl.org/dc/terms/ISO639-2 + http://purl.org/dc/terms/ + ISO639-2 + + The three-letter alphabetic codes listed in ISO639-2 for the representation of names of languages. + http://lcweb.loc.gov/standards/iso639-2/langhome.html + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#ISO639-2-003 + http://dublincore.org/usage/terms/history/#ISO639-2-002 + + + + ISO639-2-002 + http://purl.org/dc/terms/ISO639-2 + http://purl.org/dc/terms/ + ISO639-2 + + ISO 639-2: Codes for the representation of names of languages. + http://lcweb.loc.gov/standards/iso639-2/langhome.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#ISO639-2-002 + http://dublincore.org/usage/terms/history/#ISO639-2-001 + http://dublincore.org/usage/terms/history/#ISO639-2-003 + + + + ISO639-2-001 + http://purl.org/dc/terms/ISO639-2 + http://purl.org/dc/terms/ + ISO639-2 + + ISO 639-2: Codes for the representation of names of languages. + http://lcweb.loc.gov/standards/iso639-2/langhome.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#ISO639-2-001 + http://dublincore.org/usage/terms/history/#ISO639-2-002 + + + + RFC1766-003 + http://purl.org/dc/terms/RFC1766 + http://purl.org/dc/terms/ + RFC1766 + + The set of tags, constructed according to RFC 1766, for the identification of languages. + http://www.ietf.org/rfc/rfc1766.txt + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#RFC1766-003 + http://dublincore.org/usage/terms/history/#RFC1766-002 + + + + RFC1766-002 + http://purl.org/dc/terms/RFC1766 + http://purl.org/dc/terms/ + RFC1766 + + Internet RFC 1766 'Tags for the identification of Language' + specifies a two letter code taken from ISO 639, followed + optionally by a two letter country code taken from ISO 3166. + http://www.ietf.org/rfc/rfc1766.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#RFC1766-002 + http://dublincore.org/usage/terms/history/#RFC1766-001 + http://dublincore.org/usage/terms/history/#RFC1766-003 + + + + RFC1766-001 + http://purl.org/dc/terms/RFC1766 + http://purl.org/dc/terms/ + RFC1766 + + Internet RFC 1766 'Tags for the identification of Language' + specifies a two letter code taken from ISO 639, followed + optionally by a two letter country code taken from ISO 3166. + http://www.ietf.org/rfc/rfc1766.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#RFC1766-001 + http://dublincore.org/usage/terms/history/#RFC1766-002 + + + + URI-003 + http://purl.org/dc/terms/URI + http://purl.org/dc/terms/ + URI + + The set of identifiers constructed according to the generic syntax for Uniform Resource Identifiers as specified by the Internet Engineering Task Force. + http://www.ietf.org/rfc/rfc3986.txt + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#URI-003 + http://dublincore.org/usage/terms/history/#URI-002 + + + + URI-002 + http://purl.org/dc/terms/URI + http://purl.org/dc/terms/ + URI + + A URI Uniform Resource Identifier + http://www.ietf.org/rfc/rfc2396.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#URI-002 + http://dublincore.org/usage/terms/history/#URI-001 + http://dublincore.org/usage/terms/history/#URI-003 + + + + URI-001 + http://purl.org/dc/terms/URI + http://purl.org/dc/terms/ + URI + + A URI Uniform Resource Identifier + http://www.ietf.org/rfc/rfc2396.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#URI-001 + http://dublincore.org/usage/terms/history/#URI-002 + + + + Point-003 + http://purl.org/dc/terms/Point + http://purl.org/dc/terms/ + Point + + The set of points in space defined by their geographic coordinates according to the DCMI Point Encoding Scheme. + http://dublincore.org/documents/dcmi-point/ + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Point-003 + http://dublincore.org/usage/terms/history/#Point-002 + + + + Point-002 + http://purl.org/dc/terms/Point + http://purl.org/dc/terms/ + Point + + The DCMI Point identifies a point in space using its geographic coordinates. + http://dublincore.org/documents/dcmi-point/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#Point-002 + http://dublincore.org/usage/terms/history/#Point-001 + http://dublincore.org/usage/terms/history/#Point-003 + + + + Point-001 + http://purl.org/dc/terms/Point + http://purl.org/dc/terms/ + Point + + The DCMI Point identifies a point in space using its geographic coordinates. + http://dublincore.org/documents/dcmi-point/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#Point-001 + http://dublincore.org/usage/terms/history/#Point-002 + + + + ISO3166-004 + http://purl.org/dc/terms/ISO3166 + http://purl.org/dc/terms/ + ISO3166 + + The set of codes listed in ISO 3166-1 for the representation of names of countries. + http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#ISO3166-004 + http://dublincore.org/usage/terms/history/#ISO3166-003 + + + + ISO3166-003 + http://purl.org/dc/terms/ISO3166 + http://purl.org/dc/terms/ + ISO3166 + + ISO 3166 Codes for the representation of names of countries + http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2004-12-17 + http://dublincore.org/usage/decisions/#Decision-2004-03 + http://dublincore.org/usage/terms/history/#ISO3166-003 + http://dublincore.org/usage/terms/history/#ISO3166-002 + http://dublincore.org/usage/terms/history/#ISO3166-004 + + + + ISO3166-002 + http://purl.org/dc/terms/ISO3166 + http://purl.org/dc/terms/ + ISO3166 + + ISO 3166 Codes for the representation of names of countries + http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/index.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#ISO3166-002 + http://dublincore.org/usage/terms/history/#ISO3166-001 + http://dublincore.org/usage/terms/history/#ISO3166-003 + + + + ISO3166-001 + http://purl.org/dc/terms/ISO3166 + http://purl.org/dc/terms/ + ISO3166 + + ISO 3166 Codes for the representation of names of countries + http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/index.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#ISO3166-001 + http://dublincore.org/usage/terms/history/#ISO3166-002 + + + + Box-003 + http://purl.org/dc/terms/Box + http://purl.org/dc/terms/ + Box + + The set of regions in space defined by their geographic coordinates according to the DCMI Box Encoding Scheme. + http://dublincore.org/documents/dcmi-box/ + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Box-003 + http://dublincore.org/usage/terms/history/#Box-002 + + + + Box-002 + http://purl.org/dc/terms/Box + http://purl.org/dc/terms/ + Box + + The DCMI Box identifies a region of space using its geographic limits. + http://dublincore.org/documents/dcmi-box/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#Box-002 + http://dublincore.org/usage/terms/history/#Box-001 + http://dublincore.org/usage/terms/history/#Box-003 + + + + Box-001 + http://purl.org/dc/terms/Box + http://purl.org/dc/terms/ + Box + + The DCMI Box identifies a region of space using its geographic limits. + http://dublincore.org/documents/dcmi-box/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#Box-001 + http://dublincore.org/usage/terms/history/#Box-002 + + + + Period-003 + http://purl.org/dc/terms/Period + http://purl.org/dc/terms/ + Period + + The set of time intervals defined by their limits according to the DCMI Period Encoding Scheme. + http://dublincore.org/documents/dcmi-period/ + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Period-003 + http://dublincore.org/usage/terms/history/#Period-002 + + + + Period-002 + http://purl.org/dc/terms/Period + http://purl.org/dc/terms/ + Period + + A specification of the limits of a time interval. + http://dublincore.org/documents/dcmi-period/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#Period-002 + http://dublincore.org/usage/terms/history/#Period-001 + http://dublincore.org/usage/terms/history/#Period-003 + + + + Period-001 + http://purl.org/dc/terms/Period + http://purl.org/dc/terms/ + Period + + A specification of the limits of a time interval. + http://dublincore.org/documents/dcmi-period/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#Period-001 + http://dublincore.org/usage/terms/history/#Period-002 + + + + W3CDTF-003 + http://purl.org/dc/terms/W3CDTF + http://purl.org/dc/terms/ + W3CDTF + + The set of dates and times constructed according to the W3C Date and Time Formats Specification. + http://www.w3.org/TR/NOTE-datetime + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#W3CDTF-003 + http://dublincore.org/usage/terms/history/#W3CDTF-002 + + + + W3CDTF-002 + http://purl.org/dc/terms/W3CDTF + http://purl.org/dc/terms/ + W3CDTF + + W3C Encoding rules for dates and times - a profile based on ISO 8601 + http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#W3CDTF-002 + http://dublincore.org/usage/terms/history/#W3CDTF-001 + http://dublincore.org/usage/terms/history/#W3CDTF-003 + + + + W3CDTF-001 + http://purl.org/dc/terms/W3CDTF + http://purl.org/dc/terms/ + W3CDTF + + W3C Encoding rules for dates and times - a profile based on ISO 8601 + http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#W3CDTF-001 + http://dublincore.org/usage/terms/history/#W3CDTF-002 + + + + RFC3066-002 + http://purl.org/dc/terms/RFC3066 + http://purl.org/dc/terms/ + RFC3066 + + The set of tags constructed according to RFC 3066 for the identification of languages. + RFC 3066 has been obsoleted by RFC 4646. + http://www.ietf.org/rfc/rfc3066.txt + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2002-07-13 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#RFC3066-002 + http://dublincore.org/usage/terms/history/#RFC3066-001 + + + + RFC3066-001 + http://purl.org/dc/terms/RFC3066 + http://purl.org/dc/terms/ + RFC3066 + + Internet RFC 3066 'Tags for the + Identification of Languages' specifies a primary + subtag which is a two-letter code taken from ISO + 639 part 1 or a three-letter code taken from ISO 639 + part 2, followed optionally by a two-letter country + code taken from ISO 3166. When a language in ISO + 639 has both a two-letter and three-letter code, use + the two-letter code; when it has only a three-letter + code, use the three-letter code. This RFC replaces + RFC 1766. + http://www.ietf.org/rfc/rfc3066.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + http://dublincore.org/usage/documents/process/#registered + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#RFC3066-001 + http://dublincore.org/usage/terms/history/#RFC3066-002 + + + + RFC4646-001 + RFC4646 + http://purl.org/dc/terms/RFC4646 + http://purl.org/dc/terms/ + + The set of tags constructed according to RFC 4646 for the identification of languages. + RFC 4646 obsoletes RFC 3066. + http://www.ietf.org/rfc/rfc4646.txt + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + http://dublincore.org/usage/terms/history/#RFC4646-001 + 2008-01-14 + + + + ISO639-3-001 + ISO639-3 + http://purl.org/dc/terms/ISO639-3 + http://purl.org/dc/terms/ + + The set of three-letter codes listed in ISO 639-3 for the representation of names of languages. + http://www.sil.org/iso639-3/ + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + http://dublincore.org/usage/terms/history/#ISO639-3-001 + 2008-01-14 + + + diff --git a/2007-12-07/xmldata/dcterms-ves.xml b/2007-12-07/xmldata/dcterms-ves.xml new file mode 100755 index 0000000..66e1d8a --- /dev/null +++ b/2007-12-07/xmldata/dcterms-ves.xml @@ -0,0 +1,473 @@ + + + + + + LCSH-003 + http://purl.org/dc/terms/LCSH + http://purl.org/dc/terms/ + LCSH + + The set of labeled concepts specified by the Library of Congress Subject Headings. + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#LCSH-003 + http://dublincore.org/usage/terms/history/#LCSH-002 + + + + LCSH-002 + http://purl.org/dc/terms/LCSH + http://purl.org/dc/terms/ + LCSH + + Library of Congress Subject Headings + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#LCSH-002 + http://dublincore.org/usage/terms/history/#LCSH-001 + http://dublincore.org/usage/terms/history/#LCSH-002 + + + + LCSH-001 + http://purl.org/dc/terms/LCSH + http://purl.org/dc/terms/ + LCSH + + Library of Congress Subject Headings + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#LCSH-001 + http://dublincore.org/usage/terms/history/#LCSH-002 + + + + MESH-003 + http://purl.org/dc/terms/MESH + http://purl.org/dc/terms/ + MESH + + The set of labeled concepts specified by the Medical Subject Headings. + http://www.nlm.nih.gov/mesh/meshhome.html + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#MESH-003 + http://dublincore.org/usage/terms/history/#MESH-002 + + + + MESH-002 + http://purl.org/dc/terms/MESH + http://purl.org/dc/terms/ + MESH + + Medical Subject Headings + http://www.nlm.nih.gov/mesh/meshhome.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#MESH-002 + http://dublincore.org/usage/terms/history/#MESH-001 + http://dublincore.org/usage/terms/history/#MESH-003 + + + + MESH-001 + http://purl.org/dc/terms/MESH + http://purl.org/dc/terms/ + MESH + + Medical Subject Headings + http://www.nlm.nih.gov/mesh/meshhome.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#MESH-001 + http://dublincore.org/usage/terms/history/#MESH-002 + + + + DDC-003 + http://purl.org/dc/terms/DDC + http://purl.org/dc/terms/ + DDC + + The set of conceptual resources specified by the Dewey Decimal Classification. + http://www.oclc.org/dewey/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#DDC-003 + http://dublincore.org/usage/terms/history/#DDC-002 + + + + DDC-002 + http://purl.org/dc/terms/DDC + http://purl.org/dc/terms/ + DDC + + Dewey Decimal Classification + http://www.oclc.org/dewey/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#DDC-002 + http://dublincore.org/usage/terms/history/#DDC-001 + http://dublincore.org/usage/terms/history/#DDC-003 + + + + DDC-001 + http://purl.org/dc/terms/DDC + http://purl.org/dc/terms/ + DDC + + Dewey Decimal Classification + http://www.oclc.org/dewey/index.htm + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#DDC-001 + http://dublincore.org/usage/terms/history/#DDC-002 + + + + LCC-003 + http://purl.org/dc/terms/LCC + http://purl.org/dc/terms/ + LCC + + The set of conceptual resources specified by the Library of Congress Classification. + http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#LCC-003 + http://dublincore.org/usage/terms/history/#LCC-002 + + + + LCC-002 + http://purl.org/dc/terms/LCC + http://purl.org/dc/terms/ + LCC + + Library of Congress Classification + http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#LCC-002 + http://dublincore.org/usage/terms/history/#LCC-001 + http://dublincore.org/usage/terms/history/#LCC-003 + + + + LCC-001 + http://purl.org/dc/terms/LCC + http://purl.org/dc/terms/ + LCC + + Library of Congress Classification + http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#LCC-001 + http://dublincore.org/usage/terms/history/#LCC-002 + + + + UDC-003 + http://purl.org/dc/terms/UDC + http://purl.org/dc/terms/ + UDC + + The set of conceptual resources specified by the Universal Decimal Classification. + http://www.udcc.org/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#UDC-003 + http://dublincore.org/usage/terms/history/#UDC-002 + + + + UDC-002 + http://purl.org/dc/terms/UDC + http://purl.org/dc/terms/ + UDC + + Universal Decimal Classification + http://www.udcc.org/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#UDC-002 + http://dublincore.org/usage/terms/history/#UDC-001 + http://dublincore.org/usage/terms/history/#UDC-003 + + + + UDC-001 + http://purl.org/dc/terms/UDC + http://purl.org/dc/terms/ + UDC + + Universal Decimal Classification + http://www.udcc.org/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#UDC-001 + http://dublincore.org/usage/terms/history/#UDC-002 + + + + DCMIType-003 + http://purl.org/dc/terms/DCMIType + http://purl.org/dc/terms/ + DCMIType + + The set of classes specified by the DCMI Type Vocabulary, used to categorize the nature or genre of the resource. + http://dublincore.org/documents/dcmi-type-vocabulary/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#DCMIType-003 + http://dublincore.org/usage/terms/history/#DCMIType-002 + + + + DCMIType-002 + http://purl.org/dc/terms/DCMIType + http://purl.org/dc/terms/ + DCMIType + + A list of types used to categorize the nature or genre + of the content of the resource. + http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/type + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#DCMIType-002 + http://dublincore.org/usage/terms/history/#DCMIType-001 + http://dublincore.org/usage/terms/history/#DCMIType-003 + + + + DCMIType-001 + http://purl.org/dc/terms/DCMIType + http://purl.org/dc/terms/ + DCMIType + + A list of types used to categorize the nature or genre + of the content of the resource. + http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/type + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#DCMIType-001 + http://dublincore.org/usage/terms/history/#DCMIType-002 + + + + IMT-004 + http://purl.org/dc/terms/IMT + http://purl.org/dc/terms/ + IMT + + The set of media types specified by the Internet Assigned Numbers Authority. + http://www.iana.org/assignments/media-types/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#IMT-004 + http://dublincore.org/usage/terms/history/#IMT-003 + + + + IMT-003 + http://purl.org/dc/terms/IMT + http://purl.org/dc/terms/ + IMT + + The Internet media type of the resource. + http://www.iana.org/assignments/media-types/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/format + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2004-12-17 + http://dublincore.org/usage/decisions/#Decision-2004-03 + http://dublincore.org/usage/terms/history/#IMT-003 + http://dublincore.org/usage/terms/history/#IMT-002 + http://dublincore.org/usage/terms/history/#IMT-004 + + + + IMT-002 + http://purl.org/dc/terms/IMT + http://purl.org/dc/terms/ + IMT + + The Internet media type of the resource. + http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/format + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#IMT-002 + http://dublincore.org/usage/terms/history/#IMT-001 + http://dublincore.org/usage/terms/history/#IMT-003 + + + + IMT-001 + http://purl.org/dc/terms/IMT + http://purl.org/dc/terms/ + IMT + + The Internet media type of the resource. + http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/format + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#IMT-001 + http://dublincore.org/usage/terms/history/#IMT-002 + + + + TGN-003 + http://purl.org/dc/terms/TGN + http://purl.org/dc/terms/ + TGN + + The set of places specified by the Getty Thesaurus of Geographic Names. + http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#TGN-003 + http://dublincore.org/usage/terms/history/#TGN-002 + + + + TGN-002 + http://purl.org/dc/terms/TGN + http://purl.org/dc/terms/ + TGN + + The Getty Thesaurus of Geographic Names + http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#TGN-002 + http://dublincore.org/usage/terms/history/#TGN-001 + http://dublincore.org/usage/terms/history/#TGN-003 + + + + TGN-001 + http://purl.org/dc/terms/TGN + http://purl.org/dc/terms/ + TGN + + The Getty Thesaurus of Geographic Names + http://shiva.pub.getty.edu/tgn_browser/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#TGN-001 + http://dublincore.org/usage/terms/history/#TGN-002 + + + + NLM-002 + NLM + http://purl.org/dc/terms/NLM + http://purl.org/dc/terms/ + + The set of conceptual resources specified by the National Library of Medicine Classification. + http://wwwcf.nlm.nih.gov/class/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2005-06-13 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#NLM-002 + http://dublincore.org/usage/terms/history/#NLM-001 + + + + NLM-001 + NLM + http://purl.org/dc/terms/NLM + http://purl.org/dc/terms/ + + National Library of Medicine Classification + http://wwwcf.nlm.nih.gov/class/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-01 + http://dublincore.org/usage/terms/history/#NLM-001 + http://dublincore.org/usage/terms/history/#NLM-002 + + + diff --git a/2007-12-07/xmldata/dctype.xml b/2007-12-07/xmldata/dctype.xml new file mode 100755 index 0000000..6b187e9 --- /dev/null +++ b/2007-12-07/xmldata/dctype.xml @@ -0,0 +1,739 @@ + + + + + + Collection-003 + http://purl.org/dc/dcmitype/Collection + http://purl.org/dc/dcmitype/ + Collection + + An aggregation of resources. + A collection is described as a group; its parts may also be separately described. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Collection-003 + http://dublincore.org/usage/terms/history/#Collection-002 + + + + Collection-002 + http://purl.org/dc/dcmitype/Collection + http://purl.org/dc/dcmitype/ + Collection + + An aggregation of resources. + A collection is described as a group; its parts + may also be separately described. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Collection-002 + http://dublincore.org/usage/terms/history/#Collection-001 + http://dublincore.org/usage/terms/history/#Collection-003 + + + + Collection-001 + http://purl.org/dc/dcmitype/Collection + http://purl.org/dc/dcmitype/ + Collection + + A collection is an aggregation of items. The term + collection means that the resource is described as a + group; its parts may be separately described and navigated. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Collection-001 + http://dublincore.org/usage/terms/history/#Collection-002 + + + + Dataset-003 + http://purl.org/dc/dcmitype/Dataset + http://purl.org/dc/dcmitype/ + Dataset + + Data encoded in a defined structure. + Examples include lists, tables, and databases. A dataset may be useful for direct machine processing. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Dataset-003 + http://dublincore.org/usage/terms/history/#Dataset-002 + + + + Dataset-002 + http://purl.org/dc/dcmitype/Dataset + http://purl.org/dc/dcmitype/ + Dataset + + Data encoded in a defined structure. + Examples include lists, tables, and databases. + A dataset may be useful for direct machine processing. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Dataset-002 + http://dublincore.org/usage/terms/history/#Dataset-001 + http://dublincore.org/usage/terms/history/#Dataset-003 + + + + Dataset-001 + http://purl.org/dc/dcmitype/Dataset + http://purl.org/dc/dcmitype/ + Dataset + + A dataset is information encoded in a defined structure + (for example, lists, tables, and databases), intended to + be useful for direct machine processing. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Dataset-001 + http://dublincore.org/usage/terms/history/#Dataset-002 + + + + Event-003 + http://purl.org/dc/dcmitype/Event + http://purl.org/dc/dcmitype/ + Event + + A non-persistent, time-based occurrence. + Metadata for an event provides descriptive information that is the basis for discovery of the purpose, location, duration, and responsible agents associated with an event. Examples include an exhibition, webcast, conference, workshop, open day, performance, battle, trial, wedding, tea party, conflagration. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Event-003 + http://dublincore.org/usage/terms/history/#Event-002 + + + + Event-002 + http://purl.org/dc/dcmitype/Event + http://purl.org/dc/dcmitype/ + Event + + A non-persistent, time-based occurrence. + Metadata for an event provides descriptive + information that is the basis for discovery of the + purpose, location, duration, and responsible + agents associated with an event. Examples + include an exhibition, webcast, conference, workshop, + open day, performance, battle, trial, wedding, tea + party, conflagration. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Event-002 + http://dublincore.org/usage/terms/history/#Event-001 + http://dublincore.org/usage/terms/history/#Event-003 + + + + Event-001 + http://purl.org/dc/dcmitype/Event + http://purl.org/dc/dcmitype/ + Event + + An event is a non-persistent, time-based occurrence. + Metadata for an event provides descriptive + information that is the basis for discovery of the + purpose, location, duration, responsible agents, and + links to related events and resources. The resource + of type event may not be retrievable if the described + instantiation has expired or is yet to occur. + Examples - exhibition, web-cast, conference, + workshop, open-day, performance, battle, trial, + wedding, tea-party, conflagration. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Event-001 + http://dublincore.org/usage/terms/history/#Event-002 + + + + Image-004 + http://purl.org/dc/dcmitype/Image + http://purl.org/dc/dcmitype/ + Image + + A visual representation other than text. + Examples include images and photographs of physical objects, paintings, prints, drawings, other images and graphics, animations and moving pictures, film, diagrams, maps, musical notation. Note that Image may include both electronic and physical representations. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/MovingImage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Image-004 + http://dublincore.org/usage/terms/history/#Image-003 + + + + Image-003 + http://purl.org/dc/dcmitype/Image + http://purl.org/dc/dcmitype/ + Image + + A visual representation other than text. + Examples include images and photographs + of physical objects, paintings, prints, drawings, other + images and graphics, animations and moving + pictures, film, diagrams, maps, musical + notation. Note that Image may include both + electronic and physical representations. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/MovingImage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Image-003 + http://dublincore.org/usage/terms/history/#Image-002 + http://dublincore.org/usage/terms/history/#Image-004 + + + + Image-002 + http://purl.org/dc/dcmitype/Image + http://purl.org/dc/dcmitype/ + Image + + An image is a primarily symbolic visual representation + other than text. For example - images and photographs of + physical objects, paintings, prints, drawings, other + images and graphics, animations and moving pictures, + film, diagrams, maps, musical notation. Note that image + may include both electronic and physical representations. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/MovingImage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2003-11-18 + http://dublincore.org/usage/decisions/#Decision-2003-02 + http://dublincore.org/usage/terms/history/#Image-002 + http://dublincore.org/usage/terms/history/#Image-001 + http://dublincore.org/usage/terms/history/#Image-003 + + + + Image-001 + http://purl.org/dc/dcmitype/Image + http://purl.org/dc/dcmitype/ + Image + + An image is a primarily symbolic visual representation + other than text. For example - images and photographs of + physical objects, paintings, prints, drawings, other + images and graphics, animations and moving pictures, + film, diagrams, maps, musical notation. Note that image + may include both electronic and physical representations. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Image-001 + http://dublincore.org/usage/terms/history/#Image-002 + + + + InteractiveResource-003 + http://purl.org/dc/dcmitype/InteractiveResource + http://purl.org/dc/dcmitype/ + InteractiveResource + + A resource requiring interaction from the user to be understood, executed, or experienced. + Examples include forms on Web pages, applets, multimedia learning objects, chat services, or virtual reality environments. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#InteractiveResource-003 + http://dublincore.org/usage/terms/history/#InteractiveResource-002 + + + + InteractiveResource-002 + http://purl.org/dc/dcmitype/InteractiveResource + http://purl.org/dc/dcmitype/ + InteractiveResource + + A resource requiring interaction from the user to + be understood, executed, or experienced. + Examples include forms on Web pages, applets, multimedia + learning objects, chat services, or virtual reality + environments. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#InteractiveResource-002 + http://dublincore.org/usage/terms/history/#InteractiveResource-001 + http://dublincore.org/usage/terms/history/#InteractiveResource-003 + + + + InteractiveResource-001 + http://purl.org/dc/dcmitype/InteractiveResource + http://purl.org/dc/dcmitype/ + InteractiveResource + + An interactive resource is a resource which requires + interaction from the user to be understood, executed, + or experienced. For example - forms on web pages, applets, + multimedia learning objects, chat services, virtual + reality. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#InteractiveResource-001 + http://dublincore.org/usage/terms/history/#InteractiveResource-002 + + + + Service-003 + http://purl.org/dc/dcmitype/Service + http://purl.org/dc/dcmitype/ + Service + + A system that provides one or more functions. + Examples include a photocopying service, a banking service, an authentication service, interlibrary loans, a Z39.50 or Web server. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Service-003 + http://dublincore.org/usage/terms/history/#Service-002 + + + + Service-002 + http://purl.org/dc/dcmitype/Service + http://purl.org/dc/dcmitype/ + Service + + A system that provides one or more functions. + Examples include a photocopying service, a banking service, + an authentication service, interlibrary loans, a Z39.50 or + Web server. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Service-002 + http://dublincore.org/usage/terms/history/#Service-001 + http://dublincore.org/usage/terms/history/#Service-003 + + + + Service-001 + http://purl.org/dc/dcmitype/Service + http://purl.org/dc/dcmitype/ + Service + + A service is a system that provides one or more + functions of value to the end-user. Examples include: + a photocopying service, a banking service, an + authentication service, interlibrary loans, a Z39.50 + or Web server. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Service-001 + http://dublincore.org/usage/terms/history/#Service-002 + + + + Software-003 + http://purl.org/dc/dcmitype/Software + http://purl.org/dc/dcmitype/ + Software + + A computer program in source or compiled form. + Examples include a C source file, MS-Windows .exe executable, or Perl script. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Software-003 + http://dublincore.org/usage/terms/history/#Software-002 + + + + Software-002 + http://purl.org/dc/dcmitype/Software + http://purl.org/dc/dcmitype/ + Software + + A computer program in source or compiled form. + Examples include a C source file, MS-Windows .exe executable, + or Perl script. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Software-002 + http://dublincore.org/usage/terms/history/#Software-001 + http://dublincore.org/usage/terms/history/#Software-003 + + + + Software-001 + http://purl.org/dc/dcmitype/Software + http://purl.org/dc/dcmitype/ + Software + + Software is a computer program in source or + compiled form which may be available for installation + non-transiently on another machine. For software which + exists only to create an interactive environment, use + interactive instead. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Software-001 + http://dublincore.org/usage/terms/history/#Software-002 + + + + Sound-003 + http://purl.org/dc/dcmitype/Sound + http://purl.org/dc/dcmitype/ + Sound + + A resource primarily intended to be heard. + Examples include a music playback file format, an audio compact disc, and recorded speech or sounds. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Sound-003 + http://dublincore.org/usage/terms/history/#Sound-002 + + + + Sound-002 + http://purl.org/dc/dcmitype/Sound + http://purl.org/dc/dcmitype/ + Sound + + A resource primarily intended to be heard. + Examples include a music playback file format, an audio + compact disc, and recorded speech or sounds. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Sound-002 + http://dublincore.org/usage/terms/history/#Sound-001 + http://dublincore.org/usage/terms/history/#Sound-003 + + + + Sound-001 + http://purl.org/dc/dcmitype/Sound + http://purl.org/dc/dcmitype/ + Sound + + A sound is a resource whose content is primarily + intended to be rendered as audio. For example - a + music playback file format, an audio compact disc, + and recorded speech or sounds. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Sound-001 + http://dublincore.org/usage/terms/history/#Sound-002 + + + + Text-003 + http://purl.org/dc/dcmitype/Text + http://purl.org/dc/dcmitype/ + Text + + A resource consisting primarily of words for reading. + Examples include books, letters, dissertations, poems, newspapers, articles, archives of mailing lists. Note that facsimiles or images of texts are still of the genre Text. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Text-003 + http://dublincore.org/usage/terms/history/#Text-002 + + + + Text-002 + http://purl.org/dc/dcmitype/Text + http://purl.org/dc/dcmitype/ + Text + + A resource consisting primarily of words for reading. + Examples include books, letters, dissertations, + poems, newspapers, articles, archives of mailing + lists. Note that facsimiles or images of + texts are still of the genre Text. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Text-002 + http://dublincore.org/usage/terms/history/#Text-001 + http://dublincore.org/usage/terms/history/#Text-003 + + + + Text-001 + http://purl.org/dc/dcmitype/Text + http://purl.org/dc/dcmitype/ + Text + + A text is a resource whose content is primarily + words for reading. For example - books, letters, + dissertations, poems, newspapers, articles, + archives of mailing lists. Note that facsimiles + or images of texts are still of the genre text. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Text-001 + http://dublincore.org/usage/terms/history/#Text-002 + + + + PhysicalObject-003 + http://purl.org/dc/dcmitype/PhysicalObject + http://purl.org/dc/dcmitype/ + PhysicalObject + + An inanimate, three-dimensional object or substance. + Note that digital representations of, or surrogates for, these objects should use Image, Text or one of the other types. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2002-07-13 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#PhysicalObject-003 + http://dublincore.org/usage/terms/history/#PhysicalObject-002 + + + + PhysicalObject-002 + http://purl.org/dc/dcmitype/PhysicalObject + http://purl.org/dc/dcmitype/ + PhysicalObject + + An inanimate, three-dimensional object or substance. + Note that digital representations of, or surrogates for, + these objects should use Image, Text or one of the other + types. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2002-07-13 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#PhysicalObject-002 + http://dublincore.org/usage/terms/history/#PhysicalObject-001 + http://dublincore.org/usage/terms/history/#PhysicalObject-003 + + + + PhysicalObject-001 + http://purl.org/dc/dcmitype/PhysicalObject + http://purl.org/dc/dcmitype/ + PhysicalObject + + An inanimate, three-dimensional object or substance. + For example -- a computer, the great pyramid, a + sculpture. Note that digital representations + of, or surrogates for, these things should use Image, + Text or one of the other types. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#PhysicalObject-001 + http://dublincore.org/usage/terms/history/#PhysicalObject-002 + + + + StillImage-003 + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/ + StillImage + + A static visual representation. + Examples include paintings, drawings, graphic designs, plans and maps. Recommended best practice is to assign the type Text to images of textual materials. Instances of the type Still Image must also be describable as instances of the broader type Image. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/terms/history/#StillImage-003 + http://dublincore.org/usage/terms/history/#StillImage-002 + + + + StillImage-002 + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/ + StillImage + + A static visual representation. + Examples include paintings, drawings, + graphic designs, plans and maps. Recommended + best practice is to assign the type Text to + images of textual materials. Instances of the + type Still Image must also be describable as + instances of the broader type Image. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + 2006-08-28 + http://dublincore.org/usage/terms/history/#StillImage-002 + http://dublincore.org/usage/terms/history/#StillImage-001 + http://dublincore.org/usage/terms/history/#StillImage-003 + + + + StillImage-001 + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/ + StillImage + + A static visual representation. Examples of + still images are: paintings, drawings, graphic designs, + plans and maps. + Recommended best practice is to assign the type + "text" to images of textual materials. Instances of + the type "Still Image" must also be describable as + instances of the broader type "Image". + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2003-02 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + http://dublincore.org/usage/terms/history/#StillImage-001 + http://dublincore.org/usage/terms/history/#StillImage-002 + + + + MovingImage-003 + http://purl.org/dc/dcmitype/MovingImage + http://purl.org/dc/dcmitype/ + MovingImage + + A series of visual representations imparting an impression of motion when shown in succession. + Examples include animations, movies, television programs, videos, zoetropes, or visual output from a simulation. Instances of the type Moving Image must also be describable as instances of the broader type Image. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/terms/history/#MovingImage-003 + http://dublincore.org/usage/terms/history/#MovingImage-002 + + + + MovingImage-002 + http://purl.org/dc/dcmitype/MovingImage + http://purl.org/dc/dcmitype/ + MovingImage + + A series of visual representations imparting + an impression of motion when shown in succession. + Examples include animations, movies, television programs, + videos, zoetropes, or visual output from a simulation. + Instances of the type Moving Image must also be describable + as instances of the broader type Image. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + 2006-08-28 + http://dublincore.org/usage/terms/history/#MovingImage-002 + http://dublincore.org/usage/terms/history/#MovingImage-001 + http://dublincore.org/usage/terms/history/#MovingImage-003 + + + + MovingImage-001 + http://purl.org/dc/dcmitype/MovingImage + http://purl.org/dc/dcmitype/ + MovingImage + + A series of visual representations that, + when shown in succession, impart an impression + of motion. Examples of moving images are: + animations, movies, television programs, + videos, zoetropes, or visual output from + a simulation. + Instances of the type "Moving Image" must + also be describable as instances of the broader type "Image". + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2003-02 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + http://dublincore.org/usage/terms/history/#MovingImage-001 + http://dublincore.org/usage/terms/history/#MovingImage-002 + + + diff --git a/2007-12-18/headers/header-doc-dcterms.xml b/2007-12-18/headers/header-doc-dcterms.xml new file mode 100755 index 0000000..b7ceafe --- /dev/null +++ b/2007-12-18/headers/header-doc-dcterms.xml @@ -0,0 +1,19 @@ + + +

+ DCMI Metadata Terms + mailto:dc-usage@jiscmail.ac.uk + + http://dublincore.org/documents/2008/01/14/dcmi-terms/ + 2008-01-14 + + http://dublincore.org/documents/dcmi-terms/ + http://dublincore.org/documents/2006/12/18/dcmi-terms/ + + http://dublincore.org/resources/translations/ + This is a DCMI Recommendation. + + This document is an up-to-date specification of all metadata terms maintained by the Dublin Core Metadata Initiative, including elements, element refinements, encoding schemes, and vocabulary terms (the DCMI Type Vocabulary). + +

+ diff --git a/2007-12-18/headers/header-doc-dctype.xml b/2007-12-18/headers/header-doc-dctype.xml new file mode 100755 index 0000000..678cdeb --- /dev/null +++ b/2007-12-18/headers/header-doc-dctype.xml @@ -0,0 +1,18 @@ + + +

+ DCMI Type Vocabulary + mailto:dc-usage@jiscmail.ac.uk + + http://dublincore.org/documents/2008/01/14/dcmi-type-vocabulary/ + 2008-01-14 + + http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/documents/2006/08/28/dcmi-type-vocabulary/ + Not applicable + http://dublincore.org/resources/translations/ + This is a DCMI Recommendation. + + The DCMI Type Vocabulary provides a general, cross-domain list of approved terms that may be used as values for the Resource Type element to identify the genre of a resource. The terms documented here are also included in the more comprehensive document "DCMI Metadata Terms" at http://dublincore.org/documents/dcmi-terms/. + +

diff --git a/2007-12-18/headers/header-doc-history.xml b/2007-12-18/headers/header-doc-history.xml new file mode 100755 index 0000000..177e380 --- /dev/null +++ b/2007-12-18/headers/header-doc-history.xml @@ -0,0 +1,18 @@ + + +

+ DCMI Metadata Terms: A complete historical record + mailto:dc-usage@jiscmail.ac.uk + + http://dublincore.org/usage/terms/history/2008/01/14/ + 2008-01-14 + + http://dublincore.org/usage/terms/history/ + http://dublincore.org/usage/terms/history/2006/12/18/ + Not applicable + http://dublincore.org/resources/translations/ + This is a DCMI Recommendation. + + This document is a consolidated, historically complete, and updated representation of all Elements, Element Refinements, Encoding Schemes, and Vocabulary Terms in DCMI-maintained namespaces in all of their historical versions both current and superseded. While this document may be useful for tracking changes in the status and attributes of terms over time, most users will need just "the latest" information, which is held in the document "DCMI Metadata Terms" at http://dublincore.org/usage/documents/dcmi-terms/. + +

diff --git a/2007-12-18/headers/header-rdf-dcam.xml b/2007-12-18/headers/header-rdf-dcam.xml new file mode 100755 index 0000000..3be81fa --- /dev/null +++ b/2007-12-18/headers/header-rdf-dcam.xml @@ -0,0 +1,7 @@ + + +

+ DCMI Namespace for metadata terms related to the DCMI Abstract Model + The Dublin Core Metadata Initiative + 2008-01-14 +

diff --git a/2007-12-18/headers/header-rdf-dcelements.xml b/2007-12-18/headers/header-rdf-dcelements.xml new file mode 100755 index 0000000..57f535c --- /dev/null +++ b/2007-12-18/headers/header-rdf-dcelements.xml @@ -0,0 +1,7 @@ + + +

+ DCMI Namespace for the Dublin Core Metadata Element Set, Version 1.1 + The Dublin Core Metadata Initiative + 2008-01-14 +

diff --git a/2007-12-18/headers/header-rdf-dcterms.xml b/2007-12-18/headers/header-rdf-dcterms.xml new file mode 100755 index 0000000..b0bb898 --- /dev/null +++ b/2007-12-18/headers/header-rdf-dcterms.xml @@ -0,0 +1,7 @@ + + +

+ DCMI Namespace for metadata terms in the http://purl.org/dc/terms/ namespace + The Dublin Core Metadata Initiative + 2008-01-14 +

diff --git a/2007-12-18/headers/header-rdf-dctype.xml b/2007-12-18/headers/header-rdf-dctype.xml new file mode 100755 index 0000000..2be2b92 --- /dev/null +++ b/2007-12-18/headers/header-rdf-dctype.xml @@ -0,0 +1,7 @@ + + +

+ DCMI Namespace for metadata terms of the DCMI Type Vocabulary + The Dublin Core Metadata Initiative + 2008-01-14 +

diff --git a/2007-12-18/headers/intro.dcmi-terms.xsl b/2007-12-18/headers/intro.dcmi-terms.xsl new file mode 100755 index 0000000..b434ab0 --- /dev/null +++ b/2007-12-18/headers/intro.dcmi-terms.xsl @@ -0,0 +1,323 @@ + + + + + + +

+This document is an up-to-date, authoritative specification +of all metadata terms maintained by the Dublin Core Metadata +Initiative. Included are the fifteen terms of the Dublin Core +Metadata Element Set, which have also been published as IETF +RFC 5013 [RFC5013], ANSI/NISO Standard +Z39.85-2007 [NISOZ3985], and ISO +Standard 15836-21003 [ISO15836]. + +

+Each term is specified with the following minimal set of attributes: +

+ + + + + + + + + + + +
+Name: + +A token appended to the URI of a DCMI namespace to create the URI of the term. +
+Label: + +The human-readable label assigned to the term. +
+URI: + +The Uniform Resource Identifier used to uniquely identify a term. +
+Definition: + +A statement that represents the concept and essential nature of the term. +
+Type of Term: + +The type of term as described in the DCMI Abstract Model [DCAM]. +
+ +

+Where applicable, the following attributes provide additional information about a term: +

+ + + + + + + + + + + + + + + + + + + + + + + +
+Comment: + +Additional information about the term or its application. +
+See: + +Authoritative documentation related to the term. +
+References: + +A resource referenced in the Definition or Comment. +
+Refines: + +A Property of which the described term is a Sub-Property. +
+Broader Than: + +A Class of which the described term is a Super-Class. +
+Narrower Than: + +A Class of which the described term is a Sub-Class. +
+Has Domain: + +A Class of which a resource described by the term is an Instance. +
+Has Range: + +A Class of which a value described by the term is an Instance. +
+Member Of: + +An enumerated set of resources (Vocabulary Encoding Scheme) of which the term is a Member. +
+Instance Of: + +A Class of which the described term is an instance. +
+Version: + +A specific historical description of a term. +
+ + +

+This documentation is maintained by the DCMI Usage +Board in accordance with the DCMI Namespace Policy +[NAMESPACE]. The namespace policy +says that DCMI terms are identified using Uniform Resource +Identifiers (URIs). In accordance with the principle that +distinct URIs should be assigned to distinct resources, the +policy sets limits on the range of editorial changes that +may allowably be made to the official labels, definitions, +and usage comments associated with DCMI terms. By policy, any +changes of meaning judged "likely to have a substantial impact +on either machine processing of DCMI terms or the functional +semantics of the terms" must trigger the creation of a new, +distinct term with a new, distinct URI. +For further information about the change history +and the corresponding Usage Board decisions, please +consult the document "DCMI Metadata Terms: A complete +historical record" [HISTORY]. + +

+The current release of "DCMI Metadata Terms" reflects editorial +changes approved since December 2006, notably:

    +
  • improved definitions, descriptive labels, and usage comments,
  • +
  • differentiation of Encoding Schemes between Syntax Encoding +Schemes and Vocabulary Encoding Schemes, with clarified definitions,
  • +
  • updated references to standards maintained by the Internet +Engineering Task Force and the International Organization for +Standardization (ISO),
  • +
  • two new terms related to the DCMI Abstract Model [DCAM],
  • +
  • clarification in the DCMI Abstract Model that a Vocabulary Encoding +Scheme is an "enumerated set of resources" (such as the DCMI Type +Vocabulary, a set of classes), and
  • +
  • the specification of formal domains and ranges (and in some +cases, subproperty relations) for DCMI properties, as discussed below.
  • +
+These changes are described more fully in the +documents "Revisions to DCMI Metadata Terms" [REVISIONS] and "Domains and Ranges for +DCMI Properties" [DOMAINS]. + +

+Formal domains and ranges specify what kind of described +resources and value resources are associated with a given +property. Domains and ranges express the meanings implicit in +natural-language definitions in an explicit form that is usable +for the automatic processing of logical inferences. +When a given property is encountered, an inferencing application +may use the domains and ranges assigned by DCMI to that property +in order to make inferences about the resources described thereby. + +

+So as not to affect the conformance of existing implementations +of "simple Dublin Core" in RDF, domains and ranges have +not been specified for the fifteen properties of the dc: +namespace (http://purl.org/dc/elements/1.1/). Rather, +fifteen new properties with "names" identical to those of +DCMES Version 1.1 have been created in the dcterms: namespace +(http://purl.org/dc/terms/). These fifteen new properties +have been defined as subproperties of the corresponding +properties of DCMES Version 1.1 and assigned domains and +ranges as outlined in this document. + +

+Implementers may freely choose to use these fifteen properties +either in their legacy dc: variant (e.g., dc:creator) or +in the dcterms: variant (e.g., dcterms:creator) depending +on application requirements. The RDF schemas of +the DCMI namespaces describe the subproperty relation of +dcterms:creator to dc:creator for use by Semantic +Web-aware applications. Over time, however, implementers are +encouraged to use the semantically more precise dcterms: +properties, as they more fully follow emerging notions of +best practice for machine-processable metadata. + +

+This document reflects the terminology used in the revised DCMI Abstract +Model approved as a DCMI Recommendation in 2007 [DCAM]. +A table comparing the two terminologies is presented below. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
DCMI Grammatical Principles [DCGRAM]DCMI Abstract Model [DCAM]
vocabulary term +resource
element +property or element
element refinement +property with sub-property of relation
encoding scheme +syntax encoding scheme or vocabulary encoding scheme
syntax encoding scheme +syntax encoding scheme
qualifier +property with sub-property of relation, syntax encoding scheme, or vocabulary encoding scheme
vocabulary encoding scheme +vocabulary encoding scheme
+ +

Legacy terminology compared

+ + +

+DCMI maintains a Web page with pointers to known translations +of semantic specifications and related DCMI documents [TRANSLATIONS] + +

+

References

+ + + + + + + + + + + + + + + + + + + + + + + +
+ [DCAM] + +http://dublincore.org/documents/2007/06/04/abstract-model/ +
+ [DCMES-CHANGES] + +http://dublincore.org/usage/decisions/2006/2006-03.dcmes-changes.shtml +
+ [DCGRAM] + +http://dublincore.org/usage/documents/principles/ +
+ [DOMAINS] + +http://dublincore.org/documents/2008/01/14/domain-range/ +
+ [HISTORY] + +http://dublincore.org/usage/terms/history/ +
+ [ISO15836] + +http://www.niso.org/international/SC4/n515.pdf +
+ [NAMESPACE] + +http://dublincore.org/documents/dcmi-namespace/ +
+ [NISOZ3985] + +http://www.niso.org/standards/resources/Z39-85-2007.pdf +
+ [RFC5013] + +http://www.ietf.org/rfc/rfc5013.txt +
+ [TRANSLATIONS] + +http://dublincore.org/resources/translations/ +
+
+
+ diff --git a/2007-12-18/headers/intro.history.xsl b/2007-12-18/headers/intro.history.xsl new file mode 100755 index 0000000..738ca48 --- /dev/null +++ b/2007-12-18/headers/intro.history.xsl @@ -0,0 +1,86 @@ + + + + + + +

Introduction

+ +

This document is an authoritative specification of +all metadata terms maintained by the Dublin Core Metadata +Initiative in all of their historical versions. + +

Most users will not need the historical detail presented +here and should instead consult the document "DCMI Metadata +Terms", which presents only the most current information on +terms [TERMS]. In addition to the attributes +used to describe terms in "DCMI Metadata Terms" [TERMS], +this document includes additional information related to the versioning +history of individual terms: + +

+ + + + + + + + + + + + + + + + +
+Namespace: + +The DCMI Namespace within which the term is defined. +
+Date Issued: + +Date on which a term was first declared. +
+Date Modified: + +Date on which a term description was subsequently modified. +
+Decision: + +A Usage Board decision with regard to a description of a term. +
+Replaces: + +The immediately precedent historical description of a term. +
+Is Replaced By: + +The immediately subsequent historical description of a term. +
+Status: + +Status assigned to the term by the DCMI Usage Board. +
+Qualifies: + +A term qualified by an Encoding Scheme. (This is no longer used as of 2008-01-14.) +
+ +

+

References

+ + + + +
+ [TERMS] + +http://dublincore.org/documents/dcmi-terms/ +
+ +
+
diff --git a/2007-12-18/xmldata/dcam.xml b/2007-12-18/xmldata/dcam.xml new file mode 100755 index 0000000..539297e --- /dev/null +++ b/2007-12-18/xmldata/dcam.xml @@ -0,0 +1,37 @@ + + + + + + memberOf-001 + memberOf + dcam-memberOf + http://purl.org/dc/dcam/memberOf + http://purl.org/dc/dcam/ + + A relationship between a resource and a vocabulary encoding scheme which indicates that the resource is a member of a set. + http://dublincore.org/documents/2007/06/04/abstract-model/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#memberOf-001 + + + + VocabularyEncodingScheme-001 + VocabularyEncodingScheme + dcam-VocabularyEncodingScheme + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://purl.org/dc/dcam/ + + An enumerated set of resources. + http://dublincore.org/documents/2007/06/04/abstract-model/ + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#VocabularyEncodingScheme-001 + + + diff --git a/2007-12-18/xmldata/dcelements.xml b/2007-12-18/xmldata/dcelements.xml new file mode 100755 index 0000000..bc212b1 --- /dev/null +++ b/2007-12-18/xmldata/dcelements.xml @@ -0,0 +1,1939 @@ + + + + + + title-006 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + title + elements-title + + A name given to the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#title-006 + http://dublincore.org/usage/terms/history/#title-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + title-005 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + title + + A name given to the resource. + Typically, a Title will be a name by which + the resource is formally known. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#title-005 + http://dublincore.org/usage/terms/history/#title-004 + http://dublincore.org/usage/terms/history/#title-006 + + + + title-004 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + title + + A name given to the resource. + Typically, a Title will be a name by which the resource is + formally known. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#title-004 + http://dublincore.org/usage/terms/history/#title-003 + http://dublincore.org/usage/terms/history/#title-005 + + + + title-003 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + Title + + A name given to the resource. + Typically, a Title will be a name by which the resource is + formally known. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#title-003 + http://dublincore.org/usage/terms/history/#title-002 + http://dublincore.org/usage/terms/history/#title-004 + + + + title-002 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + Title + + A name given to the resource. + Typically, a Title will be a name by which the resource is + formally known. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#title-002 + http://dublincore.org/usage/terms/history/#title-003 + + + + title-001 + http://purl.org/dc/elements/1.0/title + http://purl.org/dc/elements/1.0/ + Title + + The name given to the resource, usually by the Creator or + Publisher. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#title-001 + n.a. + + + + creator-006 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + creator + elements-creator + + An entity primarily responsible for making the resource. + Examples of a Creator include a person, an organization, or a service. Typically, the name of a Creator should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#creator-006 + http://dublincore.org/usage/terms/history/#creator-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + creator-005 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + creator + + An entity primarily responsible for making + the resource. + Examples of a Creator include a person, an + organization, or a service. Typically, the name + of a Creator should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#creator-005 + http://dublincore.org/usage/terms/history/#creator-004 + http://dublincore.org/usage/terms/history/#creator-006 + + + + creator-004 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + creator + + An entity primarily responsible for making the content + of the resource. + Examples of a Creator include a person, an organisation, + or a service. Typically, the name of a Creator should + be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#creator-004 + http://dublincore.org/usage/terms/history/#creator-003 + http://dublincore.org/usage/terms/history/#creator-005 + + + + creator-003 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + Creator + + An entity primarily responsible for making the content + of the resource. + Examples of a Creator include a person, an organisation, + or a service. Typically, the name of a Creator should + be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#creator-003 + http://dublincore.org/usage/terms/history/#creator-002 + http://dublincore.org/usage/terms/history/#creator-004 + + + + creator-002 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + Creator + + An entity primarily responsible for making the content of + the resource. + Examples of a Creator include a person, an organisation, + or a service. Typically, the name of a Creator should be + used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#creator-002 + http://dublincore.org/usage/terms/history/#creator-003 + + + + creator-001 + http://purl.org/dc/elements/1.0/creator + http://purl.org/dc/elements/1.0/ + Creator + + The person or organization primarily responsible for + creating the intellectual content of the resource. For + example, authors in the case of written documents, + artists, photographers, or illustrators in the case of + visual resources. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#creator-001 + n.a. + + + + subject-006 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + subject + elements-subject + + The topic of the resource. + Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary. To describe the spatial or temporal topic of the resource, use the Coverage element. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#subject-006 + http://dublincore.org/usage/terms/history/#subject-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + subject-005 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + subject + + The topic of the resource. + Typically, the topic will be represented using + keywords, key phrases, or classification codes. + Recommended best practice is to use a controlled + vocabulary. To describe the spatial or temporal + topic of the resource, use the Coverage element. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#subject-005 + http://dublincore.org/usage/terms/history/#subject-004 + http://dublincore.org/usage/terms/history/#subject-006 + + + + subject-004 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + subject + + The topic of the content of the resource. + Typically, a Subject will be expressed as keywords, + key phrases or classification codes that describe a topic + of the resource. Recommended best practice is to select + a value from a controlled vocabulary or formal + classification scheme. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#subject-004 + http://dublincore.org/usage/terms/history/#subject-003 + http://dublincore.org/usage/terms/history/#subject-005 + + + + subject-003 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + Subject + + The topic of the content of the resource. + Typically, a Subject will be expressed as keywords, + key phrases or classification codes that describe a topic + of the resource. Recommended best practice is to select + a value from a controlled vocabulary or formal + classification scheme. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#subject-003 + http://dublincore.org/usage/terms/history/#subject-002 + http://dublincore.org/usage/terms/history/#subject-004 + + + + subject-002 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + Subject + + The topic of the content of the resource. + Typically, a Subject will be expressed as keywords, + key phrases or classification codes that describe a topic + of the resource. Recommended best practice is to select + a value from a controlled vocabulary or formal + classification scheme. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#subject-002 + http://dublincore.org/usage/terms/history/#subject-003 + + + + subject-001 + http://purl.org/dc/elements/1.0/subject + http://purl.org/dc/elements/1.0/ + Subject + + The topic of the resource. Typically, subject will be + expressed as keywords or phrases that describe the subject + or content of the resource. The use of controlled + vocabularies and formal classification schemas is + encouraged. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#subject-001 + n.a. + + + + description-006 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + description + elements-description + + An account of the resource. + Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#description-006 + http://dublincore.org/usage/terms/history/#description-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + description-005 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + description + + An account of the resource. + Description may include but is not limited to: + an abstract, a table of contents, a graphical + representation, or a free-text account of + the resource. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#description-005 + http://dublincore.org/usage/terms/history/#description-004 + http://dublincore.org/usage/terms/history/#description-006 + + + + description-004 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + description + + An account of the content of the resource. + Description may include but is not limited to: an abstract, + table of contents, reference to a graphical representation + of content or a free-text account of the content. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#description-004 + http://dublincore.org/usage/terms/history/#description-003 + http://dublincore.org/usage/terms/history/#description-005 + + + + description-003 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + Description + + An account of the content of the resource. + Description may include but is not limited to: an abstract, + table of contents, reference to a graphical representation + of content or a free-text account of the content. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#description-003 + http://dublincore.org/usage/terms/history/#description-002 + http://dublincore.org/usage/terms/history/#description-004 + + + + description-002 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + Description + + An account of the content of the resource. + Description may include but is not limited to: an abstract, + table of contents, reference to a graphical representation + of content or a free-text account of the content. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#description-002 + http://dublincore.org/usage/terms/history/#description-003 + + + + description-001 + http://purl.org/dc/elements/1.0/description + http://purl.org/dc/elements/1.0/ + Description + + A textual description of the content of the resource, + including abstracts in the case of document-like objects or + content descriptions in the case of visual resources. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#description-001 + n.a. + + + + publisher-006 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + publisher + elements-publisher + + An entity responsible for making the resource available. + Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#publisher-006 + http://dublincore.org/usage/terms/history/#publisher-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + publisher-005 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + publisher + + An entity responsible for making the resource + available. + Examples of a Publisher include a person, an + organization, or a service. Typically, the name of + a Publisher should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#publisher-005 + http://dublincore.org/usage/terms/history/#publisher-004 + http://dublincore.org/usage/terms/history/#publisher-006 + + + + publisher-004 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + publisher + + An entity responsible for making the resource available + Examples of a Publisher include a person, an organisation, + or a service. + Typically, the name of a Publisher should be used to + indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#publisher-004 + http://dublincore.org/usage/terms/history/#publisher-003 + http://dublincore.org/usage/terms/history/#publisher-005 + + + + publisher-003 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + Publisher + + An entity responsible for making the resource available + Examples of a Publisher include a person, an organisation, + or a service. + Typically, the name of a Publisher should be used to + indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#publisher-003 + http://dublincore.org/usage/terms/history/#publisher-002 + http://dublincore.org/usage/terms/history/#publisher-004 + + + + publisher-002 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + Publisher + + An entity responsible for making the resource available. + Examples of a Publisher include a person, an organisation, + or a service. + Typically, the name of a Publisher should be used to + indicate the entity. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#publisher-002 + http://dublincore.org/usage/terms/history/#publisher-003 + + + + publisher-001 + http://purl.org/dc/elements/1.0/publisher + http://purl.org/dc/elements/1.0/ + Publisher + + The entity responsible for making the resource available + in its present form, such as a publishing house, a + university department, or a corporate entity. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#publisher-001 + n.a. + + + + contributor-006 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + contributor + elements-contributor + + An entity responsible for making contributions to the resource. + Examples of a Contributor include a person, an organization, or a service. Typically, the name of a Contributor should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#contributor-006 + http://dublincore.org/usage/terms/history/#contributor-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + contributor-005 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + contributor + + An entity responsible for making + contributions to the resource. + Examples of a Contributor include a person, + an organization, or a service. Typically, the + name of a Contributor should be used to indicate + the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#contributor-005 + http://dublincore.org/usage/terms/history/#contributor-004 + http://dublincore.org/usage/terms/history/#contributor-006 + + + + contributor-004 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + contributor + + An entity responsible for making contributions to the + content of the resource. + Examples of a Contributor include a person, an + organisation, or a service. Typically, the name of a + Contributor should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#contributor-004 + http://dublincore.org/usage/terms/history/#contributor-003 + http://dublincore.org/usage/terms/history/#contributor-005 + + + + contributor-003 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + Contributor + + An entity responsible for making contributions to the + content of the resource. + Examples of a Contributor include a person, an + organisation, or a service. Typically, the name of a + Contributor should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#contributor-003 + http://dublincore.org/usage/terms/history/#contributor-002 + http://dublincore.org/usage/terms/history/#contributor-004 + + + + contributor-002 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + Contributor + + An entity responsible for making contributions to the + content of the resource. + Examples of a Contributor include a person, an + organisation, or a service. Typically, the name of a + Contributor should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#contributor-002 + http://dublincore.org/usage/terms/history/#contributor-003 + + + + contributor-001 + http://purl.org/dc/elements/1.0/contributor + http://purl.org/dc/elements/1.0/ + Contributor + + A person or organization not specified in a Creator + element who has made significant intellectual + contributions to the resource but whose contribution + is secondary to any person or organization specified + in a Creator element (for example, editor, transcriber, + and illustrator). + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#contributor-001 + n.a. + + + + date-006 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + date + elements-date + + A point or period of time associated with an event in the lifecycle of the resource. + Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#date-006 + http://dublincore.org/usage/terms/history/#date-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + date-005 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + date + + A point or period of time associated with an + event in the lifecycle of the resource. + Date may be used to express temporal information + at any level of granularity. Recommended best + practice is to use an encoding scheme, such as + the W3CDTF profile of ISO 8601 [W3CDTF]. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#date-005 + http://dublincore.org/usage/terms/history/#date-004 + http://dublincore.org/usage/terms/history/#date-006 + + + + date-004 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + date + + A date associated with an event in the life cycle of the + resource. + Typically, Date will be associated with the creation or + availability of the resource. Recommended best practice + for encoding the date value is defined in a profile of + ISO 8601 [W3CDTF] and follows the YYYY-MM-DD format. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#date-004 + http://dublincore.org/usage/terms/history/#date-003 + http://dublincore.org/usage/terms/history/#date-005 + + + + date-003 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + Date + + A date associated with an event in the life cycle of the + resource. + Typically, Date will be associated with the creation or + availability of the resource. Recommended best practice + for encoding the date value is defined in a profile of + ISO 8601 [W3CDTF] and follows the YYYY-MM-DD format. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#date-003 + http://dublincore.org/usage/terms/history/#date-002 + http://dublincore.org/usage/terms/history/#date-004 + + + + date-002 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + Date + + A date associated with an event in the life cycle of the + resource. + Typically, Date will be associated with the creation or + availability of the resource. Recommended best practice + for encoding the date value is defined in a profile of + ISO 8601 [W3CDTF] and follows the YYYY-MM-DD format. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#date-002 + http://dublincore.org/usage/terms/history/#date-003 + + + + date-001 + http://purl.org/dc/elements/1.0/date + http://purl.org/dc/elements/1.0/ + Date + + A date associated with the creation or availability of + the resource. Recommended best practice is defined in + a profile of ISO 8601 [W3CDTF] that includes (among + others) dates of the forms YYYY and YYYY-MM-DD. In this + scheme, the date 1994-11-05 corresponds to November 5, + 1994. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#date-001 + n.a. + + + + type-006 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + type + elements-type + + The nature or genre of the resource. + Recommended best practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [DCMITYPE]. To describe the file format, physical medium, or dimensions of the resource, use the Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#type-006 + http://dublincore.org/usage/terms/history/#type-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + type-005 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + type + + The nature or genre of the resource. + Recommended best practice is to use a controlled + vocabulary such as the DCMI Type Vocabulary + [DCMITYPE]. To describe the file format, physical + medium, or dimensions of the resource, use the + Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#type-005 + http://dublincore.org/usage/terms/history/#type-004 + http://dublincore.org/usage/terms/history/#type-006 + + + + type-004 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + type + + The nature or genre of the content of the resource. + Type includes terms describing general categories, functions, + genres, or aggregation levels for content. Recommended best + practice is to select a value from a controlled vocabulary + (for example, the DCMI Type Vocabulary [DCMITYPE]). To + describe the physical or digital manifestation of the + resource, use the Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#type-004 + http://dublincore.org/usage/terms/history/#type-003 + http://dublincore.org/usage/terms/history/#type-005 + + + + type-003 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + Type + + The nature or genre of the content of the resource. + Type includes terms describing general categories, functions, + genres, or aggregation levels for content. Recommended best + practice is to select a value from a controlled vocabulary + (for example, the DCMI Type Vocabulary [DCMITYPE]). To + describe the physical or digital manifestation of the + resource, use the Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#type-003 + http://dublincore.org/usage/terms/history/#type-002 + http://dublincore.org/usage/terms/history/#type-004 + + + + type-002 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + Type + + The nature or genre of the content of the resource. + Type includes terms describing general categories, functions, + genres, or aggregation levels for content. Recommended best + practice is to select a value from a controlled vocabulary + (for example, the working draft list of Dublin Core Types + [DCT1]). To describe the physical or digital manifestation + of the resource, use the FORMAT element. + [DCT1] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#type-002 + http://dublincore.org/usage/terms/history/#type-003 + + + + type-001 + http://purl.org/dc/elements/1.0/type + http://purl.org/dc/elements/1.0/ + Type + + The category of the resource, such as home page, novel, + poem, working paper, technical report, essay, dictionary. + For the sake of interoperability, Type should be selected + from an enumerated list that is under development in the + workshop series. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#type-001 + n.a. + + + + format-007 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + format + elements-format + + The file format, physical medium, or dimensions of the resource. + Examples of dimensions include size and duration. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types [MIME]. + [MIME] http://www.iana.org/assignments/media-types/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#format-007 + http://dublincore.org/usage/terms/history/#format-006 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + format-006 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + format + + The file format, physical medium, or dimensions + of the resource. + Examples of dimensions include + size and duration. Recommended best practice is + to use a controlled vocabulary such as the list + of Internet Media Types [MIME]. + [MIME] http://www.iana.org/assignments/media-types/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#format-006 + http://dublincore.org/usage/terms/history/#format-005 + http://dublincore.org/usage/terms/history/#format-007 + + + + format-005 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + format + + The physical or digital manifestation of the resource. + Typically, Format may include the media-type or dimensions of + the resource. Format may be used to determine the software, + hardware or other equipment needed to display or operate the + resource. Examples of dimensions include size and duration. + Recommended best practice is to select a value from a + controlled vocabulary (for example, the list of Internet Media + Types [MIME] defining computer media formats). + [MIME] http://www.iana.org/assignments/media-types/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2004-12-17 + http://dublincore.org/usage/decisions/#Decision-2004-03 + http://dublincore.org/usage/terms/history/#format-005 + http://dublincore.org/usage/terms/history/#format-004 + http://dublincore.org/usage/terms/history/#format-006 + + + + format-004 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + format + + The physical or digital manifestation of the resource. + Typically, Format may include the media-type or dimensions of + the resource. Format may be used to determine the software, + hardware or other equipment needed to display or operate the + resource. Examples of dimensions include size and duration. + Recommended best practice is to select a value from a + controlled vocabulary (for example, the list of Internet Media + Types [MIME] defining computer media formats). + [MIME] http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#format-004 + http://dublincore.org/usage/terms/history/#format-003 + http://dublincore.org/usage/terms/history/#format-005 + + + + format-003 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + Format + + The physical or digital manifestation of the resource. + Typically, Format may include the media-type or dimensions of + the resource. Format may be used to determine the software, + hardware or other equipment needed to display or operate the + resource. Examples of dimensions include size and duration. + Recommended best practice is to select a value from a + controlled vocabulary (for example, the list of Internet Media + Types [MIME] defining computer media formats). + [MIME] http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#format-003 + http://dublincore.org/usage/terms/history/#format-002 + http://dublincore.org/usage/terms/history/#format-004 + + + + format-002 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + Format + + The physical or digital manifestation of the resource. + Typically, Format may include the media-type or dimensions of + the resource. Format may be used to determine the software, + hardware or other equipment needed to display or operate the + resource. Examples of dimensions include size and duration. + Recommended best practice is to select a value from a + controlled vocabulary (for example, the list of Internet Media + Types [MIME] defining computer media formats). + [MIME] http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#format-002 + http://dublincore.org/usage/terms/history/#format-003 + + + + format-001 + http://purl.org/dc/elements/1.0/format + http://purl.org/dc/elements/1.0/ + Format + + The data format and, optionally, dimensions (e.g., size, + duration) of the resource. The format is used to identify + the software and possibly hardware that might be needed to + display or operate the resource. For the sake of + interoperability, the format should be selected from an + enumerated list that is currently under development in the + workshop series. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#format-001 + n.a. + + + + identifier-006 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + identifier + elements-identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#identifier-006 + http://dublincore.org/usage/terms/history/#identifier-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + identifier-005 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + identifier + + An unambiguous reference to the resource within + a given context. + Recommended best practice is to identify the + resource by means of a string conforming + to a formal identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#identifier-005 + http://dublincore.org/usage/terms/history/#identifier-004 + http://dublincore.org/usage/terms/history/#identifier-006 + + + + identifier-004 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means + of a string or number conforming to a formal identification + system. + Example formal identification systems include the Uniform + Resource Identifier (URI) (including the Uniform Resource + Locator (URL)), the Digital Object Identifier (DOI) and the + International Standard Book Number (ISBN). + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#identifier-004 + http://dublincore.org/usage/terms/history/#identifier-003 + http://dublincore.org/usage/terms/history/#identifier-005 + + + + identifier-003 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + Identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means + of a string or number conforming to a formal identification + system. + Example formal identification systems include the Uniform + Resource Identifier (URI) (including the Uniform Resource + Locator (URL)), the Digital Object Identifier (DOI) and the + International Standard Book Number (ISBN). + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#identifier-003 + http://dublincore.org/usage/terms/history/#identifier-002 + http://dublincore.org/usage/terms/history/#identifier-004 + + + + identifier-002 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + Identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means + of a string or number conforming to a formal identification + system. + Example formal identification systems include the Uniform + Resource Identifier (URI) (including the Uniform Resource + Locator (URL)), the Digital Object Identifier (DOI) and the + International Standard Book Number (ISBN). + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#identifier-002 + http://dublincore.org/usage/terms/history/#identifier-003 + + + + identifier-001 + http://purl.org/dc/elements/1.0/identifier + http://purl.org/dc/elements/1.0/ + Identifier + + A string or number used to uniquely identify the resource. + Examples for networked resources include URLs and URNs (when + implemented). Other globally-unique identifiers, such as + International Standard Book Numbers (ISBN) or other formal + names would also be candidates for this element. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#identifier-001 + n.a. + + + + source-006 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + source + elements-source + + A related resource from which the described resource is derived. + The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#source-006 + http://dublincore.org/usage/terms/history/#source-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + source-005 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + source + + The resource from which the described + resource is derived. + The described resource may be derived from the + related resource in whole or in part. Recommended + best practice is to identify the related resource + by means of a string conforming to a formal + identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#source-005 + http://dublincore.org/usage/terms/history/#source-004 + http://dublincore.org/usage/terms/history/#source-006 + + + + source-004 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + source + + A reference to a resource from which the present resource + is derived. + The present resource may be derived from the Source resource + in whole or in part. Recommended best practice is to reference + the resource by means of a string or number conforming to a + formal identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#source-004 + http://dublincore.org/usage/terms/history/#source-003 + http://dublincore.org/usage/terms/history/#source-005 + + + + source-003 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + Source + + A reference to a resource from which the present resource + is derived. + The present resource may be derived from the Source resource + in whole or in part. Recommended best practice is to reference + the resource by means of a string or number conforming to a + formal identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#source-003 + http://dublincore.org/usage/terms/history/#source-002 + http://dublincore.org/usage/terms/history/#source-004 + + + + source-002 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + Source + + A reference to a resource from which the present resource + is derived. + The present resource may be derived from the Source resource + in whole or in part. Recommended best practice is to reference + the resource by means of a string or number conforming to a + formal identification system. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#source-002 + http://dublincore.org/usage/terms/history/#source-003 + + + + source-001 + http://purl.org/dc/elements/1.0/source + http://purl.org/dc/elements/1.0/ + Source + + Information about a second resource from which the present + resource is derived. While it is generally recommended that + elements contain information about the present resource + only, this element may contain metadata for the second + resource when it is considered important for discovery of + the present resource. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#source-001 + n.a. + + + + language-007 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + language + elements-language + + A language of the resource. + Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646]. + [RFC4646] http://www.ietf.org/rfc/rfc4646.txt + http://www.ietf.org/rfc/rfc4646.txt + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#language-007 + http://dublincore.org/usage/terms/history/#language-006 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + language-006 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + language + + A language of the resource. + Recommended best practice is to use a controlled + vocabulary such as RFC 3066 [RFC3066]. + [RFC3066] http://www.ietf.org/rfc/rfc3066.txt + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#language-006 + http://dublincore.org/usage/terms/history/#language-005 + http://dublincore.org/usage/terms/history/#language-007 + + + + language-005 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + language + + A language of the intellectual content of the resource. + Recommended best practice is to use RFC 3066 [RFC3066], + which, in conjunction with ISO 639 [ISO639], defines two- + and three-letter primary language tags with optional + subtags. Examples include "en" or "eng" for English, + "akk" for Akkadian, and "en-GB" for English used in the + United Kingdom. + [RFC3066] http://www.ietf.org/rfc/rfc3066.txt + [ISO639] http://www.loc.gov/standards/iso639-2/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#language-005 + http://dublincore.org/usage/terms/history/#language-004 + http://dublincore.org/usage/terms/history/#language-006 + + + + language-004 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + Language + + A language of the intellectual content of the resource. + Recommended best practice is to use RFC 3066 [RFC3066], + which, in conjunction with ISO 639 [ISO639], defines two- + and three-letter primary language tags with optional + subtags. Examples include "en" or "eng" for English, + "akk" for Akkadian, and "en-GB" for English used in the + United Kingdom. + [RFC3066] http://www.ietf.org/rfc/rfc3066.txt + [ISO639] http://www.loc.gov/standards/iso639-2/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#language-004 + http://dublincore.org/usage/terms/history/#language-003 + http://dublincore.org/usage/terms/history/#language-005 + + + + language-003 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + Language + + A language of the intellectual content of the resource. + Recommended best practice is to use RFC 3066 [RFC3066], + which, in conjunction with ISO 639 [ISO639], defines two- + and three-letter primary language tags with optional + subtags. Examples include "en" or "eng" for English, + "akk" for Akkadian, and "en-GB" for English used in the + United Kingdom. + [RFC3066] http://www.ietf.org/rfc/rfc3066.txt + [ISO639] http://www.loc.gov/standards/iso639-2/ + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 2001-05-21 + http://dublincore.org/usage/decisions/#Decision-2001-04 + http://dublincore.org/usage/terms/history/#language-003 + http://dublincore.org/usage/terms/history/#language-002 + http://dublincore.org/usage/terms/history/#language-004 + + + + language-002 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + Language + + A language of the intellectual content of the resource. + Recommended best practice for the values of the Language + element is defined by RFC 1766 [RFC1766] which includes + a two-letter Language Code (taken from the ISO 639 + standard [ISO639]), followed optionally, by a two-letter + Country Code (taken from the ISO 3166 standard [ISO3166]). + For example, 'en' for English, 'fr' for French, or + 'en-uk' for English used in the United Kingdom. + [RFC1766] http://www.ietf.org/rfc/rfc1766.txt + [ISO639] http://www.loc.gov/standards/iso639-2/ + [ISO3166] http://www.iso.org/iso/en/prods-services/iso3166ma/index.html + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#language-002 + http://dublincore.org/usage/terms/history/#language-003 + + + + language-001 + http://purl.org/dc/elements/1.0/language + http://purl.org/dc/elements/1.0/ + Language + + The language of the intellectual content of the resource. + Recommended best practice is defined in RFC 1766 [RFC1766]. + [RFC1766] http://www.ietf.org/rfc/rfc1766.txt + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#language-001 + n.a. + + + + relation-006 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + relation + elements-relation + + A related resource. + Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#relation-006 + http://dublincore.org/usage/terms/history/#relation-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + relation-005 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + relation + + A related resource. + Recommended best practice is to identify the + related resource by means of a string conforming + to a formal identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#relation-005 + http://dublincore.org/usage/terms/history/#relation-004 + http://dublincore.org/usage/terms/history/#relation-006 + + + + relation-004 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + relation + + A reference to a related resource. + Recommended best practice is to reference the resource by means + of a string or number conforming to a formal identification + system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#relation-004 + http://dublincore.org/usage/terms/history/#relation-003 + http://dublincore.org/usage/terms/history/#relation-005 + + + + relation-003 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + Relation + + A reference to a related resource. + Recommended best practice is to reference the resource by means + of a string or number conforming to a formal identification + system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#relation-003 + http://dublincore.org/usage/terms/history/#relation-002 + http://dublincore.org/usage/terms/history/#relation-004 + + + + relation-002 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + Relation + + A reference to a related resource. + Recommended best practice is to reference the resource by means + of a string or number conforming to a formal identification + system. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#relation-002 + http://dublincore.org/usage/terms/history/#relation-003 + + + + relation-001 + http://purl.org/dc/elements/1.0/relation + http://purl.org/dc/elements/1.0/ + Relation + + An identifier of a second resource and its relationship to + the present resource. This element is used to express + linkages among related resources. For the sake of + interoperability, relationships should be selected from an + enumerated list that is currently under development in the + workshop series. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#relation-001 + n.a. + + + + coverage-006 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + coverage + elements-coverage + + The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. + Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN]. Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#coverage-006 + http://dublincore.org/usage/terms/history/#coverage-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + coverage-005 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + coverage + + The spatial or temporal topic of the resource, the + spatial applicability of the resource, or the + jurisdiction under which the resource is relevant. + Spatial topic may be a named place or a location + specified by its geographic coordinates. Temporal + period may be a named period, date, or date + range. A jurisdiction may be a named administrative + entity or a geographic place to which the resource + applies. Recommended best practice is to use a + controlled vocabulary such as the Thesaurus of + Geographic Names [TGN]). Where appropriate, named + places or time periods can be used in preference + to numeric identifiers such as sets of coordinates + or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#coverage-005 + http://dublincore.org/usage/terms/history/#coverage-004 + http://dublincore.org/usage/terms/history/#coverage-006 + + + + coverage-004 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + coverage + + The extent or scope of the content of the resource. + Coverage will typically include spatial location (a place name + or geographic coordinates), temporal period (a period label, + date, or date range) or jurisdiction (such as a named + administrative entity). + Recommended best practice is to select a value from a + controlled vocabulary (for example, the Thesaurus of Geographic + Names [TGN]) and that, where appropriate, named places or time + periods be used in preference to numeric identifiers such as + sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#coverage-004 + http://dublincore.org/usage/terms/history/#coverage-003 + http://dublincore.org/usage/terms/history/#coverage-005 + + + + coverage-003 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + Coverage + + The extent or scope of the content of the resource. + Coverage will typically include spatial location (a place name + or geographic coordinates), temporal period (a period label, + date, or date range) or jurisdiction (such as a named + administrative entity). + Recommended best practice is to select a value from a + controlled vocabulary (for example, the Thesaurus of Geographic + Names [TGN]) and that, where appropriate, named places or time + periods be used in preference to numeric identifiers such as + sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#coverage-003 + http://dublincore.org/usage/terms/history/#coverage-002 + http://dublincore.org/usage/terms/history/#coverage-004 + + + + coverage-002 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + Coverage + + The extent or scope of the content of the resource. + Coverage will typically include spatial location (a place name + or geographic coordinates), temporal period (a period label, + date, or date range) or jurisdiction (such as a named + administrative entity). + Recommended best practice is to select a value from a + controlled vocabulary (for example, the Thesaurus of Geographic + Names [TGN]) and that, where appropriate, named places or time + periods be used in preference to numeric identifiers such as + sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#coverage-002 + http://dublincore.org/usage/terms/history/#coverage-003 + + + + coverage-001 + http://purl.org/dc/elements/1.0/coverage + http://purl.org/dc/elements/1.0/ + Coverage + + The spatial and/or temporal characteristics of the + intellectual content of the resource. Spatial coverage + refers to a physical region (e.g., celestial sector) using + place names or coordinates (e.g., longitude and latitude). + Temporal coverage refers to what the resource is about + rather than when it was created or made available (the + latter belonging in the Date element). Temporal coverage is + typically specified using named time periods (e.g., + Neolithic) or the same date/time format [W3CDTF] + as recommended for the Date element. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#coverage-001 + n.a. + + + + rights-006 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + rights + elements-rights + + Information about rights held in and over the resource. + Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#rights-006 + http://dublincore.org/usage/terms/history/#rights-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + rights-005 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + rights + + Information about rights held in and + over the resource. + Typically, rights information includes + a statement about various property rights + associated with the resource, including + intellectual property rights. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#rights-005 + http://dublincore.org/usage/terms/history/#rights-004 + http://dublincore.org/usage/terms/history/#rights-006 + + + + rights-004 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + rights + + Information about rights held in and over the resource. + Typically, a Rights element will contain a rights + management statement for the resource, or reference + a service providing such information. Rights information + often encompasses Intellectual Property Rights (IPR), + Copyright, and various Property Rights. + If the Rights element is absent, no assumptions can be made + about the status of these and other rights with respect to + the resource. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#rights-004 + http://dublincore.org/usage/terms/history/#rights-003 + http://dublincore.org/usage/terms/history/#rights-005 + + + + rights-003 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + Rights + + Information about rights held in and over the resource. + Typically, a Rights element will contain a rights + management statement for the resource, or reference + a service providing such information. Rights information + often encompasses Intellectual Property Rights (IPR), + Copyright, and various Property Rights. + If the Rights element is absent, no assumptions can be made + about the status of these and other rights with respect to + the resource. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#rights-003 + http://dublincore.org/usage/terms/history/#rights-002 + http://dublincore.org/usage/terms/history/#rights-004 + + + + rights-002 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + Rights + + Information about rights held in and over the resource. + Typically, a Rights element will contain a rights + management statement for the resource, or reference + a service providing such information. Rights information + often encompasses Intellectual Property Rights (IPR), + Copyright, and various Property Rights. + If the Rights element is absent, no assumptions can be made + about the status of these and other rights with respect to + the resource. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#rights-002 + http://dublincore.org/usage/terms/history/#rights-003 + + + + rights-001 + http://purl.org/dc/elements/1.0/rights + http://purl.org/dc/elements/1.0/ + Rights + + A rights management statement, an identifier that links + to a rights management statement, or an identifier that + links to a service providing information about rights + management for the resource. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#rights-001 + n.a. + + + + diff --git a/2007-12-18/xmldata/dcterms-classes.xml b/2007-12-18/xmldata/dcterms-classes.xml new file mode 100755 index 0000000..297e0ee --- /dev/null +++ b/2007-12-18/xmldata/dcterms-classes.xml @@ -0,0 +1,351 @@ + + + + + + Agent-001 + http://purl.org/dc/terms/Agent + http://purl.org/dc/terms/ + Agent + classes-Agent + + A resource that acts or has the power to act. + Examples of Agent include person, organization, and software agent. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/AgentClass + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Agent-001 + + + + AgentClass-001 + http://purl.org/dc/terms/AgentClass + http://purl.org/dc/terms/ + AgentClass + classes-AgentClass + + A group of agents. + Examples of Agent Class include groups seen as classes, such as students, women, charities, lecturers. + http://www.w3.org/2000/01/rdf-schema#Class + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#AgentClass-001 + + + + BibliographicResource-001 + http://purl.org/dc/terms/BibliographicResource + http://purl.org/dc/terms/ + BibliographicResource + classes-BibliographicResource + + A book, article, or other documentary resource. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#BibliographicResource-001 + + + + FileFormat-001 + http://purl.org/dc/terms/FileFormat + http://purl.org/dc/terms/ + FileFormat + classes-FileFormat + + A digital resource format. + Examples include the formats defined by the list of Internet Media Types. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/MediaType + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#FileFormat-001 + + + + Frequency-001 + http://purl.org/dc/terms/Frequency + http://purl.org/dc/terms/ + Frequency + classes-Frequency + + A rate at which something recurs. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Frequency-001 + + + + Jurisdiction-001 + http://purl.org/dc/terms/Jurisdiction + http://purl.org/dc/terms/ + Jurisdiction + classes-Jurisdiction + + The extent or range of judicial, law enforcement, or other authority. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/LocationPeriodOrJurisdiction + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Jurisdiction-001 + + + + LicenseDocument-001 + http://purl.org/dc/terms/LicenseDocument + http://purl.org/dc/terms/ + LicenseDocument + classes-LicenseDocument + + A legal document giving official permission to do something with a Resource. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/RightsStatement + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#LicenseDocument-001 + + + + LinguisticSystem-001 + http://purl.org/dc/terms/LinguisticSystem + http://purl.org/dc/terms/ + LinguisticSystem + classes-LinguisticSystem + + Examples include written, spoken, sign, and computer languages. + A system of signs, symbols, sounds, gestures, or rules used in communication. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#LinguisticSystem-001 + + + + Location-001 + http://purl.org/dc/terms/Location + http://purl.org/dc/terms/ + Location + classes-Location + + A spatial region or named place. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/LocationPeriodOrJurisdiction + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Location-001 + + + + LocationPeriodOrJurisdiction-001 + http://purl.org/dc/terms/LocationPeriodOrJurisdiction + http://purl.org/dc/terms/ + LocationPeriodOrJurisdiction + classes-LocationPeriodOrJurisdiction + + A location, period of time, or jurisdiction. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#LocationPeriodOrJurisdiction-001 + + + + MediaType-001 + http://purl.org/dc/terms/MediaType + http://purl.org/dc/terms/ + MediaType + classes-MediaType + + A file format or physical medium. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/MediaTypeOrExtent + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#MediaType-001 + + + + MediaTypeOrExtent-001 + http://purl.org/dc/terms/MediaTypeOrExtent + http://purl.org/dc/terms/ + MediaTypeOrExtent + classes-MediaTypeOrExtent + + A media type or extent. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#MediaTypeOrExtent-001 + + + + MethodOfInstruction-001 + http://purl.org/dc/terms/MethodOfInstruction + http://purl.org/dc/terms/ + MethodOfInstruction + classes-MethodOfInstruction + + A process that is used to engender knowledge, attitudes, and skills. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#MethodOfInstruction-001 + + + + MethodOfAccrual-001 + http://purl.org/dc/terms/MethodOfAccrual + http://purl.org/dc/terms/ + MethodOfAccrual + classes-MethodOfAccrual + + A method by which resources are added to a collection. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#MethodOfAccrual-001 + + + + PeriodOfTime-001 + http://purl.org/dc/terms/PeriodOfTime + http://purl.org/dc/terms/ + PeriodOfTime + classes-PeriodOfTime + + An interval of time that is named or defined by its start and end dates. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/LocationPeriodOrJurisdiction + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#PeriodOfTime-001 + + + + PhysicalMedium-001 + http://purl.org/dc/terms/PhysicalMedium + http://purl.org/dc/terms/ + PhysicalMedium + classes-PhysicalMedium + + A physical material or carrier. + Examples include paper, canvas, or DVD. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/MediaType + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#PhysicalMedium-001 + + + + PhysicalResource-001 + http://purl.org/dc/terms/PhysicalResource + http://purl.org/dc/terms/ + PhysicalResource + classes-PhysicalResource + + A material thing. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#PhysicalResource-001 + + + + Policy-001 + http://purl.org/dc/terms/Policy + http://purl.org/dc/terms/ + Policy + classes-Policy + + A plan or course of action by an authority, intended to influence and determine decisions, actions, and other matters. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Policy-001 + + + + ProvenanceStatement-001 + http://purl.org/dc/terms/ProvenanceStatement + http://purl.org/dc/terms/ + ProvenanceStatement + classes-ProvenanceStatement + + A statement of any changes in ownership and custody of a resource since its creation that are significant for its authenticity, integrity, and interpretation. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#ProvenanceStatement-001 + + + + RightsStatement-001 + http://purl.org/dc/terms/RightsStatement + http://purl.org/dc/terms/ + RightsStatement + classes-RightsStatement + + A statement about the intellectual property rights (IPR) held in or over a Resource, a legal document giving official permission to do something with a resource, or a statement about access rights. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#RightsStatement-001 + + + + SizeOrDuration-001 + http://purl.org/dc/terms/SizeOrDuration + http://purl.org/dc/terms/ + SizeOrDuration + classes-SizeOrDuration + + A dimension or extent, or a time taken to play or execute. + Examples include a number of pages, a specification of length, width, and breadth, or a period in hours, minutes, and seconds. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/MediaTypeOrExtent + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#SizeOrDuration-001 + + + + Standard-001 + http://purl.org/dc/terms/Standard + http://purl.org/dc/terms/ + Standard + classes-Standard + + A basis for comparison; a reference point against which other things can be evaluated. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Standard-001 + + + diff --git a/2007-12-18/xmldata/dcterms-properties.xml b/2007-12-18/xmldata/dcterms-properties.xml new file mode 100755 index 0000000..6322047 --- /dev/null +++ b/2007-12-18/xmldata/dcterms-properties.xml @@ -0,0 +1,2281 @@ + + + + + + titleT-001 + http://purl.org/dc/terms/title + http://purl.org/dc/terms/ + title + terms-title + + A name given to the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/title + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#titleT-001 + In current practice, this term is used primarily with literal values; however, there are important uses with non-literal values as well. As of December 2007, the DCMI Usage Board is leaving this range unspecified pending an investigation of options. + + + + creatorT-001 + http://purl.org/dc/terms/creator + http://purl.org/dc/terms/ + creator + terms-creator + + An entity primarily responsible for making the resource. + Examples of a Creator include a person, an organization, or a service. Typically, the name of a Creator should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/terms/contributor + http://purl.org/dc/terms/Agent + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#creatorT-001 + + + + subjectT-001 + http://purl.org/dc/terms/subject + http://purl.org/dc/terms/ + subject + terms-subject + + The topic of the resource. + Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary. To describe the spatial or temporal topic of the resource, use the Coverage element. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/subject + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#subjectT-001 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + descriptionT-001 + http://purl.org/dc/terms/description + http://purl.org/dc/terms/ + description + terms-description + + An account of the resource. + Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/description + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#descriptionT-001 + + + + publisherT-001 + http://purl.org/dc/terms/publisher + http://purl.org/dc/terms/ + publisher + terms-publisher + + An entity responsible for making the resource available. + Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/terms/Agent + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#publisherT-001 + + + + contributorT-001 + http://purl.org/dc/terms/contributor + http://purl.org/dc/terms/ + contributor + terms-contributor + + An entity responsible for making contributions to the resource. + Examples of a Contributor include a person, an organization, or a service. Typically, the name of a Contributor should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/terms/Agent + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#contributorT-001 + + + + dateT-001 + http://purl.org/dc/terms/date + http://purl.org/dc/terms/ + date + terms-date + + A point or period of time associated with an event in the lifecycle of the resource. + Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/date + http://www.w3.org/2000/01/rdf-schema#Literal + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#dateT-001 + + + + typeT-001 + http://purl.org/dc/terms/type + http://purl.org/dc/terms/ + type + terms-type + + The nature or genre of the resource. + Recommended best practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [DCMITYPE]. To describe the file format, physical medium, or dimensions of the resource, use the Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/type + http://www.w3.org/2000/01/rdf-schema#Class + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#typeT-001 + + + + formatT-001 + http://purl.org/dc/terms/format + http://purl.org/dc/terms/ + format + terms-format + + The file format, physical medium, or dimensions of the resource. + Examples of dimensions include size and duration. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types [MIME]. + [MIME] http://www.iana.org/assignments/media-types/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/terms/MediaTypeOrExtent + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#formatT-001 + + + + identifierT-001 + http://purl.org/dc/terms/identifier + http://purl.org/dc/terms/ + identifier + terms-identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/identifier + http://www.w3.org/2000/01/rdf-schema#Literal + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#identifierT-001 + + + + sourceT-001 + http://purl.org/dc/terms/source + http://purl.org/dc/terms/ + source + terms-source + + A related resource from which the described resource is derived. + The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/terms/relation + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#sourceT-001 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + languageT-001 + http://purl.org/dc/terms/language + http://purl.org/dc/terms/ + language + terms-language + + A language of the resource. + Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646]. + [RFC4646] http://www.ietf.org/rfc/rfc4646.txt + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/terms/LinguisticSystem + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#languageT-001 + + + + relationT-001 + http://purl.org/dc/terms/relation + http://purl.org/dc/terms/ + relation + terms-relation + + A related resource. + Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/relation + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#relationT-001 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + coverageT-001 + http://purl.org/dc/terms/coverage + http://purl.org/dc/terms/ + coverage + terms-coverage + + The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. + Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN]. Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/terms/LocationPeriodOrJurisdiction + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#coverageT-001 + + + + rightsT-001 + http://purl.org/dc/terms/rights + http://purl.org/dc/terms/ + rights + terms-rights + + Information about rights held in and over the resource. + Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/terms/RightsStatement + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#rightsT-001 + + + + audience-003 + http://purl.org/dc/terms/audience + http://purl.org/dc/terms/ + audience + terms-audience + + A class of entity for whom the resource is intended or useful. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + http://purl.org/dc/terms/AgentClass + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#audience-003 + http://dublincore.org/usage/terms/history/#audience-002 + + + + audience-002 + http://purl.org/dc/terms/audience + http://purl.org/dc/terms/ + audience + + A class of entity for whom the resource is intended or useful. + A class of entity may be determined by the creator or the + publisher or by a third party. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#audience-002 + http://dublincore.org/usage/terms/history/#audience-001 + http://dublincore.org/usage/terms/history/#audience-003 + + + + audience-001 + http://purl.org/dc/terms/audience + http://purl.org/dc/terms/ + audience + + A class of entity for whom the resource is intended or useful. + A class of entity may be determined by the creator or the + publisher or by a third party. + http://dublincore.org/usage/documents/principles/#element + Domain-Specific + 2001-05-21 + http://dublincore.org/usage/decisions/#Decision-2001-01 + http://dublincore.org/usage/terms/history/#audience-001 + http://dublincore.org/usage/terms/history/#audience-002 + + + + alternative-003 + http://purl.org/dc/terms/alternative + http://purl.org/dc/terms/ + alternative + terms-alternative + + An alternative name for the resource. + The distinction between titles and alternative titles is application-specific. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/terms/title + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#alternative-003 + http://dublincore.org/usage/terms/history/#alternative-002 + In current practice, this term is used primarily with literal values; however, there are important uses with non-literal values as well. As of December 2007, the DCMI Usage Board is leaving this range unspecified pending an investigation of options. + + + + alternative-002 + http://purl.org/dc/terms/alternative + http://purl.org/dc/terms/ + alternative + + Any form of the title used as a substitute or alternative + to the formal title of the resource. + This qualifier can include Title abbreviations as well + as translations. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/title + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#alternative-002 + http://dublincore.org/usage/terms/history/#alternative-001 + http://dublincore.org/usage/terms/history/#alternative-003 + + + + alternative-001 + http://purl.org/dc/terms/alternative + http://purl.org/dc/terms/ + alternative + + Any form of the title used as a substitute or alternative + to the formal title of the resource. + This qualifier can include Title abbreviations as well + as translations. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/title + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#alternative-001 + http://dublincore.org/usage/terms/history/#alternative-002 + + + + tableOfContents-003 + http://purl.org/dc/terms/tableOfContents + http://purl.org/dc/terms/ + tableOfContents + terms-tableOfContents + + A list of subunits of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/terms/description + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#tableOfContents-003 + http://dublincore.org/usage/terms/history/#tableOfContents-002 + + + + tableOfContents-002 + http://purl.org/dc/terms/tableOfContents + http://purl.org/dc/terms/ + tableOfContents + + A list of subunits of the content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/description + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#tableOfContents-002 + http://dublincore.org/usage/terms/history/#tableOfContents-001 + http://dublincore.org/usage/terms/history/#tableOfContents-003 + + + + tableOfContents-001 + http://purl.org/dc/terms/tableOfContents + http://purl.org/dc/terms/ + tableOfContents + + A list of subunits of the content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/description + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#tableOfContents-001 + http://dublincore.org/usage/terms/history/#tableOfContents-002 + + + + abstract-003 + http://purl.org/dc/terms/abstract + http://purl.org/dc/terms/ + abstract + terms-abstract + + A summary of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/terms/description + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#abstract-003 + http://dublincore.org/usage/terms/history/#abstract-002 + + + + abstract-002 + http://purl.org/dc/terms/abstract + http://purl.org/dc/terms/ + abstract + + A summary of the content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/description + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#abstract-002 + http://dublincore.org/usage/terms/history/#abstract-001 + http://dublincore.org/usage/terms/history/#abstract-003 + + + + abstract-001 + http://purl.org/dc/terms/abstract + http://purl.org/dc/terms/ + abstract + + A summary of the content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/description + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#abstract-001 + http://dublincore.org/usage/terms/history/#abstract-002 + + + + created-003 + http://purl.org/dc/terms/created + http://purl.org/dc/terms/ + created + terms-created + + Date of creation of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#created-003 + http://dublincore.org/usage/terms/history/#created-002 + + + + created-002 + http://purl.org/dc/terms/created + http://purl.org/dc/terms/ + created + + Date of creation of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#created-002 + http://dublincore.org/usage/terms/history/#created-001 + http://dublincore.org/usage/terms/history/#created-003 + + + + created-001 + http://purl.org/dc/terms/created + http://purl.org/dc/terms/ + created + + Date of creation of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#created-001 + http://dublincore.org/usage/terms/history/#created-002 + + + + valid-003 + http://purl.org/dc/terms/valid + http://purl.org/dc/terms/ + valid + terms-valid + + Date (often a range) of validity of a resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#valid-003 + http://dublincore.org/usage/terms/history/#valid-002 + + + + valid-002 + http://purl.org/dc/terms/valid + http://purl.org/dc/terms/ + valid + + Date (often a range) of validity of a resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#valid-002 + http://dublincore.org/usage/terms/history/#valid-001 + http://dublincore.org/usage/terms/history/#valid-003 + + + + valid-001 + http://purl.org/dc/terms/valid + http://purl.org/dc/terms/ + valid + + Date (often a range) of validity of a resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#valid-001 + http://dublincore.org/usage/terms/history/#valid-002 + + + + available-003 + http://purl.org/dc/terms/available + http://purl.org/dc/terms/ + available + terms-available + + Date (often a range) that the resource became or will become available. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#available-003 + http://dublincore.org/usage/terms/history/#available-002 + + + + available-002 + http://purl.org/dc/terms/available + http://purl.org/dc/terms/ + available + + Date (often a range) that the resource will become or did + become available. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#available-002 + http://dublincore.org/usage/terms/history/#available-001 + http://dublincore.org/usage/terms/history/#available-003 + + + + available-001 + http://purl.org/dc/terms/available + http://purl.org/dc/terms/ + available + + Date (often a range) that the resource will become or did + become available. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#available-001 + http://dublincore.org/usage/terms/history/#available-002 + + + + issued-003 + http://purl.org/dc/terms/issued + http://purl.org/dc/terms/ + issued + terms-issued + + Date of formal issuance (e.g., publication) of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#issued-003 + http://dublincore.org/usage/terms/history/#issued-002 + + + + issued-002 + http://purl.org/dc/terms/issued + http://purl.org/dc/terms/ + issued + + Date of formal issuance (e.g., publication) of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#issued-002 + http://dublincore.org/usage/terms/history/#issued-001 + http://dublincore.org/usage/terms/history/#issued-003 + + + + issued-001 + http://purl.org/dc/terms/issued + http://purl.org/dc/terms/ + issued + + Date of formal issuance (e.g., publication) of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#issued-001 + http://dublincore.org/usage/terms/history/#issued-002 + + + + modified-003 + http://purl.org/dc/terms/modified + http://purl.org/dc/terms/ + modified + terms-modified + + Date on which the resource was changed. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#modified-003 + http://dublincore.org/usage/terms/history/#modified-002 + + + + modified-002 + http://purl.org/dc/terms/modified + http://purl.org/dc/terms/ + modified + + Date on which the resource was changed. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#modified-002 + http://dublincore.org/usage/terms/history/#modified-001 + http://dublincore.org/usage/terms/history/#modified-003 + + + + modified-001 + http://purl.org/dc/terms/modified + http://purl.org/dc/terms/ + modified + + Date on which the resource was changed. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#modified-001 + http://dublincore.org/usage/terms/history/#modified-002 + + + + extent-003 + http://purl.org/dc/terms/extent + http://purl.org/dc/terms/ + extent + terms-extent + + The size or duration of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/terms/format + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/SizeOrDuration + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#extent-003 + http://dublincore.org/usage/terms/history/#extent-002 + + + + extent-002 + http://purl.org/dc/terms/extent + http://purl.org/dc/terms/ + extent + + The size or duration of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/format + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#extent-002 + http://dublincore.org/usage/terms/history/#extent-001 + http://dublincore.org/usage/terms/history/#extent-003 + + + + extent-001 + http://purl.org/dc/terms/extent + http://purl.org/dc/terms/ + extent + + The size or duration of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/format + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#extent-001 + http://dublincore.org/usage/terms/history/#extent-002 + + + + medium-003 + http://purl.org/dc/terms/medium + http://purl.org/dc/terms/ + medium + terms-medium + + The material or physical carrier of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/terms/format + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/PhysicalResource + http://purl.org/dc/terms/PhysicalMedium + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#medium-003 + http://dublincore.org/usage/terms/history/#medium-002 + + + + medium-002 + http://purl.org/dc/terms/medium + http://purl.org/dc/terms/ + medium + + The material or physical carrier of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/format + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#medium-002 + http://dublincore.org/usage/terms/history/#medium-001 + http://dublincore.org/usage/terms/history/#medium-003 + + + + medium-001 + http://purl.org/dc/terms/medium + http://purl.org/dc/terms/ + medium + + The material or physical carrier of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/format + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#medium-001 + http://dublincore.org/usage/terms/history/#medium-002 + + + + isVersionOf-003 + http://purl.org/dc/terms/isVersionOf + http://purl.org/dc/terms/ + isVersionOf + terms-isVersionOf + + A related resource of which the described resource is a version, edition, or adaptation. + Changes in version imply substantive changes in content rather than differences in format. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isVersionOf-003 + http://dublincore.org/usage/terms/history/#isVersionOf-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isVersionOf-002 + http://purl.org/dc/terms/isVersionOf + http://purl.org/dc/terms/ + isVersionOf + + The described resource is a version, edition, or adaptation + of the referenced resource. Changes in version imply substantive + changes in content rather than differences in format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isVersionOf-002 + http://dublincore.org/usage/terms/history/#isVersionOf-001 + http://dublincore.org/usage/terms/history/#isVersionOf-003 + + + + isVersionOf-001 + http://purl.org/dc/terms/isVersionOf + http://purl.org/dc/terms/ + isVersionOf + + The described resource is a version, edition, or adaptation + of the referenced resource. Changes in version imply substantive + changes in content rather than differences in format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isVersionOf-001 + http://dublincore.org/usage/terms/history/#isVersionOf-002 + + + + hasVersion-003 + http://purl.org/dc/terms/hasVersion + http://purl.org/dc/terms/ + hasVersion + terms-hasVersion + + A related resource that is a version, edition, or adaptation of the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#hasVersion-003 + http://dublincore.org/usage/terms/history/#hasVersion-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + hasVersion-002 + http://purl.org/dc/terms/hasVersion + http://purl.org/dc/terms/ + hasVersion + + The described resource has a version, edition, or adaptation, + namely, the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#hasVersion-002 + http://dublincore.org/usage/terms/history/#hasVersion-001 + http://dublincore.org/usage/terms/history/#hasVersion-003 + + + + hasVersion-001 + http://purl.org/dc/terms/hasVersion + http://purl.org/dc/terms/ + hasVersion + + The described resource has a version, edition, or adaptation, + namely, the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#hasVersion-001 + http://dublincore.org/usage/terms/history/#hasVersion-002 + + + + isReplacedBy-003 + http://purl.org/dc/terms/isReplacedBy + http://purl.org/dc/terms/ + isReplacedBy + terms-isReplacedBy + + A related resource that supplants, displaces, or supersedes the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isReplacedBy-003 + http://dublincore.org/usage/terms/history/#isReplacedBy-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isReplacedBy-002 + http://purl.org/dc/terms/isReplacedBy + http://purl.org/dc/terms/ + isReplacedBy + + The described resource is supplanted, displaced, or + superseded by the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isReplacedBy-002 + http://dublincore.org/usage/terms/history/#isReplacedBy-001 + http://dublincore.org/usage/terms/history/#isReplacedBy-003 + + + + isReplacedBy-001 + http://purl.org/dc/terms/isReplacedBy + http://purl.org/dc/terms/ + isReplacedBy + + The described resource is supplanted, displaced, or + superceded by the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isReplacedBy-001 + http://dublincore.org/usage/terms/history/#isReplacedBy-002 + + + + replaces-003 + http://purl.org/dc/terms/replaces + http://purl.org/dc/terms/ + replaces + terms-replaces + + A related resource that is supplanted, displaced, or superseded by the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#replaces-003 + http://dublincore.org/usage/terms/history/#replaces-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + replaces-002 + http://purl.org/dc/terms/replaces + http://purl.org/dc/terms/ + replaces + + The described resource supplants, displaces, or supersedes + the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#replaces-002 + http://dublincore.org/usage/terms/history/#replaces-001 + http://dublincore.org/usage/terms/history/#Is-Replaced-By-003 + + + + replaces-001 + http://purl.org/dc/terms/replaces + http://purl.org/dc/terms/ + replaces + + The described resource supplants, displaces, or supersedes + the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#replaces-001 + http://dublincore.org/usage/terms/history/#replaces-002 + + + + isRequiredBy-003 + http://purl.org/dc/terms/isRequiredBy + http://purl.org/dc/terms/ + isRequiredBy + terms-isRequiredBy + + A related resource that requires the described resource to support its function, delivery, or coherence. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isRequiredBy-003 + http://dublincore.org/usage/terms/history/#isRequiredBy-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isRequiredBy-002 + http://purl.org/dc/terms/isRequiredBy + http://purl.org/dc/terms/ + isRequiredBy + + The described resource is required by the referenced resource, + either physically or logically. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isRequiredBy-002 + http://dublincore.org/usage/terms/history/#isRequiredBy-001 + http://dublincore.org/usage/terms/history/#isRequiredBy-003 + + + + isRequiredBy-001 + http://purl.org/dc/terms/isRequiredBy + http://purl.org/dc/terms/ + isRequiredBy + + The described resource is required by the referenced resource, + either physically or logically. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isRequiredBy-001 + http://dublincore.org/usage/terms/history/#isRequiredBy-002 + + + + requires-003 + http://purl.org/dc/terms/requires + http://purl.org/dc/terms/ + requires + terms-requires + + A related resource that is required by the described resource to support its function, delivery, or coherence. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#requires-003 + http://dublincore.org/usage/terms/history/#requires-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + requires-002 + http://purl.org/dc/terms/requires + http://purl.org/dc/terms/ + requires + + The described resource requires the referenced resource to + support its function, delivery, or coherence of content. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#requires-002 + http://dublincore.org/usage/terms/history/#requires-001 + http://dublincore.org/usage/terms/history/#requires-003 + + + + requires-001 + http://purl.org/dc/terms/requires + http://purl.org/dc/terms/ + requires + + The described resource requires the referenced resource to + support its function, delivery, or coherence of content. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#requires-001 + http://dublincore.org/usage/terms/history/#requires-002 + + + + isPartOf-003 + http://purl.org/dc/terms/isPartOf + http://purl.org/dc/terms/ + isPartOf + terms-isPartOf + + A related resource in which the described resource is physically or logically included. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isPartOf-003 + http://dublincore.org/usage/terms/history/#isPartOf-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isPartOf-002 + http://purl.org/dc/terms/isPartOf + http://purl.org/dc/terms/ + isPartOf + + The described resource is a physical or logical part of the + referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isPartOf-002 + http://dublincore.org/usage/terms/history/#isPartOf-001 + http://dublincore.org/usage/terms/history/#isPartOf-003 + + + + isPartOf-001 + http://purl.org/dc/terms/isPartOf + http://purl.org/dc/terms/ + isPartOf + + The described resource is a physical or logical part of the + referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isPartOf-001 + http://dublincore.org/usage/terms/history/#isPartOf-002 + + + + hasPart-003 + http://purl.org/dc/terms/hasPart + http://purl.org/dc/terms/ + hasPart + terms-hasPart + + A related resource that is included either physically or logically in the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#hasPart-003 + http://dublincore.org/usage/terms/history/#hasPart-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + hasPart-002 + http://purl.org/dc/terms/hasPart + http://purl.org/dc/terms/ + hasPart + + The described resource includes the referenced resource either + physically or logically. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#hasPart-002 + http://dublincore.org/usage/terms/history/#hasPart-001 + http://dublincore.org/usage/terms/history/#hasPart-003 + + + + hasPart-001 + http://purl.org/dc/terms/hasPart + http://purl.org/dc/terms/ + hasPart + + The described resource includes the referenced resource either + physically or logically. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#hasPart-001 + http://dublincore.org/usage/terms/history/#hasPart-002 + + + + isReferencedBy-003 + http://purl.org/dc/terms/isReferencedBy + http://purl.org/dc/terms/ + isReferencedBy + terms-isReferencedBy + + A related resource that references, cites, or otherwise points to the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isReferencedBy-003 + http://dublincore.org/usage/terms/history/#isReferencedBy-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isReferencedBy-002 + http://purl.org/dc/terms/isReferencedBy + http://purl.org/dc/terms/ + isReferencedBy + + The described resource is referenced, cited, or otherwise + pointed to by the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isReferencedBy-002 + http://dublincore.org/usage/terms/history/#isReferencedBy-001 + http://dublincore.org/usage/terms/history/#isReferencedBy-003 + + + + isReferencedBy-001 + http://purl.org/dc/terms/isReferencedBy + http://purl.org/dc/terms/ + isReferencedBy + + The described resource is referenced, cited, or otherwise + pointed to by the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isReferencedBy-001 + http://dublincore.org/usage/terms/history/#isReferencedBy-002 + + + + references-003 + http://purl.org/dc/terms/references + http://purl.org/dc/terms/ + references + terms-references + + A related resource that is referenced, cited, or otherwise pointed to by the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#references-003 + http://dublincore.org/usage/terms/history/#references-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + references-002 + http://purl.org/dc/terms/references + http://purl.org/dc/terms/ + references + + The described resource references, cites, or otherwise points + to the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#references-002 + http://dublincore.org/usage/terms/history/#references-001 + http://dublincore.org/usage/terms/history/#references-003 + + + + references-001 + http://purl.org/dc/terms/references + http://purl.org/dc/terms/ + references + + The described resource references, cites, or otherwise points + to the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#references-001 + http://dublincore.org/usage/terms/history/#references-002 + + + + isFormatOf-003 + http://purl.org/dc/terms/isFormatOf + http://purl.org/dc/terms/ + isFormatOf + terms-isFormatOf + + A related resource that is substantially the same as the described resource, but in another format. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isFormatOf-003 + http://dublincore.org/usage/terms/history/#isFormatOf-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isFormatOf-002 + http://purl.org/dc/terms/isFormatOf + http://purl.org/dc/terms/ + isFormatOf + + The described resource is the same intellectual content of + the referenced resource, but presented in another format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isFormatOf-002 + http://dublincore.org/usage/terms/history/#isFormatOf-001 + http://dublincore.org/usage/terms/history/#isFormatOf-003 + + + + isFormatOf-001 + http://purl.org/dc/terms/isFormatOf + http://purl.org/dc/terms/ + isFormatOf + + The described resource is the same intellectual content of + the referenced resource, but presented in another format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isFormatOf-001 + http://dublincore.org/usage/terms/history/#isFormatOf-002 + + + + hasFormat-003 + http://purl.org/dc/terms/hasFormat + http://purl.org/dc/terms/ + hasFormat + terms-hasFormat + + A related resource that is substantially the same as the pre-existing described resource, but in another format. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#hasFormat-003 + http://dublincore.org/usage/terms/history/#hasFormat-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + hasFormat-002 + http://purl.org/dc/terms/hasFormat + http://purl.org/dc/terms/ + hasFormat + + The described resource pre-existed the referenced resource, + which is essentially the same intellectual content presented + in another format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#hasFormat-002 + http://dublincore.org/usage/terms/history/#hasFormat-001 + http://dublincore.org/usage/terms/history/#hasFormat-003 + + + + hasFormat-001 + http://purl.org/dc/terms/hasFormat + http://purl.org/dc/terms/ + hasFormat + + The described resource pre-existed the referenced resource, + which is essentially the same intellectual content presented + in another format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#hasFormat-001 + http://dublincore.org/usage/terms/history/#hasFormat-002 + + + + conformsTo-003 + http://purl.org/dc/terms/conformsTo + http://purl.org/dc/terms/ + conformsTo + terms-conformsTo + + An established standard to which the described resource conforms. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2008-01-14 + http://purl.org/dc/terms/Standard + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#conformsTo-003 + http://dublincore.org/usage/terms/history/#conformsTo-002 + + + + conformsTo-002 + http://purl.org/dc/terms/conformsTo + http://purl.org/dc/terms/ + conformsTo + + A reference to an established standard to which the resource conforms. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#conformsTo-002 + http://dublincore.org/usage/terms/history/#conformsTo-001 + http://dublincore.org/usage/terms/history/#conformsTo-003 + + + + conformsTo-001 + http://purl.org/dc/terms/conformsTo + http://purl.org/dc/terms/ + conformsTo + + A reference to an established standard to which the resource conforms. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + Domain-Specific + 2001-05-21 + http://dublincore.org/usage/decisions/#Decision-2001-01 + http://dublincore.org/usage/terms/history/#conformsTo-001 + http://dublincore.org/usage/terms/history/#conformsTo-002 + + + + spatial-003 + http://purl.org/dc/terms/spatial + http://purl.org/dc/terms/ + spatial + terms-spatial + + Spatial characteristics of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/terms/coverage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/Location + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#spatial-003 + http://dublincore.org/usage/terms/history/#spatial-002 + + + + spatial-002 + http://purl.org/dc/terms/spatial + http://purl.org/dc/terms/ + spatial + + Spatial characteristics of the intellectual content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/coverage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#spatial-002 + http://dublincore.org/usage/terms/history/#spatial-001 + http://dublincore.org/usage/terms/history/#spatial-003 + + + + spatial-001 + http://purl.org/dc/terms/spatial + http://purl.org/dc/terms/ + spatial + + Spatial characteristics of the intellectual content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/coverage + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#spatial-001 + http://dublincore.org/usage/terms/history/#spatial-002 + + + + temporal-003 + http://purl.org/dc/terms/temporal + http://purl.org/dc/terms/ + temporal + terms-temporal + + Temporal characteristics of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/terms/coverage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/PeriodOfTime + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#temporal-003 + http://dublincore.org/usage/terms/history/#temporal-002 + + + + temporal-002 + http://purl.org/dc/terms/temporal + http://purl.org/dc/terms/ + temporal + + Temporal characteristics of the intellectual content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/coverage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#temporal-002 + http://dublincore.org/usage/terms/history/#temporal-001 + http://dublincore.org/usage/terms/history/#temporal-003 + + + + temporal-001 + http://purl.org/dc/terms/temporal + http://purl.org/dc/terms/ + temporal + + Temporal characteristics of the intellectual content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/coverage + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#temporal-001 + http://dublincore.org/usage/terms/history/#temporal-002 + + + + mediator-003 + http://purl.org/dc/terms/mediator + http://purl.org/dc/terms/ + mediator + terms-mediator + + An entity that mediates access to the resource and for whom the resource is intended or useful. + In an educational context, a mediator might be a parent, teacher, teaching assistant, or care-giver. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/audience + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2008-01-14 + http://purl.org/dc/terms/AgentClass + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#mediator-003 + http://dublincore.org/usage/terms/history/#mediator-002 + + + + mediator-002 + http://purl.org/dc/terms/mediator + http://purl.org/dc/terms/ + mediator + + A class of entity that mediates access to the + resource and for whom the resource is intended or useful. + The audiences for a resource are of two basic classes: (1) an + ultimate beneficiary of the resource, and (2) frequently, an + entity that mediates access to the resource. The mediator + element refinement represents the second of these two classes. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/terms/audience + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#mediator-002 + http://dublincore.org/usage/terms/history/#mediator-001 + http://dublincore.org/usage/terms/history/#mediator-003 + + + + mediator-001 + http://purl.org/dc/terms/mediator + http://purl.org/dc/terms/ + mediator + + A class of entity that mediates access to the + resource and for whom the resource is intended or useful. + The audience for a resource in the education/training + domain are of two basic classes: (1) an ultimate beneficiary of + the resource (usually a student or trainee), and (2) frequently, + an entity that mediates access to the resource (usually a + teacher or trainer). The mediator element refinement represents + the second of these two classes. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/terms/audience + Domain-Specific + 2001-05-21 + http://dublincore.org/usage/decisions/#Decision-2001-01 + http://dublincore.org/usage/terms/history/#mediator-001 + http://dublincore.org/usage/terms/history/#mediator-002 + + + + dateAccepted-002 + http://purl.org/dc/terms/dateAccepted + http://purl.org/dc/terms/ + dateAccepted + terms-dateAccepted + + Date of acceptance of the resource. + Examples of resources to which a Date Accepted may be relevant are a thesis (accepted by a university department) or an article (accepted by a journal). + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#dateAccepted-002 + http://dublincore.org/usage/terms/history/#dateAccepted-001 + + + + dateAccepted-001 + http://purl.org/dc/terms/dateAccepted + http://purl.org/dc/terms/ + dateAccepted + + Date of acceptance of the resource (e.g. of thesis + by university department, of article by journal, etc.). + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#dateAccepted-001 + http://dublincore.org/usage/terms/history/#dateAccepted-002 + + + + dateCopyrighted-002 + http://purl.org/dc/terms/dateCopyrighted + http://purl.org/dc/terms/ + dateCopyrighted + terms-dateCopyrighted + + Date of copyright. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#dateCopyrighted-002 + http://dublincore.org/usage/terms/history/#dateCopyrighted-001 + + + + dateCopyrighted-001 + http://purl.org/dc/terms/dateCopyrighted + http://purl.org/dc/terms/ + dateCopyrighted + + Date of a statement of copyright. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#dateCopyrighted-001 + http://dublincore.org/usage/terms/history/#dateCopyrighted-002 + + + + dateSubmitted-002 + http://purl.org/dc/terms/dateSubmitted + http://purl.org/dc/terms/ + dateSubmitted + terms-dateSubmitted + + Date of submission of the resource. + Examples of resources to which a Date Submitted may be relevant are a thesis (submitted to a university department) or an article (submitted to a journal). + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#dateSubmitted-002 + http://dublincore.org/usage/terms/history/#dateSubmitted-001 + + + + dateSubmitted-001 + http://purl.org/dc/terms/dateSubmitted + http://purl.org/dc/terms/ + dateSubmitted + + Date of submission of the resource (e.g. thesis, + articles, etc.). + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#dateSubmitted-001 + http://dublincore.org/usage/terms/history/#dateSubmitted-002 + + + + educationLevel-002 + http://purl.org/dc/terms/educationLevel + http://purl.org/dc/terms/ + educationLevel + terms-educationLevel + + A class of entity, defined in terms of progression through an educational or training context, for which the described resource is intended. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/audience + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + 2008-01-14 + http://purl.org/dc/terms/AgentClass + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#educationLevel-002 + http://dublincore.org/usage/terms/history/#educationLevel-001 + + + + educationLevel-001 + http://purl.org/dc/terms/educationLevel + http://purl.org/dc/terms/ + educationLevel + + A general statement describing the education or + training context. Alternatively, a more specific + statement of the location of the audience in terms of + its progression through an education or training context. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/terms/audience + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#educationLevel-001 + http://dublincore.org/usage/terms/history/#educationLevel-002 + + + + accessRights-002 + http://purl.org/dc/terms/accessRights + http://purl.org/dc/terms/ + accessRights + terms-accessRights + + Information about who can access the resource or an indication of its security status. + Access Rights may include information regarding access or restrictions based on privacy, security, or other policies. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/terms/rights + http://dublincore.org/usage/documents/process/#conforming + 2003-02-15 + 2008-01-14 + http://purl.org/dc/terms/RightsStatement + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#accessRights-002 + http://dublincore.org/usage/terms/history/#accessRights-001 + + + + accessRights-001 + http://purl.org/dc/terms/accessRights + http://purl.org/dc/terms/ + accessRights + + Information about who can access the + resource or an indication of its security status. + + Access Rights may include information + regarding access or restrictions based on privacy, + security or other regulations. + + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/rights + http://dublincore.org/usage/documents/process/#conforming + 2003-02-15 + http://dublincore.org/usage/decisions/#Decision-2003-01 + http://dublincore.org/usage/terms/history/#accessRights-001 + http://dublincore.org/usage/terms/history/#accessRights-002 + + + + bibliographicCitation-002 + http://purl.org/dc/terms/bibliographicCitation + http://purl.org/dc/terms/ + bibliographicCitation + terms-bibliographicCitation + + A bibliographic reference for the resource. + Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/terms/identifier + http://dublincore.org/usage/documents/process/#conforming + 2003-02-15 + 2008-01-14 + http://purl.org/dc/terms/BibliographicResource + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#bibliographicCitation-002 + http://dublincore.org/usage/terms/history/#bibliographicCitation-001 + + + + bibliographicCitation-001 + http://purl.org/dc/terms/bibliographicCitation + http://purl.org/dc/terms/ + bibliographicCitation + + A bibliographic reference for the resource. + + Recommended practice is to include sufficient + bibliographic detail to identify the resource as + unambiguously as possible, whether or not the + citation is in a standard form. + + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/identifier + http://dublincore.org/usage/documents/process/#conforming + 2003-02-15 + http://dublincore.org/usage/decisions/#Decision-2003-01 + http://dublincore.org/usage/terms/history/#bibliographicCitation-001 + http://dublincore.org/usage/terms/history/#bibliographicCitation-002 + + + + license-002 + http://purl.org/dc/terms/license + http://purl.org/dc/terms/ + license + terms-license + + A legal document giving official permission to do something with the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/terms/rights + http://dublincore.org/usage/documents/process/#conforming + 2004-06-14 + 2008-01-14 + http://purl.org/dc/terms/LicenseDocument + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#license-002 + http://dublincore.org/usage/terms/history/#license-001 + + + + license-001 + http://purl.org/dc/terms/license + http://purl.org/dc/terms/ + license + + A legal document giving official permission to do something + with the resource. + Recommended best practice is to identify the license using a + URI. Examples of such licenses can be found at + http://creativecommons.org/licenses/. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/rights + http://dublincore.org/usage/documents/process/#conforming + 2004-06-14 + http://dublincore.org/usage/decisions/#Decision-2004-01 + http://dublincore.org/usage/terms/history/#license-001 + http://dublincore.org/usage/terms/history/#license-002 + + + + rightsHolder-002 + http://purl.org/dc/terms/rightsHolder + http://purl.org/dc/terms/ + rightsHolder + terms-rightsHolder + + A person or organization owning or managing rights over the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2004-06-14 + 2008-01-14 + http://purl.org/dc/terms/Agent + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#rightsHolder-002 + http://dublincore.org/usage/terms/history/#rightsHolder-001 + + + + rightsHolder-001 + http://purl.org/dc/terms/rightsHolder + http://purl.org/dc/terms/ + rightsHolder + + A person or organization owning or managing rights over the resource. + + Recommended best practice is to use the URI or name of + the Rights Holder to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2004-06-14 + http://dublincore.org/usage/decisions/#Decision-2004-01 + http://dublincore.org/usage/terms/history/#rightsHolder-001 + http://dublincore.org/usage/terms/history/#rightsHolder-002 + + + + Provenance-002 + http://purl.org/dc/terms/provenance + http://purl.org/dc/terms/ + provenance + terms-provenance + + A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. + The statement may include a description of any changes successive custodians made to the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2004-09-20 + 2008-01-14 + http://purl.org/dc/terms/ProvenanceStatement + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#provenance-002 + http://dublincore.org/usage/terms/history/#provenance-001 + + + + Provenance-001 + http://purl.org/dc/terms/provenance + http://purl.org/dc/terms/ + provenance + + A statement of any changes in ownership and custody + of the resource since its creation that are + significant for its authenticity, integrity and + interpretation. + + The statement may include a description of any + changes successive custodians made to the resource. + + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2004-09-20 + http://dublincore.org/usage/decisions/#Decision-2004-02 + http://dublincore.org/usage/terms/history/#provenance-001 + http://dublincore.org/usage/terms/history/#provenance-002 + + + + instructionalMethod-002 + instructionalMethod + terms-instructionalMethod + http://purl.org/dc/terms/instructionalMethod + http://purl.org/dc/terms/ + + A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support. + Instructional Method will typically include ways of presenting instructional materials or conducting instructional activities, patterns of learner-to-learner and learner-to-instructor interactions, and mechanisms by which group and individual levels of learning are measured. Instructional methods include all aspects of the instruction and learning processes from planning and implementation through evaluation and feedback. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + 2008-01-14 + http://purl.org/dc/terms/MethodOfInstruction + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#instructionalMethod-002 + http://dublincore.org/usage/terms/history/#instructionalMethod-001 + + + + instructionalMethod-001 + instructionalMethod + http://purl.org/dc/terms/instructionalMethod + http://purl.org/dc/terms/ + + A process, used to engender knowledge, attitudes and skills, + that the resource is designed to support. + Instructional Method will typically include ways of presenting + instructional materials or conducting instructional activities, + patterns of learner-to-learner and learner-to-instructor interactions, + and mechanisms by which group and individual levels of learning are measured. + Instructional methods include all aspects of the instruction and learning + processes from planning and implementation through evaluation and + feedback. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-02 + http://dublincore.org/usage/terms/history/#instructionalMethod-001 + http://dublincore.org/usage/terms/history/#instructionalMethod-002 + + + + accrualMethod-002 + accrualMethod + terms-accrualMethod + http://purl.org/dc/terms/accrualMethod + http://purl.org/dc/terms/ + + The method by which items are added to a collection. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + 2008-01-14 + http://purl.org/dc/terms/Collection + http://purl.org/dc/terms/MethodOfAccrual + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#accrualMethod-002 + http://dublincore.org/usage/terms/history/#accrualMethod-001 + + + + accrualMethod-001 + accrualMethod + http://purl.org/dc/terms/accrualMethod + http://purl.org/dc/terms/ + + The method by which items are added to a collection. + Recommended best practice is to use a value from a controlled vocabulary. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-03 + http://dublincore.org/usage/terms/history/#accrualMethod-001 + http://dublincore.org/usage/terms/history/#accrualMethod-002 + + + + accrualPeriodicity-002 + accrualPeriodicity + terms-accrualPeriodicity + http://purl.org/dc/terms/accrualPeriodicity + http://purl.org/dc/terms/ + + The frequency with which items are added to a collection. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + 2008-01-14 + http://purl.org/dc/terms/Collection + http://purl.org/dc/terms/Frequency + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#accrualPeriodicity-002 + http://dublincore.org/usage/terms/history/#accrualPeriodicity-001 + + + + accrualPeriodicity-001 + accrualPeriodicity + http://purl.org/dc/terms/accrualPeriodicity + http://purl.org/dc/terms/ + + The frequency with which items are added to a collection. + Recommended best practice is to use a value from a + controlled vocabulary. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-03 + http://dublincore.org/usage/terms/history/#accrualPeriodicity-001 + http://dublincore.org/usage/terms/history/#accrualPeriodicity-002 + + + + accrualPolicy-002 + accrualPolicy + terms-accrualPolicy + http://purl.org/dc/terms/accrualPolicy + http://purl.org/dc/terms/ + + The policy governing the addition of items to a collection. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + 2008-01-14 + http://purl.org/dc/terms/Collection + http://purl.org/dc/terms/Policy + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#accrualPolicy-002 + http://dublincore.org/usage/terms/history/#accrualPolicy-001 + + + + accrualPolicy-001 + accrualPolicy + http://purl.org/dc/terms/accrualPolicy + http://purl.org/dc/terms/ + + The policy governing the addition of items to a collection. + Recommended best practice is to use a value from a controlled + vocabulary. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-03 + http://dublincore.org/usage/terms/history/#accrualPolicy-001 + http://dublincore.org/usage/terms/history/#accrualPolicy-002 + + + diff --git a/2007-12-18/xmldata/dcterms-ses.xml b/2007-12-18/xmldata/dcterms-ses.xml new file mode 100755 index 0000000..cf893de --- /dev/null +++ b/2007-12-18/xmldata/dcterms-ses.xml @@ -0,0 +1,536 @@ + + + + + + ISO639-2-003 + http://purl.org/dc/terms/ISO639-2 + http://purl.org/dc/terms/ + ISO639-2 + ses-ISO639-2 + + The three-letter alphabetic codes listed in ISO639-2 for the representation of names of languages. + http://lcweb.loc.gov/standards/iso639-2/langhome.html + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#ISO639-2-003 + http://dublincore.org/usage/terms/history/#ISO639-2-002 + + + + ISO639-2-002 + http://purl.org/dc/terms/ISO639-2 + http://purl.org/dc/terms/ + ISO639-2 + + ISO 639-2: Codes for the representation of names of languages. + http://lcweb.loc.gov/standards/iso639-2/langhome.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#ISO639-2-002 + http://dublincore.org/usage/terms/history/#ISO639-2-001 + http://dublincore.org/usage/terms/history/#ISO639-2-003 + + + + ISO639-2-001 + http://purl.org/dc/terms/ISO639-2 + http://purl.org/dc/terms/ + ISO639-2 + + ISO 639-2: Codes for the representation of names of languages. + http://lcweb.loc.gov/standards/iso639-2/langhome.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#ISO639-2-001 + http://dublincore.org/usage/terms/history/#ISO639-2-002 + + + + RFC1766-003 + http://purl.org/dc/terms/RFC1766 + http://purl.org/dc/terms/ + RFC1766 + ses-RFC1766 + + The set of tags, constructed according to RFC 1766, for the identification of languages. + http://www.ietf.org/rfc/rfc1766.txt + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#RFC1766-003 + http://dublincore.org/usage/terms/history/#RFC1766-002 + + + + RFC1766-002 + http://purl.org/dc/terms/RFC1766 + http://purl.org/dc/terms/ + RFC1766 + + Internet RFC 1766 'Tags for the identification of Language' + specifies a two letter code taken from ISO 639, followed + optionally by a two letter country code taken from ISO 3166. + http://www.ietf.org/rfc/rfc1766.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#RFC1766-002 + http://dublincore.org/usage/terms/history/#RFC1766-001 + http://dublincore.org/usage/terms/history/#RFC1766-003 + + + + RFC1766-001 + http://purl.org/dc/terms/RFC1766 + http://purl.org/dc/terms/ + RFC1766 + + Internet RFC 1766 'Tags for the identification of Language' + specifies a two letter code taken from ISO 639, followed + optionally by a two letter country code taken from ISO 3166. + http://www.ietf.org/rfc/rfc1766.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#RFC1766-001 + http://dublincore.org/usage/terms/history/#RFC1766-002 + + + + URI-003 + http://purl.org/dc/terms/URI + http://purl.org/dc/terms/ + URI + ses-URI + + The set of identifiers constructed according to the generic syntax for Uniform Resource Identifiers as specified by the Internet Engineering Task Force. + http://www.ietf.org/rfc/rfc3986.txt + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#URI-003 + http://dublincore.org/usage/terms/history/#URI-002 + + + + URI-002 + http://purl.org/dc/terms/URI + http://purl.org/dc/terms/ + URI + + A URI Uniform Resource Identifier + http://www.ietf.org/rfc/rfc2396.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#URI-002 + http://dublincore.org/usage/terms/history/#URI-001 + http://dublincore.org/usage/terms/history/#URI-003 + + + + URI-001 + http://purl.org/dc/terms/URI + http://purl.org/dc/terms/ + URI + + A URI Uniform Resource Identifier + http://www.ietf.org/rfc/rfc2396.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#URI-001 + http://dublincore.org/usage/terms/history/#URI-002 + + + + Point-003 + http://purl.org/dc/terms/Point + http://purl.org/dc/terms/ + Point + ses-Point + + The set of points in space defined by their geographic coordinates according to the DCMI Point Encoding Scheme. + http://dublincore.org/documents/dcmi-point/ + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Point-003 + http://dublincore.org/usage/terms/history/#Point-002 + + + + Point-002 + http://purl.org/dc/terms/Point + http://purl.org/dc/terms/ + Point + + The DCMI Point identifies a point in space using its geographic coordinates. + http://dublincore.org/documents/dcmi-point/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#Point-002 + http://dublincore.org/usage/terms/history/#Point-001 + http://dublincore.org/usage/terms/history/#Point-003 + + + + Point-001 + http://purl.org/dc/terms/Point + http://purl.org/dc/terms/ + Point + + The DCMI Point identifies a point in space using its geographic coordinates. + http://dublincore.org/documents/dcmi-point/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#Point-001 + http://dublincore.org/usage/terms/history/#Point-002 + + + + ISO3166-004 + http://purl.org/dc/terms/ISO3166 + http://purl.org/dc/terms/ + ISO3166 + ses-ISO3166 + + The set of codes listed in ISO 3166-1 for the representation of names of countries. + http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#ISO3166-004 + http://dublincore.org/usage/terms/history/#ISO3166-003 + + + + ISO3166-003 + http://purl.org/dc/terms/ISO3166 + http://purl.org/dc/terms/ + ISO3166 + + ISO 3166 Codes for the representation of names of countries + http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2004-12-17 + http://dublincore.org/usage/decisions/#Decision-2004-03 + http://dublincore.org/usage/terms/history/#ISO3166-003 + http://dublincore.org/usage/terms/history/#ISO3166-002 + http://dublincore.org/usage/terms/history/#ISO3166-004 + + + + ISO3166-002 + http://purl.org/dc/terms/ISO3166 + http://purl.org/dc/terms/ + ISO3166 + + ISO 3166 Codes for the representation of names of countries + http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/index.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#ISO3166-002 + http://dublincore.org/usage/terms/history/#ISO3166-001 + http://dublincore.org/usage/terms/history/#ISO3166-003 + + + + ISO3166-001 + http://purl.org/dc/terms/ISO3166 + http://purl.org/dc/terms/ + ISO3166 + + ISO 3166 Codes for the representation of names of countries + http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/index.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#ISO3166-001 + http://dublincore.org/usage/terms/history/#ISO3166-002 + + + + Box-003 + http://purl.org/dc/terms/Box + http://purl.org/dc/terms/ + Box + ses-Box + + The set of regions in space defined by their geographic coordinates according to the DCMI Box Encoding Scheme. + http://dublincore.org/documents/dcmi-box/ + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Box-003 + http://dublincore.org/usage/terms/history/#Box-002 + + + + Box-002 + http://purl.org/dc/terms/Box + http://purl.org/dc/terms/ + Box + + The DCMI Box identifies a region of space using its geographic limits. + http://dublincore.org/documents/dcmi-box/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#Box-002 + http://dublincore.org/usage/terms/history/#Box-001 + http://dublincore.org/usage/terms/history/#Box-003 + + + + Box-001 + http://purl.org/dc/terms/Box + http://purl.org/dc/terms/ + Box + + The DCMI Box identifies a region of space using its geographic limits. + http://dublincore.org/documents/dcmi-box/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#Box-001 + http://dublincore.org/usage/terms/history/#Box-002 + + + + Period-003 + http://purl.org/dc/terms/Period + http://purl.org/dc/terms/ + Period + ses-Period + + The set of time intervals defined by their limits according to the DCMI Period Encoding Scheme. + http://dublincore.org/documents/dcmi-period/ + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Period-003 + http://dublincore.org/usage/terms/history/#Period-002 + + + + Period-002 + http://purl.org/dc/terms/Period + http://purl.org/dc/terms/ + Period + + A specification of the limits of a time interval. + http://dublincore.org/documents/dcmi-period/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#Period-002 + http://dublincore.org/usage/terms/history/#Period-001 + http://dublincore.org/usage/terms/history/#Period-003 + + + + Period-001 + http://purl.org/dc/terms/Period + http://purl.org/dc/terms/ + Period + + A specification of the limits of a time interval. + http://dublincore.org/documents/dcmi-period/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#Period-001 + http://dublincore.org/usage/terms/history/#Period-002 + + + + W3CDTF-003 + http://purl.org/dc/terms/W3CDTF + http://purl.org/dc/terms/ + W3CDTF + ses-W3CDTF + + The set of dates and times constructed according to the W3C Date and Time Formats Specification. + http://www.w3.org/TR/NOTE-datetime + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#W3CDTF-003 + http://dublincore.org/usage/terms/history/#W3CDTF-002 + + + + W3CDTF-002 + http://purl.org/dc/terms/W3CDTF + http://purl.org/dc/terms/ + W3CDTF + + W3C Encoding rules for dates and times - a profile based on ISO 8601 + http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#W3CDTF-002 + http://dublincore.org/usage/terms/history/#W3CDTF-001 + http://dublincore.org/usage/terms/history/#W3CDTF-003 + + + + W3CDTF-001 + http://purl.org/dc/terms/W3CDTF + http://purl.org/dc/terms/ + W3CDTF + + W3C Encoding rules for dates and times - a profile based on ISO 8601 + http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#W3CDTF-001 + http://dublincore.org/usage/terms/history/#W3CDTF-002 + + + + RFC3066-002 + http://purl.org/dc/terms/RFC3066 + http://purl.org/dc/terms/ + RFC3066 + ses-RFC3066 + + The set of tags constructed according to RFC 3066 for the identification of languages. + RFC 3066 has been obsoleted by RFC 4646. + http://www.ietf.org/rfc/rfc3066.txt + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2002-07-13 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#RFC3066-002 + http://dublincore.org/usage/terms/history/#RFC3066-001 + + + + RFC3066-001 + http://purl.org/dc/terms/RFC3066 + http://purl.org/dc/terms/ + RFC3066 + + Internet RFC 3066 'Tags for the + Identification of Languages' specifies a primary + subtag which is a two-letter code taken from ISO + 639 part 1 or a three-letter code taken from ISO 639 + part 2, followed optionally by a two-letter country + code taken from ISO 3166. When a language in ISO + 639 has both a two-letter and three-letter code, use + the two-letter code; when it has only a three-letter + code, use the three-letter code. This RFC replaces + RFC 1766. + http://www.ietf.org/rfc/rfc3066.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + http://dublincore.org/usage/documents/process/#registered + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#RFC3066-001 + http://dublincore.org/usage/terms/history/#RFC3066-002 + + + + RFC4646-001 + RFC4646 + ses-RFC4646 + http://purl.org/dc/terms/RFC4646 + http://purl.org/dc/terms/ + + The set of tags constructed according to RFC 4646 for the identification of languages. + RFC 4646 obsoletes RFC 3066. + http://www.ietf.org/rfc/rfc4646.txt + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + http://dublincore.org/usage/terms/history/#RFC4646-001 + 2008-01-14 + + + + ISO639-3-001 + ISO639-3 + ses-ISO639-3 + http://purl.org/dc/terms/ISO639-3 + http://purl.org/dc/terms/ + + The set of three-letter codes listed in ISO 639-3 for the representation of names of languages. + http://www.sil.org/iso639-3/ + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + http://dublincore.org/usage/terms/history/#ISO639-3-001 + 2008-01-14 + + + diff --git a/2007-12-18/xmldata/dcterms-ves.xml b/2007-12-18/xmldata/dcterms-ves.xml new file mode 100755 index 0000000..81df0f6 --- /dev/null +++ b/2007-12-18/xmldata/dcterms-ves.xml @@ -0,0 +1,482 @@ + + + + + + LCSH-003 + http://purl.org/dc/terms/LCSH + http://purl.org/dc/terms/ + LCSH + ves-LCSH + + The set of labeled concepts specified by the Library of Congress Subject Headings. + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#LCSH-003 + http://dublincore.org/usage/terms/history/#LCSH-002 + + + + LCSH-002 + http://purl.org/dc/terms/LCSH + http://purl.org/dc/terms/ + LCSH + + Library of Congress Subject Headings + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#LCSH-002 + http://dublincore.org/usage/terms/history/#LCSH-001 + http://dublincore.org/usage/terms/history/#LCSH-002 + + + + LCSH-001 + http://purl.org/dc/terms/LCSH + http://purl.org/dc/terms/ + LCSH + + Library of Congress Subject Headings + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#LCSH-001 + http://dublincore.org/usage/terms/history/#LCSH-002 + + + + MESH-003 + http://purl.org/dc/terms/MESH + http://purl.org/dc/terms/ + MESH + ves-MESH + + The set of labeled concepts specified by the Medical Subject Headings. + http://www.nlm.nih.gov/mesh/meshhome.html + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#MESH-003 + http://dublincore.org/usage/terms/history/#MESH-002 + + + + MESH-002 + http://purl.org/dc/terms/MESH + http://purl.org/dc/terms/ + MESH + + Medical Subject Headings + http://www.nlm.nih.gov/mesh/meshhome.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#MESH-002 + http://dublincore.org/usage/terms/history/#MESH-001 + http://dublincore.org/usage/terms/history/#MESH-003 + + + + MESH-001 + http://purl.org/dc/terms/MESH + http://purl.org/dc/terms/ + MESH + + Medical Subject Headings + http://www.nlm.nih.gov/mesh/meshhome.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#MESH-001 + http://dublincore.org/usage/terms/history/#MESH-002 + + + + DDC-003 + http://purl.org/dc/terms/DDC + http://purl.org/dc/terms/ + DDC + ves-DDC + + The set of conceptual resources specified by the Dewey Decimal Classification. + http://www.oclc.org/dewey/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#DDC-003 + http://dublincore.org/usage/terms/history/#DDC-002 + + + + DDC-002 + http://purl.org/dc/terms/DDC + http://purl.org/dc/terms/ + DDC + + Dewey Decimal Classification + http://www.oclc.org/dewey/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#DDC-002 + http://dublincore.org/usage/terms/history/#DDC-001 + http://dublincore.org/usage/terms/history/#DDC-003 + + + + DDC-001 + http://purl.org/dc/terms/DDC + http://purl.org/dc/terms/ + DDC + + Dewey Decimal Classification + http://www.oclc.org/dewey/index.htm + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#DDC-001 + http://dublincore.org/usage/terms/history/#DDC-002 + + + + LCC-003 + http://purl.org/dc/terms/LCC + http://purl.org/dc/terms/ + LCC + ves-LCC + + The set of conceptual resources specified by the Library of Congress Classification. + http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#LCC-003 + http://dublincore.org/usage/terms/history/#LCC-002 + + + + LCC-002 + http://purl.org/dc/terms/LCC + http://purl.org/dc/terms/ + LCC + + Library of Congress Classification + http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#LCC-002 + http://dublincore.org/usage/terms/history/#LCC-001 + http://dublincore.org/usage/terms/history/#LCC-003 + + + + LCC-001 + http://purl.org/dc/terms/LCC + http://purl.org/dc/terms/ + LCC + + Library of Congress Classification + http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#LCC-001 + http://dublincore.org/usage/terms/history/#LCC-002 + + + + UDC-003 + http://purl.org/dc/terms/UDC + http://purl.org/dc/terms/ + UDC + ves-UDC + + The set of conceptual resources specified by the Universal Decimal Classification. + http://www.udcc.org/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#UDC-003 + http://dublincore.org/usage/terms/history/#UDC-002 + + + + UDC-002 + http://purl.org/dc/terms/UDC + http://purl.org/dc/terms/ + UDC + + Universal Decimal Classification + http://www.udcc.org/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#UDC-002 + http://dublincore.org/usage/terms/history/#UDC-001 + http://dublincore.org/usage/terms/history/#UDC-003 + + + + UDC-001 + http://purl.org/dc/terms/UDC + http://purl.org/dc/terms/ + UDC + + Universal Decimal Classification + http://www.udcc.org/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#UDC-001 + http://dublincore.org/usage/terms/history/#UDC-002 + + + + DCMIType-003 + http://purl.org/dc/terms/DCMIType + http://purl.org/dc/terms/ + DCMIType + ves-DCMIType + + The set of classes specified by the DCMI Type Vocabulary, used to categorize the nature or genre of the resource. + http://dublincore.org/documents/dcmi-type-vocabulary/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#DCMIType-003 + http://dublincore.org/usage/terms/history/#DCMIType-002 + + + + DCMIType-002 + http://purl.org/dc/terms/DCMIType + http://purl.org/dc/terms/ + DCMIType + + A list of types used to categorize the nature or genre + of the content of the resource. + http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/type + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#DCMIType-002 + http://dublincore.org/usage/terms/history/#DCMIType-001 + http://dublincore.org/usage/terms/history/#DCMIType-003 + + + + DCMIType-001 + http://purl.org/dc/terms/DCMIType + http://purl.org/dc/terms/ + DCMIType + + A list of types used to categorize the nature or genre + of the content of the resource. + http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/type + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#DCMIType-001 + http://dublincore.org/usage/terms/history/#DCMIType-002 + + + + IMT-004 + http://purl.org/dc/terms/IMT + http://purl.org/dc/terms/ + IMT + ves-IMT + + The set of media types specified by the Internet Assigned Numbers Authority. + http://www.iana.org/assignments/media-types/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#IMT-004 + http://dublincore.org/usage/terms/history/#IMT-003 + + + + IMT-003 + http://purl.org/dc/terms/IMT + http://purl.org/dc/terms/ + IMT + + The Internet media type of the resource. + http://www.iana.org/assignments/media-types/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/format + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2004-12-17 + http://dublincore.org/usage/decisions/#Decision-2004-03 + http://dublincore.org/usage/terms/history/#IMT-003 + http://dublincore.org/usage/terms/history/#IMT-002 + http://dublincore.org/usage/terms/history/#IMT-004 + + + + IMT-002 + http://purl.org/dc/terms/IMT + http://purl.org/dc/terms/ + IMT + + The Internet media type of the resource. + http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/format + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#IMT-002 + http://dublincore.org/usage/terms/history/#IMT-001 + http://dublincore.org/usage/terms/history/#IMT-003 + + + + IMT-001 + http://purl.org/dc/terms/IMT + http://purl.org/dc/terms/ + IMT + + The Internet media type of the resource. + http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/format + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#IMT-001 + http://dublincore.org/usage/terms/history/#IMT-002 + + + + TGN-003 + http://purl.org/dc/terms/TGN + http://purl.org/dc/terms/ + TGN + ves-TGN + + The set of places specified by the Getty Thesaurus of Geographic Names. + http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#TGN-003 + http://dublincore.org/usage/terms/history/#TGN-002 + + + + TGN-002 + http://purl.org/dc/terms/TGN + http://purl.org/dc/terms/ + TGN + + The Getty Thesaurus of Geographic Names + http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#TGN-002 + http://dublincore.org/usage/terms/history/#TGN-001 + http://dublincore.org/usage/terms/history/#TGN-003 + + + + TGN-001 + http://purl.org/dc/terms/TGN + http://purl.org/dc/terms/ + TGN + + The Getty Thesaurus of Geographic Names + http://shiva.pub.getty.edu/tgn_browser/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#TGN-001 + http://dublincore.org/usage/terms/history/#TGN-002 + + + + NLM-002 + NLM + ves-NLM + http://purl.org/dc/terms/NLM + http://purl.org/dc/terms/ + + The set of conceptual resources specified by the National Library of Medicine Classification. + http://wwwcf.nlm.nih.gov/class/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2005-06-13 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#NLM-002 + http://dublincore.org/usage/terms/history/#NLM-001 + + + + NLM-001 + NLM + http://purl.org/dc/terms/NLM + http://purl.org/dc/terms/ + + National Library of Medicine Classification + http://wwwcf.nlm.nih.gov/class/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-01 + http://dublincore.org/usage/terms/history/#NLM-001 + http://dublincore.org/usage/terms/history/#NLM-002 + + + diff --git a/2007-12-18/xmldata/dctype.xml b/2007-12-18/xmldata/dctype.xml new file mode 100755 index 0000000..8262e39 --- /dev/null +++ b/2007-12-18/xmldata/dctype.xml @@ -0,0 +1,751 @@ + + + + + + Collection-003 + http://purl.org/dc/dcmitype/Collection + http://purl.org/dc/dcmitype/ + Collection + dcmitype-Collection + + An aggregation of resources. + A collection is described as a group; its parts may also be separately described. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Collection-003 + http://dublincore.org/usage/terms/history/#Collection-002 + + + + Collection-002 + http://purl.org/dc/dcmitype/Collection + http://purl.org/dc/dcmitype/ + Collection + + An aggregation of resources. + A collection is described as a group; its parts + may also be separately described. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Collection-002 + http://dublincore.org/usage/terms/history/#Collection-001 + http://dublincore.org/usage/terms/history/#Collection-003 + + + + Collection-001 + http://purl.org/dc/dcmitype/Collection + http://purl.org/dc/dcmitype/ + Collection + + A collection is an aggregation of items. The term + collection means that the resource is described as a + group; its parts may be separately described and navigated. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Collection-001 + http://dublincore.org/usage/terms/history/#Collection-002 + + + + Dataset-003 + http://purl.org/dc/dcmitype/Dataset + http://purl.org/dc/dcmitype/ + Dataset + dcmitype-Dataset + + Data encoded in a defined structure. + Examples include lists, tables, and databases. A dataset may be useful for direct machine processing. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Dataset-003 + http://dublincore.org/usage/terms/history/#Dataset-002 + + + + Dataset-002 + http://purl.org/dc/dcmitype/Dataset + http://purl.org/dc/dcmitype/ + Dataset + + Data encoded in a defined structure. + Examples include lists, tables, and databases. + A dataset may be useful for direct machine processing. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Dataset-002 + http://dublincore.org/usage/terms/history/#Dataset-001 + http://dublincore.org/usage/terms/history/#Dataset-003 + + + + Dataset-001 + http://purl.org/dc/dcmitype/Dataset + http://purl.org/dc/dcmitype/ + Dataset + + A dataset is information encoded in a defined structure + (for example, lists, tables, and databases), intended to + be useful for direct machine processing. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Dataset-001 + http://dublincore.org/usage/terms/history/#Dataset-002 + + + + Event-003 + http://purl.org/dc/dcmitype/Event + http://purl.org/dc/dcmitype/ + Event + dcmitype-Event + + A non-persistent, time-based occurrence. + Metadata for an event provides descriptive information that is the basis for discovery of the purpose, location, duration, and responsible agents associated with an event. Examples include an exhibition, webcast, conference, workshop, open day, performance, battle, trial, wedding, tea party, conflagration. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Event-003 + http://dublincore.org/usage/terms/history/#Event-002 + + + + Event-002 + http://purl.org/dc/dcmitype/Event + http://purl.org/dc/dcmitype/ + Event + + A non-persistent, time-based occurrence. + Metadata for an event provides descriptive + information that is the basis for discovery of the + purpose, location, duration, and responsible + agents associated with an event. Examples + include an exhibition, webcast, conference, workshop, + open day, performance, battle, trial, wedding, tea + party, conflagration. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Event-002 + http://dublincore.org/usage/terms/history/#Event-001 + http://dublincore.org/usage/terms/history/#Event-003 + + + + Event-001 + http://purl.org/dc/dcmitype/Event + http://purl.org/dc/dcmitype/ + Event + + An event is a non-persistent, time-based occurrence. + Metadata for an event provides descriptive + information that is the basis for discovery of the + purpose, location, duration, responsible agents, and + links to related events and resources. The resource + of type event may not be retrievable if the described + instantiation has expired or is yet to occur. + Examples - exhibition, web-cast, conference, + workshop, open-day, performance, battle, trial, + wedding, tea-party, conflagration. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Event-001 + http://dublincore.org/usage/terms/history/#Event-002 + + + + Image-004 + http://purl.org/dc/dcmitype/Image + http://purl.org/dc/dcmitype/ + Image + dcmitype-Image + + A visual representation other than text. + Examples include images and photographs of physical objects, paintings, prints, drawings, other images and graphics, animations and moving pictures, film, diagrams, maps, musical notation. Note that Image may include both electronic and physical representations. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/MovingImage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Image-004 + http://dublincore.org/usage/terms/history/#Image-003 + + + + Image-003 + http://purl.org/dc/dcmitype/Image + http://purl.org/dc/dcmitype/ + Image + + A visual representation other than text. + Examples include images and photographs + of physical objects, paintings, prints, drawings, other + images and graphics, animations and moving + pictures, film, diagrams, maps, musical + notation. Note that Image may include both + electronic and physical representations. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/MovingImage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Image-003 + http://dublincore.org/usage/terms/history/#Image-002 + http://dublincore.org/usage/terms/history/#Image-004 + + + + Image-002 + http://purl.org/dc/dcmitype/Image + http://purl.org/dc/dcmitype/ + Image + + An image is a primarily symbolic visual representation + other than text. For example - images and photographs of + physical objects, paintings, prints, drawings, other + images and graphics, animations and moving pictures, + film, diagrams, maps, musical notation. Note that image + may include both electronic and physical representations. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/MovingImage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2003-11-18 + http://dublincore.org/usage/decisions/#Decision-2003-02 + http://dublincore.org/usage/terms/history/#Image-002 + http://dublincore.org/usage/terms/history/#Image-001 + http://dublincore.org/usage/terms/history/#Image-003 + + + + Image-001 + http://purl.org/dc/dcmitype/Image + http://purl.org/dc/dcmitype/ + Image + + An image is a primarily symbolic visual representation + other than text. For example - images and photographs of + physical objects, paintings, prints, drawings, other + images and graphics, animations and moving pictures, + film, diagrams, maps, musical notation. Note that image + may include both electronic and physical representations. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Image-001 + http://dublincore.org/usage/terms/history/#Image-002 + + + + InteractiveResource-003 + http://purl.org/dc/dcmitype/InteractiveResource + http://purl.org/dc/dcmitype/ + InteractiveResource + dcmitype-InteractiveResource + + A resource requiring interaction from the user to be understood, executed, or experienced. + Examples include forms on Web pages, applets, multimedia learning objects, chat services, or virtual reality environments. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#InteractiveResource-003 + http://dublincore.org/usage/terms/history/#InteractiveResource-002 + + + + InteractiveResource-002 + http://purl.org/dc/dcmitype/InteractiveResource + http://purl.org/dc/dcmitype/ + InteractiveResource + + A resource requiring interaction from the user to + be understood, executed, or experienced. + Examples include forms on Web pages, applets, multimedia + learning objects, chat services, or virtual reality + environments. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#InteractiveResource-002 + http://dublincore.org/usage/terms/history/#InteractiveResource-001 + http://dublincore.org/usage/terms/history/#InteractiveResource-003 + + + + InteractiveResource-001 + http://purl.org/dc/dcmitype/InteractiveResource + http://purl.org/dc/dcmitype/ + InteractiveResource + + An interactive resource is a resource which requires + interaction from the user to be understood, executed, + or experienced. For example - forms on web pages, applets, + multimedia learning objects, chat services, virtual + reality. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#InteractiveResource-001 + http://dublincore.org/usage/terms/history/#InteractiveResource-002 + + + + Service-003 + http://purl.org/dc/dcmitype/Service + http://purl.org/dc/dcmitype/ + Service + dcmitype-Service + + A system that provides one or more functions. + Examples include a photocopying service, a banking service, an authentication service, interlibrary loans, a Z39.50 or Web server. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Service-003 + http://dublincore.org/usage/terms/history/#Service-002 + + + + Service-002 + http://purl.org/dc/dcmitype/Service + http://purl.org/dc/dcmitype/ + Service + + A system that provides one or more functions. + Examples include a photocopying service, a banking service, + an authentication service, interlibrary loans, a Z39.50 or + Web server. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Service-002 + http://dublincore.org/usage/terms/history/#Service-001 + http://dublincore.org/usage/terms/history/#Service-003 + + + + Service-001 + http://purl.org/dc/dcmitype/Service + http://purl.org/dc/dcmitype/ + Service + + A service is a system that provides one or more + functions of value to the end-user. Examples include: + a photocopying service, a banking service, an + authentication service, interlibrary loans, a Z39.50 + or Web server. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Service-001 + http://dublincore.org/usage/terms/history/#Service-002 + + + + Software-003 + http://purl.org/dc/dcmitype/Software + http://purl.org/dc/dcmitype/ + Software + dcmitype-Software + + A computer program in source or compiled form. + Examples include a C source file, MS-Windows .exe executable, or Perl script. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Software-003 + http://dublincore.org/usage/terms/history/#Software-002 + + + + Software-002 + http://purl.org/dc/dcmitype/Software + http://purl.org/dc/dcmitype/ + Software + + A computer program in source or compiled form. + Examples include a C source file, MS-Windows .exe executable, + or Perl script. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Software-002 + http://dublincore.org/usage/terms/history/#Software-001 + http://dublincore.org/usage/terms/history/#Software-003 + + + + Software-001 + http://purl.org/dc/dcmitype/Software + http://purl.org/dc/dcmitype/ + Software + + Software is a computer program in source or + compiled form which may be available for installation + non-transiently on another machine. For software which + exists only to create an interactive environment, use + interactive instead. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Software-001 + http://dublincore.org/usage/terms/history/#Software-002 + + + + Sound-003 + http://purl.org/dc/dcmitype/Sound + http://purl.org/dc/dcmitype/ + Sound + dcmitype-Sound + + A resource primarily intended to be heard. + Examples include a music playback file format, an audio compact disc, and recorded speech or sounds. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Sound-003 + http://dublincore.org/usage/terms/history/#Sound-002 + + + + Sound-002 + http://purl.org/dc/dcmitype/Sound + http://purl.org/dc/dcmitype/ + Sound + + A resource primarily intended to be heard. + Examples include a music playback file format, an audio + compact disc, and recorded speech or sounds. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Sound-002 + http://dublincore.org/usage/terms/history/#Sound-001 + http://dublincore.org/usage/terms/history/#Sound-003 + + + + Sound-001 + http://purl.org/dc/dcmitype/Sound + http://purl.org/dc/dcmitype/ + Sound + + A sound is a resource whose content is primarily + intended to be rendered as audio. For example - a + music playback file format, an audio compact disc, + and recorded speech or sounds. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Sound-001 + http://dublincore.org/usage/terms/history/#Sound-002 + + + + Text-003 + http://purl.org/dc/dcmitype/Text + http://purl.org/dc/dcmitype/ + Text + dcmitype-Text + + A resource consisting primarily of words for reading. + Examples include books, letters, dissertations, poems, newspapers, articles, archives of mailing lists. Note that facsimiles or images of texts are still of the genre Text. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Text-003 + http://dublincore.org/usage/terms/history/#Text-002 + + + + Text-002 + http://purl.org/dc/dcmitype/Text + http://purl.org/dc/dcmitype/ + Text + + A resource consisting primarily of words for reading. + Examples include books, letters, dissertations, + poems, newspapers, articles, archives of mailing + lists. Note that facsimiles or images of + texts are still of the genre Text. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Text-002 + http://dublincore.org/usage/terms/history/#Text-001 + http://dublincore.org/usage/terms/history/#Text-003 + + + + Text-001 + http://purl.org/dc/dcmitype/Text + http://purl.org/dc/dcmitype/ + Text + + A text is a resource whose content is primarily + words for reading. For example - books, letters, + dissertations, poems, newspapers, articles, + archives of mailing lists. Note that facsimiles + or images of texts are still of the genre text. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Text-001 + http://dublincore.org/usage/terms/history/#Text-002 + + + + PhysicalObject-003 + http://purl.org/dc/dcmitype/PhysicalObject + http://purl.org/dc/dcmitype/ + PhysicalObject + dcmitype-PhysicalObject + + An inanimate, three-dimensional object or substance. + Note that digital representations of, or surrogates for, these objects should use Image, Text or one of the other types. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2002-07-13 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#PhysicalObject-003 + http://dublincore.org/usage/terms/history/#PhysicalObject-002 + + + + PhysicalObject-002 + http://purl.org/dc/dcmitype/PhysicalObject + http://purl.org/dc/dcmitype/ + PhysicalObject + + An inanimate, three-dimensional object or substance. + Note that digital representations of, or surrogates for, + these objects should use Image, Text or one of the other + types. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2002-07-13 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#PhysicalObject-002 + http://dublincore.org/usage/terms/history/#PhysicalObject-001 + http://dublincore.org/usage/terms/history/#PhysicalObject-003 + + + + PhysicalObject-001 + http://purl.org/dc/dcmitype/PhysicalObject + http://purl.org/dc/dcmitype/ + PhysicalObject + + An inanimate, three-dimensional object or substance. + For example -- a computer, the great pyramid, a + sculpture. Note that digital representations + of, or surrogates for, these things should use Image, + Text or one of the other types. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#PhysicalObject-001 + http://dublincore.org/usage/terms/history/#PhysicalObject-002 + + + + StillImage-003 + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/ + StillImage + dcmitype-StillImage + + A static visual representation. + Examples include paintings, drawings, graphic designs, plans and maps. Recommended best practice is to assign the type Text to images of textual materials. Instances of the type Still Image must also be describable as instances of the broader type Image. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/terms/history/#StillImage-003 + http://dublincore.org/usage/terms/history/#StillImage-002 + + + + StillImage-002 + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/ + StillImage + + A static visual representation. + Examples include paintings, drawings, + graphic designs, plans and maps. Recommended + best practice is to assign the type Text to + images of textual materials. Instances of the + type Still Image must also be describable as + instances of the broader type Image. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + 2006-08-28 + http://dublincore.org/usage/terms/history/#StillImage-002 + http://dublincore.org/usage/terms/history/#StillImage-001 + http://dublincore.org/usage/terms/history/#StillImage-003 + + + + StillImage-001 + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/ + StillImage + + A static visual representation. Examples of + still images are: paintings, drawings, graphic designs, + plans and maps. + Recommended best practice is to assign the type + "text" to images of textual materials. Instances of + the type "Still Image" must also be describable as + instances of the broader type "Image". + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2003-02 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + http://dublincore.org/usage/terms/history/#StillImage-001 + http://dublincore.org/usage/terms/history/#StillImage-002 + + + + MovingImage-003 + http://purl.org/dc/dcmitype/MovingImage + http://purl.org/dc/dcmitype/ + MovingImage + dcmitype-MovingImage + + A series of visual representations imparting an impression of motion when shown in succession. + Examples include animations, movies, television programs, videos, zoetropes, or visual output from a simulation. Instances of the type Moving Image must also be describable as instances of the broader type Image. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/terms/history/#MovingImage-003 + http://dublincore.org/usage/terms/history/#MovingImage-002 + + + + MovingImage-002 + http://purl.org/dc/dcmitype/MovingImage + http://purl.org/dc/dcmitype/ + MovingImage + + A series of visual representations imparting + an impression of motion when shown in succession. + Examples include animations, movies, television programs, + videos, zoetropes, or visual output from a simulation. + Instances of the type Moving Image must also be describable + as instances of the broader type Image. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + 2006-08-28 + http://dublincore.org/usage/terms/history/#MovingImage-002 + http://dublincore.org/usage/terms/history/#MovingImage-001 + http://dublincore.org/usage/terms/history/#MovingImage-003 + + + + MovingImage-001 + http://purl.org/dc/dcmitype/MovingImage + http://purl.org/dc/dcmitype/ + MovingImage + + A series of visual representations that, + when shown in succession, impart an impression + of motion. Examples of moving images are: + animations, movies, television programs, + videos, zoetropes, or visual output from + a simulation. + Instances of the type "Moving Image" must + also be describable as instances of the broader type "Image". + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2003-02 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + http://dublincore.org/usage/terms/history/#MovingImage-001 + http://dublincore.org/usage/terms/history/#MovingImage-002 + + + diff --git a/2008-01-14/headers/header-doc-dcterms.xml b/2008-01-14/headers/header-doc-dcterms.xml new file mode 100755 index 0000000..8e26c52 --- /dev/null +++ b/2008-01-14/headers/header-doc-dcterms.xml @@ -0,0 +1,19 @@ + + +

+ DCMI Metadata Terms + mailto:dc-usage@jiscmail.ac.uk + + http://dublincore.org/documents/2008/01/14/dcmi-terms/ + 2008-01-14 + + http://dublincore.org/documents/dcmi-terms/ + http://dublincore.org/documents/2006/12/18/dcmi-terms/ + + http://dublincore.org/resources/translations/ + This is a DCMI Recommendation. + + This document is an up-to-date specification of all metadata terms maintained by the Dublin Core Metadata Initiative, including properties, vocabulary encoding schemes, syntax encoding schemes, and classes. + +

+ diff --git a/2008-01-14/headers/header-doc-dctype.xml b/2008-01-14/headers/header-doc-dctype.xml new file mode 100755 index 0000000..678cdeb --- /dev/null +++ b/2008-01-14/headers/header-doc-dctype.xml @@ -0,0 +1,18 @@ + + +

+ DCMI Type Vocabulary + mailto:dc-usage@jiscmail.ac.uk + + http://dublincore.org/documents/2008/01/14/dcmi-type-vocabulary/ + 2008-01-14 + + http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/documents/2006/08/28/dcmi-type-vocabulary/ + Not applicable + http://dublincore.org/resources/translations/ + This is a DCMI Recommendation. + + The DCMI Type Vocabulary provides a general, cross-domain list of approved terms that may be used as values for the Resource Type element to identify the genre of a resource. The terms documented here are also included in the more comprehensive document "DCMI Metadata Terms" at http://dublincore.org/documents/dcmi-terms/. + +

diff --git a/2008-01-14/headers/header-doc-history.xml b/2008-01-14/headers/header-doc-history.xml new file mode 100755 index 0000000..177e380 --- /dev/null +++ b/2008-01-14/headers/header-doc-history.xml @@ -0,0 +1,18 @@ + + +

+ DCMI Metadata Terms: A complete historical record + mailto:dc-usage@jiscmail.ac.uk + + http://dublincore.org/usage/terms/history/2008/01/14/ + 2008-01-14 + + http://dublincore.org/usage/terms/history/ + http://dublincore.org/usage/terms/history/2006/12/18/ + Not applicable + http://dublincore.org/resources/translations/ + This is a DCMI Recommendation. + + This document is a consolidated, historically complete, and updated representation of all Elements, Element Refinements, Encoding Schemes, and Vocabulary Terms in DCMI-maintained namespaces in all of their historical versions both current and superseded. While this document may be useful for tracking changes in the status and attributes of terms over time, most users will need just "the latest" information, which is held in the document "DCMI Metadata Terms" at http://dublincore.org/usage/documents/dcmi-terms/. + +

diff --git a/2008-01-14/headers/header-rdf-dcam.xml b/2008-01-14/headers/header-rdf-dcam.xml new file mode 100755 index 0000000..3be81fa --- /dev/null +++ b/2008-01-14/headers/header-rdf-dcam.xml @@ -0,0 +1,7 @@ + + +

+ DCMI Namespace for metadata terms related to the DCMI Abstract Model + The Dublin Core Metadata Initiative + 2008-01-14 +

diff --git a/2008-01-14/headers/header-rdf-dcelements.xml b/2008-01-14/headers/header-rdf-dcelements.xml new file mode 100755 index 0000000..57f535c --- /dev/null +++ b/2008-01-14/headers/header-rdf-dcelements.xml @@ -0,0 +1,7 @@ + + +

+ DCMI Namespace for the Dublin Core Metadata Element Set, Version 1.1 + The Dublin Core Metadata Initiative + 2008-01-14 +

diff --git a/2008-01-14/headers/header-rdf-dcterms.xml b/2008-01-14/headers/header-rdf-dcterms.xml new file mode 100755 index 0000000..b0bb898 --- /dev/null +++ b/2008-01-14/headers/header-rdf-dcterms.xml @@ -0,0 +1,7 @@ + + +

+ DCMI Namespace for metadata terms in the http://purl.org/dc/terms/ namespace + The Dublin Core Metadata Initiative + 2008-01-14 +

diff --git a/2008-01-14/headers/header-rdf-dctype.xml b/2008-01-14/headers/header-rdf-dctype.xml new file mode 100755 index 0000000..2be2b92 --- /dev/null +++ b/2008-01-14/headers/header-rdf-dctype.xml @@ -0,0 +1,7 @@ + + +

+ DCMI Namespace for metadata terms of the DCMI Type Vocabulary + The Dublin Core Metadata Initiative + 2008-01-14 +

diff --git a/2008-01-14/headers/intro.dcmi-terms.xsl b/2008-01-14/headers/intro.dcmi-terms.xsl new file mode 100755 index 0000000..550e35e --- /dev/null +++ b/2008-01-14/headers/intro.dcmi-terms.xsl @@ -0,0 +1,328 @@ + + + + + + +

+This document is an up-to-date, authoritative specification +of all metadata terms maintained by the Dublin Core Metadata +Initiative. Included are the fifteen terms of the Dublin Core +Metadata Element Set, which have also been published as IETF +RFC 5013 [RFC5013], ANSI/NISO Standard +Z39.85-2007 [NISOZ3985], and ISO +Standard 15836-21003 [ISO15836]. +RDF Schema versions of the DCMI term declarations +are available at [RDFSCHEMAS]. + +

+Each term is specified with the following minimal set of attributes: +

+ + + + + + + + + + + +
+Name: + +A token assigned to the term, unique within the term's DCMI namespace. +
+Label: + +The human-readable label assigned to the term. +
+URI: + +The Uniform Resource Identifier used to uniquely identify a term. +
+Definition: + +A statement that represents the concept and essential nature of the term. +
+Type of Term: + +The type of term as described in the DCMI Abstract Model [DCAM]. +
+ +

+Where applicable, the following attributes provide additional information about a term: +

+ + + + + + + + + + + + + + + + + + + + + + + +
+Comment: + +Additional information about the term or its application. +
+See: + +Authoritative documentation related to the term. +
+References: + +A resource referenced in the Definition or Comment. +
+Refines: + +A Property of which the described term is a Sub-Property. +
+Broader Than: + +A Class of which the described term is a Super-Class. +
+Narrower Than: + +A Class of which the described term is a Sub-Class. +
+Has Domain: + +A Class of which a resource described by the term is an Instance. +
+Has Range: + +A Class of which a value described by the term is an Instance. +
+Member Of: + +An enumerated set of resources (Vocabulary Encoding Scheme) of which the term is a Member. +
+Instance Of: + +A Class of which the described term is an instance. +
+Version: + +A specific historical description of a term. +
+ + +

+This documentation is maintained by the DCMI Usage +Board in accordance with the DCMI Namespace Policy +[NAMESPACE]. The namespace policy +says that DCMI terms are identified using Uniform Resource +Identifiers (URIs). In accordance with the principle that +distinct URIs should be assigned to distinct resources, the +policy sets limits on the range of editorial changes that +may allowably be made to the official labels, definitions, +and usage comments associated with DCMI terms. By policy, any +changes of meaning judged "likely to have a substantial impact +on either machine processing of DCMI terms or the functional +semantics of the terms" must trigger the creation of a new, +distinct term with a new, distinct URI. +For further information about the change history +and the corresponding Usage Board decisions, please +consult the document "DCMI Metadata Terms: A complete +historical record" [HISTORY]. + +

+The current release of "DCMI Metadata Terms" reflects editorial +changes approved since December 2006, notably:

    +
  • improved definitions, descriptive labels, and usage comments,
  • +
  • differentiation of Encoding Schemes between Syntax Encoding +Schemes and Vocabulary Encoding Schemes, with clarified definitions,
  • +
  • updated references to standards maintained by the Internet +Engineering Task Force and the International Organization for +Standardization (ISO),
  • +
  • two new terms related to the DCMI Abstract Model [DCAM],
  • +
  • clarification in the DCMI Abstract Model that a Vocabulary Encoding +Scheme is an "enumerated set of resources" (such as the DCMI Type +Vocabulary, a set of classes), and
  • +
  • the specification of formal domains and ranges (and in some +cases, subproperty relations) for DCMI properties, as discussed below.
  • +
+These changes are described more fully in the +documents "Revisions to DCMI Metadata Terms" [REVISIONS] and "Domains and Ranges for +DCMI Properties" [DOMAINS]. + +

+Formal domains and ranges specify what kind of described +resources and value resources are associated with a given +property. Domains and ranges express the meanings implicit in +natural-language definitions in an explicit form that is usable +for the automatic processing of logical inferences. +When a given property is encountered, an inferencing application +may use the domains and ranges assigned by DCMI to that property +in order to make inferences about the resources described thereby. + +

+So as not to affect the conformance of existing implementations +of "simple Dublin Core" in RDF, domains and ranges have +not been specified for the fifteen properties of the dc: +namespace (http://purl.org/dc/elements/1.1/). Rather, +fifteen new properties with "names" identical to those of +DCMES Version 1.1 have been created in the dcterms: namespace +(http://purl.org/dc/terms/). These fifteen new properties +have been defined as subproperties of the corresponding +properties of DCMES Version 1.1 and assigned domains and +ranges as outlined in this document. + +

+Implementers may freely choose to use these fifteen properties +either in their legacy dc: variant (e.g., http://purl.org/dc/elements/1.1/creator) or +in the dcterms: variant (e.g., http://purl.org/dc/terms/creator) depending +on application requirements. The RDF schemas of +the DCMI namespaces describe the subproperty relation of +dcterms:creator to dc:creator for use by Semantic +Web-aware applications. Over time, however, implementers are +encouraged to use the semantically more precise dcterms: +properties, as they more fully follow emerging notions of +best practice for machine-processable metadata. + +

+This document reflects the terminology used in the revised DCMI Abstract +Model approved as a DCMI Recommendation in 2007 [DCAM]. +A table comparing the two terminologies is presented below. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
DCMI Grammatical Principles [DCGRAM]DCMI Abstract Model [DCAM]
vocabulary term +resource
element +property or element
element refinement +property with sub-property of relation
encoding scheme +syntax encoding scheme or vocabulary encoding scheme
syntax encoding scheme +syntax encoding scheme
qualifier +property with sub-property of relation, syntax encoding scheme, or vocabulary encoding scheme
vocabulary encoding scheme +vocabulary encoding scheme
+ +

+DCMI maintains a Web page with pointers to known translations +of semantic specifications and related DCMI documents [TRANSLATIONS] + +

+

References

+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ [DCAM] + +http://dublincore.org/documents/2007/06/04/abstract-model/ +
+ [DCMES-CHANGES] + +http://dublincore.org/usage/decisions/2006/2006-03.dcmes-changes.shtml +
+ [DCGRAM] + +http://dublincore.org/usage/documents/principles/ +
+ [DOMAINS] + +http://dublincore.org/documents/2008/01/14/domain-range/ +
+ [HISTORY] + +http://dublincore.org/usage/terms/history/ +
+ [ISO15836] + +http://www.niso.org/international/SC4/n515.pdf +
+ [NAMESPACE] + +http://dublincore.org/documents/dcmi-namespace/ +
+ [NISOZ3985] + +http://www.niso.org/standards/resources/Z39-85-2007.pdf +
+ [RDFSCHEMAS] + +http://dublincore.org/schemas/rdfs/ +
+ [RFC5013] + +http://www.ietf.org/rfc/rfc5013.txt +
+ [TRANSLATIONS] + +http://dublincore.org/resources/translations/ +
+
+
+ diff --git a/2008-01-14/headers/intro.history.xsl b/2008-01-14/headers/intro.history.xsl new file mode 100755 index 0000000..738ca48 --- /dev/null +++ b/2008-01-14/headers/intro.history.xsl @@ -0,0 +1,86 @@ + + + + + + +

Introduction

+ +

This document is an authoritative specification of +all metadata terms maintained by the Dublin Core Metadata +Initiative in all of their historical versions. + +

Most users will not need the historical detail presented +here and should instead consult the document "DCMI Metadata +Terms", which presents only the most current information on +terms [TERMS]. In addition to the attributes +used to describe terms in "DCMI Metadata Terms" [TERMS], +this document includes additional information related to the versioning +history of individual terms: + +

+ + + + + + + + + + + + + + + + +
+Namespace: + +The DCMI Namespace within which the term is defined. +
+Date Issued: + +Date on which a term was first declared. +
+Date Modified: + +Date on which a term description was subsequently modified. +
+Decision: + +A Usage Board decision with regard to a description of a term. +
+Replaces: + +The immediately precedent historical description of a term. +
+Is Replaced By: + +The immediately subsequent historical description of a term. +
+Status: + +Status assigned to the term by the DCMI Usage Board. +
+Qualifies: + +A term qualified by an Encoding Scheme. (This is no longer used as of 2008-01-14.) +
+ +

+

References

+ + + + +
+ [TERMS] + +http://dublincore.org/documents/dcmi-terms/ +
+ +
+
diff --git a/2008-01-14/xmldata/dcam.xml b/2008-01-14/xmldata/dcam.xml new file mode 100755 index 0000000..2f58896 --- /dev/null +++ b/2008-01-14/xmldata/dcam.xml @@ -0,0 +1,57 @@ + + + + + + memberOf-002 + memberOf + dcam-memberOf + http://purl.org/dc/dcam/memberOf + http://purl.org/dc/dcam/ + + A relationship between a resource and a vocabulary encoding scheme which indicates that the resource is a member of a set. + http://dublincore.org/documents/2007/06/04/abstract-model/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + 2008-02-18 + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#memberOf-002 + http://dublincore.org/usage/terms/history/#memberOf-001 + + + + memberOf-001 + memberOf + dcam-memberOf + http://purl.org/dc/dcam/memberOf + http://purl.org/dc/dcam/ + + A relationship between a resource and a vocabulary encoding scheme which indicates that the resource is a member of a set. + http://dublincore.org/documents/2007/06/04/abstract-model/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#memberOf-001 + http://dublincore.org/usage/terms/history/#memberOf-002 + + + + VocabularyEncodingScheme-001 + VocabularyEncodingScheme + dcam-VocabularyEncodingScheme + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://purl.org/dc/dcam/ + + An enumerated set of resources. + http://dublincore.org/documents/2007/06/04/abstract-model/ + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#VocabularyEncodingScheme-001 + + + diff --git a/2008-01-14/xmldata/dcelements.xml b/2008-01-14/xmldata/dcelements.xml new file mode 100755 index 0000000..bc212b1 --- /dev/null +++ b/2008-01-14/xmldata/dcelements.xml @@ -0,0 +1,1939 @@ + + + + + + title-006 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + title + elements-title + + A name given to the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#title-006 + http://dublincore.org/usage/terms/history/#title-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + title-005 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + title + + A name given to the resource. + Typically, a Title will be a name by which + the resource is formally known. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#title-005 + http://dublincore.org/usage/terms/history/#title-004 + http://dublincore.org/usage/terms/history/#title-006 + + + + title-004 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + title + + A name given to the resource. + Typically, a Title will be a name by which the resource is + formally known. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#title-004 + http://dublincore.org/usage/terms/history/#title-003 + http://dublincore.org/usage/terms/history/#title-005 + + + + title-003 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + Title + + A name given to the resource. + Typically, a Title will be a name by which the resource is + formally known. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#title-003 + http://dublincore.org/usage/terms/history/#title-002 + http://dublincore.org/usage/terms/history/#title-004 + + + + title-002 + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/elements/1.1/ + Title + + A name given to the resource. + Typically, a Title will be a name by which the resource is + formally known. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#title-002 + http://dublincore.org/usage/terms/history/#title-003 + + + + title-001 + http://purl.org/dc/elements/1.0/title + http://purl.org/dc/elements/1.0/ + Title + + The name given to the resource, usually by the Creator or + Publisher. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#title-001 + n.a. + + + + creator-006 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + creator + elements-creator + + An entity primarily responsible for making the resource. + Examples of a Creator include a person, an organization, or a service. Typically, the name of a Creator should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#creator-006 + http://dublincore.org/usage/terms/history/#creator-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + creator-005 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + creator + + An entity primarily responsible for making + the resource. + Examples of a Creator include a person, an + organization, or a service. Typically, the name + of a Creator should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#creator-005 + http://dublincore.org/usage/terms/history/#creator-004 + http://dublincore.org/usage/terms/history/#creator-006 + + + + creator-004 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + creator + + An entity primarily responsible for making the content + of the resource. + Examples of a Creator include a person, an organisation, + or a service. Typically, the name of a Creator should + be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#creator-004 + http://dublincore.org/usage/terms/history/#creator-003 + http://dublincore.org/usage/terms/history/#creator-005 + + + + creator-003 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + Creator + + An entity primarily responsible for making the content + of the resource. + Examples of a Creator include a person, an organisation, + or a service. Typically, the name of a Creator should + be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#creator-003 + http://dublincore.org/usage/terms/history/#creator-002 + http://dublincore.org/usage/terms/history/#creator-004 + + + + creator-002 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/elements/1.1/ + Creator + + An entity primarily responsible for making the content of + the resource. + Examples of a Creator include a person, an organisation, + or a service. Typically, the name of a Creator should be + used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#creator-002 + http://dublincore.org/usage/terms/history/#creator-003 + + + + creator-001 + http://purl.org/dc/elements/1.0/creator + http://purl.org/dc/elements/1.0/ + Creator + + The person or organization primarily responsible for + creating the intellectual content of the resource. For + example, authors in the case of written documents, + artists, photographers, or illustrators in the case of + visual resources. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#creator-001 + n.a. + + + + subject-006 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + subject + elements-subject + + The topic of the resource. + Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary. To describe the spatial or temporal topic of the resource, use the Coverage element. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#subject-006 + http://dublincore.org/usage/terms/history/#subject-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + subject-005 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + subject + + The topic of the resource. + Typically, the topic will be represented using + keywords, key phrases, or classification codes. + Recommended best practice is to use a controlled + vocabulary. To describe the spatial or temporal + topic of the resource, use the Coverage element. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#subject-005 + http://dublincore.org/usage/terms/history/#subject-004 + http://dublincore.org/usage/terms/history/#subject-006 + + + + subject-004 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + subject + + The topic of the content of the resource. + Typically, a Subject will be expressed as keywords, + key phrases or classification codes that describe a topic + of the resource. Recommended best practice is to select + a value from a controlled vocabulary or formal + classification scheme. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#subject-004 + http://dublincore.org/usage/terms/history/#subject-003 + http://dublincore.org/usage/terms/history/#subject-005 + + + + subject-003 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + Subject + + The topic of the content of the resource. + Typically, a Subject will be expressed as keywords, + key phrases or classification codes that describe a topic + of the resource. Recommended best practice is to select + a value from a controlled vocabulary or formal + classification scheme. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#subject-003 + http://dublincore.org/usage/terms/history/#subject-002 + http://dublincore.org/usage/terms/history/#subject-004 + + + + subject-002 + http://purl.org/dc/elements/1.1/subject + http://purl.org/dc/elements/1.1/ + Subject + + The topic of the content of the resource. + Typically, a Subject will be expressed as keywords, + key phrases or classification codes that describe a topic + of the resource. Recommended best practice is to select + a value from a controlled vocabulary or formal + classification scheme. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#subject-002 + http://dublincore.org/usage/terms/history/#subject-003 + + + + subject-001 + http://purl.org/dc/elements/1.0/subject + http://purl.org/dc/elements/1.0/ + Subject + + The topic of the resource. Typically, subject will be + expressed as keywords or phrases that describe the subject + or content of the resource. The use of controlled + vocabularies and formal classification schemas is + encouraged. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#subject-001 + n.a. + + + + description-006 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + description + elements-description + + An account of the resource. + Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#description-006 + http://dublincore.org/usage/terms/history/#description-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + description-005 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + description + + An account of the resource. + Description may include but is not limited to: + an abstract, a table of contents, a graphical + representation, or a free-text account of + the resource. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#description-005 + http://dublincore.org/usage/terms/history/#description-004 + http://dublincore.org/usage/terms/history/#description-006 + + + + description-004 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + description + + An account of the content of the resource. + Description may include but is not limited to: an abstract, + table of contents, reference to a graphical representation + of content or a free-text account of the content. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#description-004 + http://dublincore.org/usage/terms/history/#description-003 + http://dublincore.org/usage/terms/history/#description-005 + + + + description-003 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + Description + + An account of the content of the resource. + Description may include but is not limited to: an abstract, + table of contents, reference to a graphical representation + of content or a free-text account of the content. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#description-003 + http://dublincore.org/usage/terms/history/#description-002 + http://dublincore.org/usage/terms/history/#description-004 + + + + description-002 + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/elements/1.1/ + Description + + An account of the content of the resource. + Description may include but is not limited to: an abstract, + table of contents, reference to a graphical representation + of content or a free-text account of the content. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#description-002 + http://dublincore.org/usage/terms/history/#description-003 + + + + description-001 + http://purl.org/dc/elements/1.0/description + http://purl.org/dc/elements/1.0/ + Description + + A textual description of the content of the resource, + including abstracts in the case of document-like objects or + content descriptions in the case of visual resources. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#description-001 + n.a. + + + + publisher-006 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + publisher + elements-publisher + + An entity responsible for making the resource available. + Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#publisher-006 + http://dublincore.org/usage/terms/history/#publisher-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + publisher-005 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + publisher + + An entity responsible for making the resource + available. + Examples of a Publisher include a person, an + organization, or a service. Typically, the name of + a Publisher should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#publisher-005 + http://dublincore.org/usage/terms/history/#publisher-004 + http://dublincore.org/usage/terms/history/#publisher-006 + + + + publisher-004 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + publisher + + An entity responsible for making the resource available + Examples of a Publisher include a person, an organisation, + or a service. + Typically, the name of a Publisher should be used to + indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#publisher-004 + http://dublincore.org/usage/terms/history/#publisher-003 + http://dublincore.org/usage/terms/history/#publisher-005 + + + + publisher-003 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + Publisher + + An entity responsible for making the resource available + Examples of a Publisher include a person, an organisation, + or a service. + Typically, the name of a Publisher should be used to + indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#publisher-003 + http://dublincore.org/usage/terms/history/#publisher-002 + http://dublincore.org/usage/terms/history/#publisher-004 + + + + publisher-002 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/elements/1.1/ + Publisher + + An entity responsible for making the resource available. + Examples of a Publisher include a person, an organisation, + or a service. + Typically, the name of a Publisher should be used to + indicate the entity. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#publisher-002 + http://dublincore.org/usage/terms/history/#publisher-003 + + + + publisher-001 + http://purl.org/dc/elements/1.0/publisher + http://purl.org/dc/elements/1.0/ + Publisher + + The entity responsible for making the resource available + in its present form, such as a publishing house, a + university department, or a corporate entity. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#publisher-001 + n.a. + + + + contributor-006 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + contributor + elements-contributor + + An entity responsible for making contributions to the resource. + Examples of a Contributor include a person, an organization, or a service. Typically, the name of a Contributor should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#contributor-006 + http://dublincore.org/usage/terms/history/#contributor-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + contributor-005 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + contributor + + An entity responsible for making + contributions to the resource. + Examples of a Contributor include a person, + an organization, or a service. Typically, the + name of a Contributor should be used to indicate + the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#contributor-005 + http://dublincore.org/usage/terms/history/#contributor-004 + http://dublincore.org/usage/terms/history/#contributor-006 + + + + contributor-004 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + contributor + + An entity responsible for making contributions to the + content of the resource. + Examples of a Contributor include a person, an + organisation, or a service. Typically, the name of a + Contributor should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#contributor-004 + http://dublincore.org/usage/terms/history/#contributor-003 + http://dublincore.org/usage/terms/history/#contributor-005 + + + + contributor-003 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + Contributor + + An entity responsible for making contributions to the + content of the resource. + Examples of a Contributor include a person, an + organisation, or a service. Typically, the name of a + Contributor should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#contributor-003 + http://dublincore.org/usage/terms/history/#contributor-002 + http://dublincore.org/usage/terms/history/#contributor-004 + + + + contributor-002 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/elements/1.1/ + Contributor + + An entity responsible for making contributions to the + content of the resource. + Examples of a Contributor include a person, an + organisation, or a service. Typically, the name of a + Contributor should be used to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#contributor-002 + http://dublincore.org/usage/terms/history/#contributor-003 + + + + contributor-001 + http://purl.org/dc/elements/1.0/contributor + http://purl.org/dc/elements/1.0/ + Contributor + + A person or organization not specified in a Creator + element who has made significant intellectual + contributions to the resource but whose contribution + is secondary to any person or organization specified + in a Creator element (for example, editor, transcriber, + and illustrator). + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#contributor-001 + n.a. + + + + date-006 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + date + elements-date + + A point or period of time associated with an event in the lifecycle of the resource. + Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#date-006 + http://dublincore.org/usage/terms/history/#date-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + date-005 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + date + + A point or period of time associated with an + event in the lifecycle of the resource. + Date may be used to express temporal information + at any level of granularity. Recommended best + practice is to use an encoding scheme, such as + the W3CDTF profile of ISO 8601 [W3CDTF]. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#date-005 + http://dublincore.org/usage/terms/history/#date-004 + http://dublincore.org/usage/terms/history/#date-006 + + + + date-004 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + date + + A date associated with an event in the life cycle of the + resource. + Typically, Date will be associated with the creation or + availability of the resource. Recommended best practice + for encoding the date value is defined in a profile of + ISO 8601 [W3CDTF] and follows the YYYY-MM-DD format. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#date-004 + http://dublincore.org/usage/terms/history/#date-003 + http://dublincore.org/usage/terms/history/#date-005 + + + + date-003 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + Date + + A date associated with an event in the life cycle of the + resource. + Typically, Date will be associated with the creation or + availability of the resource. Recommended best practice + for encoding the date value is defined in a profile of + ISO 8601 [W3CDTF] and follows the YYYY-MM-DD format. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#date-003 + http://dublincore.org/usage/terms/history/#date-002 + http://dublincore.org/usage/terms/history/#date-004 + + + + date-002 + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/elements/1.1/ + Date + + A date associated with an event in the life cycle of the + resource. + Typically, Date will be associated with the creation or + availability of the resource. Recommended best practice + for encoding the date value is defined in a profile of + ISO 8601 [W3CDTF] and follows the YYYY-MM-DD format. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#date-002 + http://dublincore.org/usage/terms/history/#date-003 + + + + date-001 + http://purl.org/dc/elements/1.0/date + http://purl.org/dc/elements/1.0/ + Date + + A date associated with the creation or availability of + the resource. Recommended best practice is defined in + a profile of ISO 8601 [W3CDTF] that includes (among + others) dates of the forms YYYY and YYYY-MM-DD. In this + scheme, the date 1994-11-05 corresponds to November 5, + 1994. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#date-001 + n.a. + + + + type-006 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + type + elements-type + + The nature or genre of the resource. + Recommended best practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [DCMITYPE]. To describe the file format, physical medium, or dimensions of the resource, use the Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#type-006 + http://dublincore.org/usage/terms/history/#type-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + type-005 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + type + + The nature or genre of the resource. + Recommended best practice is to use a controlled + vocabulary such as the DCMI Type Vocabulary + [DCMITYPE]. To describe the file format, physical + medium, or dimensions of the resource, use the + Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#type-005 + http://dublincore.org/usage/terms/history/#type-004 + http://dublincore.org/usage/terms/history/#type-006 + + + + type-004 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + type + + The nature or genre of the content of the resource. + Type includes terms describing general categories, functions, + genres, or aggregation levels for content. Recommended best + practice is to select a value from a controlled vocabulary + (for example, the DCMI Type Vocabulary [DCMITYPE]). To + describe the physical or digital manifestation of the + resource, use the Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#type-004 + http://dublincore.org/usage/terms/history/#type-003 + http://dublincore.org/usage/terms/history/#type-005 + + + + type-003 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + Type + + The nature or genre of the content of the resource. + Type includes terms describing general categories, functions, + genres, or aggregation levels for content. Recommended best + practice is to select a value from a controlled vocabulary + (for example, the DCMI Type Vocabulary [DCMITYPE]). To + describe the physical or digital manifestation of the + resource, use the Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#type-003 + http://dublincore.org/usage/terms/history/#type-002 + http://dublincore.org/usage/terms/history/#type-004 + + + + type-002 + http://purl.org/dc/elements/1.1/type + http://purl.org/dc/elements/1.1/ + Type + + The nature or genre of the content of the resource. + Type includes terms describing general categories, functions, + genres, or aggregation levels for content. Recommended best + practice is to select a value from a controlled vocabulary + (for example, the working draft list of Dublin Core Types + [DCT1]). To describe the physical or digital manifestation + of the resource, use the FORMAT element. + [DCT1] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#type-002 + http://dublincore.org/usage/terms/history/#type-003 + + + + type-001 + http://purl.org/dc/elements/1.0/type + http://purl.org/dc/elements/1.0/ + Type + + The category of the resource, such as home page, novel, + poem, working paper, technical report, essay, dictionary. + For the sake of interoperability, Type should be selected + from an enumerated list that is under development in the + workshop series. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#type-001 + n.a. + + + + format-007 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + format + elements-format + + The file format, physical medium, or dimensions of the resource. + Examples of dimensions include size and duration. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types [MIME]. + [MIME] http://www.iana.org/assignments/media-types/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#format-007 + http://dublincore.org/usage/terms/history/#format-006 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + format-006 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + format + + The file format, physical medium, or dimensions + of the resource. + Examples of dimensions include + size and duration. Recommended best practice is + to use a controlled vocabulary such as the list + of Internet Media Types [MIME]. + [MIME] http://www.iana.org/assignments/media-types/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#format-006 + http://dublincore.org/usage/terms/history/#format-005 + http://dublincore.org/usage/terms/history/#format-007 + + + + format-005 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + format + + The physical or digital manifestation of the resource. + Typically, Format may include the media-type or dimensions of + the resource. Format may be used to determine the software, + hardware or other equipment needed to display or operate the + resource. Examples of dimensions include size and duration. + Recommended best practice is to select a value from a + controlled vocabulary (for example, the list of Internet Media + Types [MIME] defining computer media formats). + [MIME] http://www.iana.org/assignments/media-types/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2004-12-17 + http://dublincore.org/usage/decisions/#Decision-2004-03 + http://dublincore.org/usage/terms/history/#format-005 + http://dublincore.org/usage/terms/history/#format-004 + http://dublincore.org/usage/terms/history/#format-006 + + + + format-004 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + format + + The physical or digital manifestation of the resource. + Typically, Format may include the media-type or dimensions of + the resource. Format may be used to determine the software, + hardware or other equipment needed to display or operate the + resource. Examples of dimensions include size and duration. + Recommended best practice is to select a value from a + controlled vocabulary (for example, the list of Internet Media + Types [MIME] defining computer media formats). + [MIME] http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#format-004 + http://dublincore.org/usage/terms/history/#format-003 + http://dublincore.org/usage/terms/history/#format-005 + + + + format-003 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + Format + + The physical or digital manifestation of the resource. + Typically, Format may include the media-type or dimensions of + the resource. Format may be used to determine the software, + hardware or other equipment needed to display or operate the + resource. Examples of dimensions include size and duration. + Recommended best practice is to select a value from a + controlled vocabulary (for example, the list of Internet Media + Types [MIME] defining computer media formats). + [MIME] http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#format-003 + http://dublincore.org/usage/terms/history/#format-002 + http://dublincore.org/usage/terms/history/#format-004 + + + + format-002 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/elements/1.1/ + Format + + The physical or digital manifestation of the resource. + Typically, Format may include the media-type or dimensions of + the resource. Format may be used to determine the software, + hardware or other equipment needed to display or operate the + resource. Examples of dimensions include size and duration. + Recommended best practice is to select a value from a + controlled vocabulary (for example, the list of Internet Media + Types [MIME] defining computer media formats). + [MIME] http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#format-002 + http://dublincore.org/usage/terms/history/#format-003 + + + + format-001 + http://purl.org/dc/elements/1.0/format + http://purl.org/dc/elements/1.0/ + Format + + The data format and, optionally, dimensions (e.g., size, + duration) of the resource. The format is used to identify + the software and possibly hardware that might be needed to + display or operate the resource. For the sake of + interoperability, the format should be selected from an + enumerated list that is currently under development in the + workshop series. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#format-001 + n.a. + + + + identifier-006 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + identifier + elements-identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#identifier-006 + http://dublincore.org/usage/terms/history/#identifier-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + identifier-005 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + identifier + + An unambiguous reference to the resource within + a given context. + Recommended best practice is to identify the + resource by means of a string conforming + to a formal identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#identifier-005 + http://dublincore.org/usage/terms/history/#identifier-004 + http://dublincore.org/usage/terms/history/#identifier-006 + + + + identifier-004 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means + of a string or number conforming to a formal identification + system. + Example formal identification systems include the Uniform + Resource Identifier (URI) (including the Uniform Resource + Locator (URL)), the Digital Object Identifier (DOI) and the + International Standard Book Number (ISBN). + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#identifier-004 + http://dublincore.org/usage/terms/history/#identifier-003 + http://dublincore.org/usage/terms/history/#identifier-005 + + + + identifier-003 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + Identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means + of a string or number conforming to a formal identification + system. + Example formal identification systems include the Uniform + Resource Identifier (URI) (including the Uniform Resource + Locator (URL)), the Digital Object Identifier (DOI) and the + International Standard Book Number (ISBN). + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#identifier-003 + http://dublincore.org/usage/terms/history/#identifier-002 + http://dublincore.org/usage/terms/history/#identifier-004 + + + + identifier-002 + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/ + Identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means + of a string or number conforming to a formal identification + system. + Example formal identification systems include the Uniform + Resource Identifier (URI) (including the Uniform Resource + Locator (URL)), the Digital Object Identifier (DOI) and the + International Standard Book Number (ISBN). + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#identifier-002 + http://dublincore.org/usage/terms/history/#identifier-003 + + + + identifier-001 + http://purl.org/dc/elements/1.0/identifier + http://purl.org/dc/elements/1.0/ + Identifier + + A string or number used to uniquely identify the resource. + Examples for networked resources include URLs and URNs (when + implemented). Other globally-unique identifiers, such as + International Standard Book Numbers (ISBN) or other formal + names would also be candidates for this element. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#identifier-001 + n.a. + + + + source-006 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + source + elements-source + + A related resource from which the described resource is derived. + The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#source-006 + http://dublincore.org/usage/terms/history/#source-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + source-005 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + source + + The resource from which the described + resource is derived. + The described resource may be derived from the + related resource in whole or in part. Recommended + best practice is to identify the related resource + by means of a string conforming to a formal + identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#source-005 + http://dublincore.org/usage/terms/history/#source-004 + http://dublincore.org/usage/terms/history/#source-006 + + + + source-004 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + source + + A reference to a resource from which the present resource + is derived. + The present resource may be derived from the Source resource + in whole or in part. Recommended best practice is to reference + the resource by means of a string or number conforming to a + formal identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#source-004 + http://dublincore.org/usage/terms/history/#source-003 + http://dublincore.org/usage/terms/history/#source-005 + + + + source-003 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + Source + + A reference to a resource from which the present resource + is derived. + The present resource may be derived from the Source resource + in whole or in part. Recommended best practice is to reference + the resource by means of a string or number conforming to a + formal identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#source-003 + http://dublincore.org/usage/terms/history/#source-002 + http://dublincore.org/usage/terms/history/#source-004 + + + + source-002 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/ + Source + + A reference to a resource from which the present resource + is derived. + The present resource may be derived from the Source resource + in whole or in part. Recommended best practice is to reference + the resource by means of a string or number conforming to a + formal identification system. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#source-002 + http://dublincore.org/usage/terms/history/#source-003 + + + + source-001 + http://purl.org/dc/elements/1.0/source + http://purl.org/dc/elements/1.0/ + Source + + Information about a second resource from which the present + resource is derived. While it is generally recommended that + elements contain information about the present resource + only, this element may contain metadata for the second + resource when it is considered important for discovery of + the present resource. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#source-001 + n.a. + + + + language-007 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + language + elements-language + + A language of the resource. + Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646]. + [RFC4646] http://www.ietf.org/rfc/rfc4646.txt + http://www.ietf.org/rfc/rfc4646.txt + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#language-007 + http://dublincore.org/usage/terms/history/#language-006 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + language-006 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + language + + A language of the resource. + Recommended best practice is to use a controlled + vocabulary such as RFC 3066 [RFC3066]. + [RFC3066] http://www.ietf.org/rfc/rfc3066.txt + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#language-006 + http://dublincore.org/usage/terms/history/#language-005 + http://dublincore.org/usage/terms/history/#language-007 + + + + language-005 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + language + + A language of the intellectual content of the resource. + Recommended best practice is to use RFC 3066 [RFC3066], + which, in conjunction with ISO 639 [ISO639], defines two- + and three-letter primary language tags with optional + subtags. Examples include "en" or "eng" for English, + "akk" for Akkadian, and "en-GB" for English used in the + United Kingdom. + [RFC3066] http://www.ietf.org/rfc/rfc3066.txt + [ISO639] http://www.loc.gov/standards/iso639-2/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#language-005 + http://dublincore.org/usage/terms/history/#language-004 + http://dublincore.org/usage/terms/history/#language-006 + + + + language-004 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + Language + + A language of the intellectual content of the resource. + Recommended best practice is to use RFC 3066 [RFC3066], + which, in conjunction with ISO 639 [ISO639], defines two- + and three-letter primary language tags with optional + subtags. Examples include "en" or "eng" for English, + "akk" for Akkadian, and "en-GB" for English used in the + United Kingdom. + [RFC3066] http://www.ietf.org/rfc/rfc3066.txt + [ISO639] http://www.loc.gov/standards/iso639-2/ + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#language-004 + http://dublincore.org/usage/terms/history/#language-003 + http://dublincore.org/usage/terms/history/#language-005 + + + + language-003 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + Language + + A language of the intellectual content of the resource. + Recommended best practice is to use RFC 3066 [RFC3066], + which, in conjunction with ISO 639 [ISO639], defines two- + and three-letter primary language tags with optional + subtags. Examples include "en" or "eng" for English, + "akk" for Akkadian, and "en-GB" for English used in the + United Kingdom. + [RFC3066] http://www.ietf.org/rfc/rfc3066.txt + [ISO639] http://www.loc.gov/standards/iso639-2/ + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 2001-05-21 + http://dublincore.org/usage/decisions/#Decision-2001-04 + http://dublincore.org/usage/terms/history/#language-003 + http://dublincore.org/usage/terms/history/#language-002 + http://dublincore.org/usage/terms/history/#language-004 + + + + language-002 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/elements/1.1/ + Language + + A language of the intellectual content of the resource. + Recommended best practice for the values of the Language + element is defined by RFC 1766 [RFC1766] which includes + a two-letter Language Code (taken from the ISO 639 + standard [ISO639]), followed optionally, by a two-letter + Country Code (taken from the ISO 3166 standard [ISO3166]). + For example, 'en' for English, 'fr' for French, or + 'en-uk' for English used in the United Kingdom. + [RFC1766] http://www.ietf.org/rfc/rfc1766.txt + [ISO639] http://www.loc.gov/standards/iso639-2/ + [ISO3166] http://www.iso.org/iso/en/prods-services/iso3166ma/index.html + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#language-002 + http://dublincore.org/usage/terms/history/#language-003 + + + + language-001 + http://purl.org/dc/elements/1.0/language + http://purl.org/dc/elements/1.0/ + Language + + The language of the intellectual content of the resource. + Recommended best practice is defined in RFC 1766 [RFC1766]. + [RFC1766] http://www.ietf.org/rfc/rfc1766.txt + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#language-001 + n.a. + + + + relation-006 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + relation + elements-relation + + A related resource. + Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#relation-006 + http://dublincore.org/usage/terms/history/#relation-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + relation-005 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + relation + + A related resource. + Recommended best practice is to identify the + related resource by means of a string conforming + to a formal identification system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#relation-005 + http://dublincore.org/usage/terms/history/#relation-004 + http://dublincore.org/usage/terms/history/#relation-006 + + + + relation-004 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + relation + + A reference to a related resource. + Recommended best practice is to reference the resource by means + of a string or number conforming to a formal identification + system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#relation-004 + http://dublincore.org/usage/terms/history/#relation-003 + http://dublincore.org/usage/terms/history/#relation-005 + + + + relation-003 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + Relation + + A reference to a related resource. + Recommended best practice is to reference the resource by means + of a string or number conforming to a formal identification + system. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#relation-003 + http://dublincore.org/usage/terms/history/#relation-002 + http://dublincore.org/usage/terms/history/#relation-004 + + + + relation-002 + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/elements/1.1/ + Relation + + A reference to a related resource. + Recommended best practice is to reference the resource by means + of a string or number conforming to a formal identification + system. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#relation-002 + http://dublincore.org/usage/terms/history/#relation-003 + + + + relation-001 + http://purl.org/dc/elements/1.0/relation + http://purl.org/dc/elements/1.0/ + Relation + + An identifier of a second resource and its relationship to + the present resource. This element is used to express + linkages among related resources. For the sake of + interoperability, relationships should be selected from an + enumerated list that is currently under development in the + workshop series. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#relation-001 + n.a. + + + + coverage-006 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + coverage + elements-coverage + + The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. + Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN]. Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#coverage-006 + http://dublincore.org/usage/terms/history/#coverage-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + coverage-005 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + coverage + + The spatial or temporal topic of the resource, the + spatial applicability of the resource, or the + jurisdiction under which the resource is relevant. + Spatial topic may be a named place or a location + specified by its geographic coordinates. Temporal + period may be a named period, date, or date + range. A jurisdiction may be a named administrative + entity or a geographic place to which the resource + applies. Recommended best practice is to use a + controlled vocabulary such as the Thesaurus of + Geographic Names [TGN]). Where appropriate, named + places or time periods can be used in preference + to numeric identifiers such as sets of coordinates + or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#coverage-005 + http://dublincore.org/usage/terms/history/#coverage-004 + http://dublincore.org/usage/terms/history/#coverage-006 + + + + coverage-004 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + coverage + + The extent or scope of the content of the resource. + Coverage will typically include spatial location (a place name + or geographic coordinates), temporal period (a period label, + date, or date range) or jurisdiction (such as a named + administrative entity). + Recommended best practice is to select a value from a + controlled vocabulary (for example, the Thesaurus of Geographic + Names [TGN]) and that, where appropriate, named places or time + periods be used in preference to numeric identifiers such as + sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#coverage-004 + http://dublincore.org/usage/terms/history/#coverage-003 + http://dublincore.org/usage/terms/history/#coverage-005 + + + + coverage-003 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + Coverage + + The extent or scope of the content of the resource. + Coverage will typically include spatial location (a place name + or geographic coordinates), temporal period (a period label, + date, or date range) or jurisdiction (such as a named + administrative entity). + Recommended best practice is to select a value from a + controlled vocabulary (for example, the Thesaurus of Geographic + Names [TGN]) and that, where appropriate, named places or time + periods be used in preference to numeric identifiers such as + sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#coverage-003 + http://dublincore.org/usage/terms/history/#coverage-002 + http://dublincore.org/usage/terms/history/#coverage-004 + + + + coverage-002 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/elements/1.1/ + Coverage + + The extent or scope of the content of the resource. + Coverage will typically include spatial location (a place name + or geographic coordinates), temporal period (a period label, + date, or date range) or jurisdiction (such as a named + administrative entity). + Recommended best practice is to select a value from a + controlled vocabulary (for example, the Thesaurus of Geographic + Names [TGN]) and that, where appropriate, named places or time + periods be used in preference to numeric identifiers such as + sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#coverage-002 + http://dublincore.org/usage/terms/history/#coverage-003 + + + + coverage-001 + http://purl.org/dc/elements/1.0/coverage + http://purl.org/dc/elements/1.0/ + Coverage + + The spatial and/or temporal characteristics of the + intellectual content of the resource. Spatial coverage + refers to a physical region (e.g., celestial sector) using + place names or coordinates (e.g., longitude and latitude). + Temporal coverage refers to what the resource is about + rather than when it was created or made available (the + latter belonging in the Date element). Temporal coverage is + typically specified using named time periods (e.g., + Neolithic) or the same date/time format [W3CDTF] + as recommended for the Date element. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#coverage-001 + n.a. + + + + rights-006 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + rights + elements-rights + + Information about rights held in and over the resource. + Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#rights-006 + http://dublincore.org/usage/terms/history/#rights-005 + A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation. + + + + rights-005 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + rights + + Information about rights held in and + over the resource. + Typically, rights information includes + a statement about various property rights + associated with the resource, including + intellectual property rights. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2006-12-18 + http://dublincore.org/usage/decisions/#Decision-2006-03 + http://dublincore.org/usage/terms/history/#rights-005 + http://dublincore.org/usage/terms/history/#rights-004 + http://dublincore.org/usage/terms/history/#rights-006 + + + + rights-004 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + rights + + Information about rights held in and over the resource. + Typically, a Rights element will contain a rights + management statement for the resource, or reference + a service providing such information. Rights information + often encompasses Intellectual Property Rights (IPR), + Copyright, and various Property Rights. + If the Rights element is absent, no assumptions can be made + about the status of these and other rights with respect to + the resource. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-10-04 + http://dublincore.org/usage/decisions/#Decision-2002-03 + http://dublincore.org/usage/terms/history/#rights-004 + http://dublincore.org/usage/terms/history/#rights-003 + http://dublincore.org/usage/terms/history/#rights-005 + + + + rights-003 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + Rights + + Information about rights held in and over the resource. + Typically, a Rights element will contain a rights + management statement for the resource, or reference + a service providing such information. Rights information + often encompasses Intellectual Property Rights (IPR), + Copyright, and various Property Rights. + If the Rights element is absent, no assumptions can be made + about the status of these and other rights with respect to + the resource. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 1999-07-02 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#rights-003 + http://dublincore.org/usage/terms/history/#rights-002 + http://dublincore.org/usage/terms/history/#rights-004 + + + + rights-002 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/elements/1.1/ + Rights + + Information about rights held in and over the resource. + Typically, a Rights element will contain a rights + management statement for the resource, or reference + a service providing such information. Rights information + often encompasses Intellectual Property Rights (IPR), + Copyright, and various Property Rights. + If the Rights element is absent, no assumptions can be made + about the status of these and other rights with respect to + the resource. + http://dublincore.org/usage/documents/principles/#element + 1999-07-02 + 1999-07-02 + http://dublincore.org/usage/decisions/#Decision-1999-01 + http://dublincore.org/usage/terms/history/#rights-002 + http://dublincore.org/usage/terms/history/#rights-003 + + + + rights-001 + http://purl.org/dc/elements/1.0/rights + http://purl.org/dc/elements/1.0/ + Rights + + A rights management statement, an identifier that links + to a rights management statement, or an identifier that + links to a service providing information about rights + management for the resource. + http://dublincore.org/usage/documents/principles/#element + 1998-08-06 + http://dublincore.org/usage/decisions/#Decision-1998-01 + http://dublincore.org/usage/terms/history/#rights-001 + n.a. + + + + diff --git a/2008-01-14/xmldata/dcterms-classes.xml b/2008-01-14/xmldata/dcterms-classes.xml new file mode 100755 index 0000000..297e0ee --- /dev/null +++ b/2008-01-14/xmldata/dcterms-classes.xml @@ -0,0 +1,351 @@ + + + + + + Agent-001 + http://purl.org/dc/terms/Agent + http://purl.org/dc/terms/ + Agent + classes-Agent + + A resource that acts or has the power to act. + Examples of Agent include person, organization, and software agent. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/AgentClass + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Agent-001 + + + + AgentClass-001 + http://purl.org/dc/terms/AgentClass + http://purl.org/dc/terms/ + AgentClass + classes-AgentClass + + A group of agents. + Examples of Agent Class include groups seen as classes, such as students, women, charities, lecturers. + http://www.w3.org/2000/01/rdf-schema#Class + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#AgentClass-001 + + + + BibliographicResource-001 + http://purl.org/dc/terms/BibliographicResource + http://purl.org/dc/terms/ + BibliographicResource + classes-BibliographicResource + + A book, article, or other documentary resource. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#BibliographicResource-001 + + + + FileFormat-001 + http://purl.org/dc/terms/FileFormat + http://purl.org/dc/terms/ + FileFormat + classes-FileFormat + + A digital resource format. + Examples include the formats defined by the list of Internet Media Types. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/MediaType + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#FileFormat-001 + + + + Frequency-001 + http://purl.org/dc/terms/Frequency + http://purl.org/dc/terms/ + Frequency + classes-Frequency + + A rate at which something recurs. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Frequency-001 + + + + Jurisdiction-001 + http://purl.org/dc/terms/Jurisdiction + http://purl.org/dc/terms/ + Jurisdiction + classes-Jurisdiction + + The extent or range of judicial, law enforcement, or other authority. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/LocationPeriodOrJurisdiction + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Jurisdiction-001 + + + + LicenseDocument-001 + http://purl.org/dc/terms/LicenseDocument + http://purl.org/dc/terms/ + LicenseDocument + classes-LicenseDocument + + A legal document giving official permission to do something with a Resource. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/RightsStatement + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#LicenseDocument-001 + + + + LinguisticSystem-001 + http://purl.org/dc/terms/LinguisticSystem + http://purl.org/dc/terms/ + LinguisticSystem + classes-LinguisticSystem + + Examples include written, spoken, sign, and computer languages. + A system of signs, symbols, sounds, gestures, or rules used in communication. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#LinguisticSystem-001 + + + + Location-001 + http://purl.org/dc/terms/Location + http://purl.org/dc/terms/ + Location + classes-Location + + A spatial region or named place. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/LocationPeriodOrJurisdiction + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Location-001 + + + + LocationPeriodOrJurisdiction-001 + http://purl.org/dc/terms/LocationPeriodOrJurisdiction + http://purl.org/dc/terms/ + LocationPeriodOrJurisdiction + classes-LocationPeriodOrJurisdiction + + A location, period of time, or jurisdiction. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#LocationPeriodOrJurisdiction-001 + + + + MediaType-001 + http://purl.org/dc/terms/MediaType + http://purl.org/dc/terms/ + MediaType + classes-MediaType + + A file format or physical medium. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/MediaTypeOrExtent + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#MediaType-001 + + + + MediaTypeOrExtent-001 + http://purl.org/dc/terms/MediaTypeOrExtent + http://purl.org/dc/terms/ + MediaTypeOrExtent + classes-MediaTypeOrExtent + + A media type or extent. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#MediaTypeOrExtent-001 + + + + MethodOfInstruction-001 + http://purl.org/dc/terms/MethodOfInstruction + http://purl.org/dc/terms/ + MethodOfInstruction + classes-MethodOfInstruction + + A process that is used to engender knowledge, attitudes, and skills. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#MethodOfInstruction-001 + + + + MethodOfAccrual-001 + http://purl.org/dc/terms/MethodOfAccrual + http://purl.org/dc/terms/ + MethodOfAccrual + classes-MethodOfAccrual + + A method by which resources are added to a collection. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#MethodOfAccrual-001 + + + + PeriodOfTime-001 + http://purl.org/dc/terms/PeriodOfTime + http://purl.org/dc/terms/ + PeriodOfTime + classes-PeriodOfTime + + An interval of time that is named or defined by its start and end dates. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/LocationPeriodOrJurisdiction + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#PeriodOfTime-001 + + + + PhysicalMedium-001 + http://purl.org/dc/terms/PhysicalMedium + http://purl.org/dc/terms/ + PhysicalMedium + classes-PhysicalMedium + + A physical material or carrier. + Examples include paper, canvas, or DVD. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/MediaType + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#PhysicalMedium-001 + + + + PhysicalResource-001 + http://purl.org/dc/terms/PhysicalResource + http://purl.org/dc/terms/ + PhysicalResource + classes-PhysicalResource + + A material thing. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#PhysicalResource-001 + + + + Policy-001 + http://purl.org/dc/terms/Policy + http://purl.org/dc/terms/ + Policy + classes-Policy + + A plan or course of action by an authority, intended to influence and determine decisions, actions, and other matters. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Policy-001 + + + + ProvenanceStatement-001 + http://purl.org/dc/terms/ProvenanceStatement + http://purl.org/dc/terms/ + ProvenanceStatement + classes-ProvenanceStatement + + A statement of any changes in ownership and custody of a resource since its creation that are significant for its authenticity, integrity, and interpretation. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#ProvenanceStatement-001 + + + + RightsStatement-001 + http://purl.org/dc/terms/RightsStatement + http://purl.org/dc/terms/ + RightsStatement + classes-RightsStatement + + A statement about the intellectual property rights (IPR) held in or over a Resource, a legal document giving official permission to do something with a resource, or a statement about access rights. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#RightsStatement-001 + + + + SizeOrDuration-001 + http://purl.org/dc/terms/SizeOrDuration + http://purl.org/dc/terms/ + SizeOrDuration + classes-SizeOrDuration + + A dimension or extent, or a time taken to play or execute. + Examples include a number of pages, a specification of length, width, and breadth, or a period in hours, minutes, and seconds. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/terms/MediaTypeOrExtent + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#SizeOrDuration-001 + + + + Standard-001 + http://purl.org/dc/terms/Standard + http://purl.org/dc/terms/ + Standard + classes-Standard + + A basis for comparison; a reference point against which other things can be evaluated. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Standard-001 + + + diff --git a/2008-01-14/xmldata/dcterms-properties.xml b/2008-01-14/xmldata/dcterms-properties.xml new file mode 100755 index 0000000..d8c8932 --- /dev/null +++ b/2008-01-14/xmldata/dcterms-properties.xml @@ -0,0 +1,2281 @@ + + + + + + titleT-001 + http://purl.org/dc/terms/title + http://purl.org/dc/terms/ + title + terms-title + + A name given to the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/title + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#titleT-001 + In current practice, this term is used primarily with literal values; however, there are important uses with non-literal values as well. As of December 2007, the DCMI Usage Board is leaving this range unspecified pending an investigation of options. + + + + creatorT-001 + http://purl.org/dc/terms/creator + http://purl.org/dc/terms/ + creator + terms-creator + + An entity primarily responsible for making the resource. + Examples of a Creator include a person, an organization, or a service. Typically, the name of a Creator should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/creator + http://purl.org/dc/terms/contributor + http://purl.org/dc/terms/Agent + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#creatorT-001 + + + + subjectT-001 + http://purl.org/dc/terms/subject + http://purl.org/dc/terms/ + subject + terms-subject + + The topic of the resource. + Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary. To describe the spatial or temporal topic of the resource, use the Coverage element. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/subject + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#subjectT-001 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + descriptionT-001 + http://purl.org/dc/terms/description + http://purl.org/dc/terms/ + description + terms-description + + An account of the resource. + Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/description + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#descriptionT-001 + + + + publisherT-001 + http://purl.org/dc/terms/publisher + http://purl.org/dc/terms/ + publisher + terms-publisher + + An entity responsible for making the resource available. + Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/publisher + http://purl.org/dc/terms/Agent + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#publisherT-001 + + + + contributorT-001 + http://purl.org/dc/terms/contributor + http://purl.org/dc/terms/ + contributor + terms-contributor + + An entity responsible for making contributions to the resource. + Examples of a Contributor include a person, an organization, or a service. Typically, the name of a Contributor should be used to indicate the entity. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/contributor + http://purl.org/dc/terms/Agent + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#contributorT-001 + + + + dateT-001 + http://purl.org/dc/terms/date + http://purl.org/dc/terms/ + date + terms-date + + A point or period of time associated with an event in the lifecycle of the resource. + Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]. + [W3CDTF] http://www.w3.org/TR/NOTE-datetime + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/date + http://www.w3.org/2000/01/rdf-schema#Literal + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#dateT-001 + + + + typeT-001 + http://purl.org/dc/terms/type + http://purl.org/dc/terms/ + type + terms-type + + The nature or genre of the resource. + Recommended best practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [DCMITYPE]. To describe the file format, physical medium, or dimensions of the resource, use the Format element. + [DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/type + http://www.w3.org/2000/01/rdf-schema#Class + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#typeT-001 + + + + formatT-001 + http://purl.org/dc/terms/format + http://purl.org/dc/terms/ + format + terms-format + + The file format, physical medium, or dimensions of the resource. + Examples of dimensions include size and duration. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types [MIME]. + [MIME] http://www.iana.org/assignments/media-types/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/terms/MediaTypeOrExtent + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#formatT-001 + + + + identifierT-001 + http://purl.org/dc/terms/identifier + http://purl.org/dc/terms/ + identifier + terms-identifier + + An unambiguous reference to the resource within a given context. + Recommended best practice is to identify the resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/identifier + http://www.w3.org/2000/01/rdf-schema#Literal + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#identifierT-001 + + + + sourceT-001 + http://purl.org/dc/terms/source + http://purl.org/dc/terms/ + source + terms-source + + A related resource from which the described resource is derived. + The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/terms/relation + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#sourceT-001 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + languageT-001 + http://purl.org/dc/terms/language + http://purl.org/dc/terms/ + language + terms-language + + A language of the resource. + Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646]. + [RFC4646] http://www.ietf.org/rfc/rfc4646.txt + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/language + http://purl.org/dc/terms/LinguisticSystem + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#languageT-001 + + + + relationT-001 + http://purl.org/dc/terms/relation + http://purl.org/dc/terms/ + relation + terms-relation + + A related resource. + Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/relation + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#relationT-001 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + coverageT-001 + http://purl.org/dc/terms/coverage + http://purl.org/dc/terms/ + coverage + terms-coverage + + The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. + Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN]. Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges. + [TGN] http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/terms/LocationPeriodOrJurisdiction + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#coverageT-001 + + + + rightsT-001 + http://purl.org/dc/terms/rights + http://purl.org/dc/terms/ + rights + terms-rights + + Information about rights held in and over the resource. + Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2008-01-14 + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/terms/RightsStatement + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#rightsT-001 + + + + audience-003 + http://purl.org/dc/terms/audience + http://purl.org/dc/terms/ + audience + terms-audience + + A class of entity for whom the resource is intended or useful. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + http://purl.org/dc/terms/AgentClass + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#audience-003 + http://dublincore.org/usage/terms/history/#audience-002 + + + + audience-002 + http://purl.org/dc/terms/audience + http://purl.org/dc/terms/ + audience + + A class of entity for whom the resource is intended or useful. + A class of entity may be determined by the creator or the + publisher or by a third party. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#audience-002 + http://dublincore.org/usage/terms/history/#audience-001 + http://dublincore.org/usage/terms/history/#audience-003 + + + + audience-001 + http://purl.org/dc/terms/audience + http://purl.org/dc/terms/ + audience + + A class of entity for whom the resource is intended or useful. + A class of entity may be determined by the creator or the + publisher or by a third party. + http://dublincore.org/usage/documents/principles/#element + Domain-Specific + 2001-05-21 + http://dublincore.org/usage/decisions/#Decision-2001-01 + http://dublincore.org/usage/terms/history/#audience-001 + http://dublincore.org/usage/terms/history/#audience-002 + + + + alternative-003 + http://purl.org/dc/terms/alternative + http://purl.org/dc/terms/ + alternative + terms-alternative + + An alternative name for the resource. + The distinction between titles and alternative titles is application-specific. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/title + http://purl.org/dc/terms/title + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#alternative-003 + http://dublincore.org/usage/terms/history/#alternative-002 + In current practice, this term is used primarily with literal values; however, there are important uses with non-literal values as well. As of December 2007, the DCMI Usage Board is leaving this range unspecified pending an investigation of options. + + + + alternative-002 + http://purl.org/dc/terms/alternative + http://purl.org/dc/terms/ + alternative + + Any form of the title used as a substitute or alternative + to the formal title of the resource. + This qualifier can include Title abbreviations as well + as translations. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/title + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#alternative-002 + http://dublincore.org/usage/terms/history/#alternative-001 + http://dublincore.org/usage/terms/history/#alternative-003 + + + + alternative-001 + http://purl.org/dc/terms/alternative + http://purl.org/dc/terms/ + alternative + + Any form of the title used as a substitute or alternative + to the formal title of the resource. + This qualifier can include Title abbreviations as well + as translations. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/title + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#alternative-001 + http://dublincore.org/usage/terms/history/#alternative-002 + + + + tableOfContents-003 + http://purl.org/dc/terms/tableOfContents + http://purl.org/dc/terms/ + tableOfContents + terms-tableOfContents + + A list of subunits of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/terms/description + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#tableOfContents-003 + http://dublincore.org/usage/terms/history/#tableOfContents-002 + + + + tableOfContents-002 + http://purl.org/dc/terms/tableOfContents + http://purl.org/dc/terms/ + tableOfContents + + A list of subunits of the content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/description + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#tableOfContents-002 + http://dublincore.org/usage/terms/history/#tableOfContents-001 + http://dublincore.org/usage/terms/history/#tableOfContents-003 + + + + tableOfContents-001 + http://purl.org/dc/terms/tableOfContents + http://purl.org/dc/terms/ + tableOfContents + + A list of subunits of the content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/description + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#tableOfContents-001 + http://dublincore.org/usage/terms/history/#tableOfContents-002 + + + + abstract-003 + http://purl.org/dc/terms/abstract + http://purl.org/dc/terms/ + abstract + terms-abstract + + A summary of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/description + http://purl.org/dc/terms/description + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#abstract-003 + http://dublincore.org/usage/terms/history/#abstract-002 + + + + abstract-002 + http://purl.org/dc/terms/abstract + http://purl.org/dc/terms/ + abstract + + A summary of the content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/description + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#abstract-002 + http://dublincore.org/usage/terms/history/#abstract-001 + http://dublincore.org/usage/terms/history/#abstract-003 + + + + abstract-001 + http://purl.org/dc/terms/abstract + http://purl.org/dc/terms/ + abstract + + A summary of the content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/description + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#abstract-001 + http://dublincore.org/usage/terms/history/#abstract-002 + + + + created-003 + http://purl.org/dc/terms/created + http://purl.org/dc/terms/ + created + terms-created + + Date of creation of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#created-003 + http://dublincore.org/usage/terms/history/#created-002 + + + + created-002 + http://purl.org/dc/terms/created + http://purl.org/dc/terms/ + created + + Date of creation of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#created-002 + http://dublincore.org/usage/terms/history/#created-001 + http://dublincore.org/usage/terms/history/#created-003 + + + + created-001 + http://purl.org/dc/terms/created + http://purl.org/dc/terms/ + created + + Date of creation of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#created-001 + http://dublincore.org/usage/terms/history/#created-002 + + + + valid-003 + http://purl.org/dc/terms/valid + http://purl.org/dc/terms/ + valid + terms-valid + + Date (often a range) of validity of a resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#valid-003 + http://dublincore.org/usage/terms/history/#valid-002 + + + + valid-002 + http://purl.org/dc/terms/valid + http://purl.org/dc/terms/ + valid + + Date (often a range) of validity of a resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#valid-002 + http://dublincore.org/usage/terms/history/#valid-001 + http://dublincore.org/usage/terms/history/#valid-003 + + + + valid-001 + http://purl.org/dc/terms/valid + http://purl.org/dc/terms/ + valid + + Date (often a range) of validity of a resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#valid-001 + http://dublincore.org/usage/terms/history/#valid-002 + + + + available-003 + http://purl.org/dc/terms/available + http://purl.org/dc/terms/ + available + terms-available + + Date (often a range) that the resource became or will become available. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#available-003 + http://dublincore.org/usage/terms/history/#available-002 + + + + available-002 + http://purl.org/dc/terms/available + http://purl.org/dc/terms/ + available + + Date (often a range) that the resource will become or did + become available. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#available-002 + http://dublincore.org/usage/terms/history/#available-001 + http://dublincore.org/usage/terms/history/#available-003 + + + + available-001 + http://purl.org/dc/terms/available + http://purl.org/dc/terms/ + available + + Date (often a range) that the resource will become or did + become available. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#available-001 + http://dublincore.org/usage/terms/history/#available-002 + + + + issued-003 + http://purl.org/dc/terms/issued + http://purl.org/dc/terms/ + issued + terms-issued + + Date of formal issuance (e.g., publication) of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#issued-003 + http://dublincore.org/usage/terms/history/#issued-002 + + + + issued-002 + http://purl.org/dc/terms/issued + http://purl.org/dc/terms/ + issued + + Date of formal issuance (e.g., publication) of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#issued-002 + http://dublincore.org/usage/terms/history/#issued-001 + http://dublincore.org/usage/terms/history/#issued-003 + + + + issued-001 + http://purl.org/dc/terms/issued + http://purl.org/dc/terms/ + issued + + Date of formal issuance (e.g., publication) of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#issued-001 + http://dublincore.org/usage/terms/history/#issued-002 + + + + modified-003 + http://purl.org/dc/terms/modified + http://purl.org/dc/terms/ + modified + terms-modified + + Date on which the resource was changed. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#modified-003 + http://dublincore.org/usage/terms/history/#modified-002 + + + + modified-002 + http://purl.org/dc/terms/modified + http://purl.org/dc/terms/ + modified + + Date on which the resource was changed. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#modified-002 + http://dublincore.org/usage/terms/history/#modified-001 + http://dublincore.org/usage/terms/history/#modified-003 + + + + modified-001 + http://purl.org/dc/terms/modified + http://purl.org/dc/terms/ + modified + + Date on which the resource was changed. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#modified-001 + http://dublincore.org/usage/terms/history/#modified-002 + + + + extent-003 + http://purl.org/dc/terms/extent + http://purl.org/dc/terms/ + extent + terms-extent + + The size or duration of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/terms/format + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/SizeOrDuration + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#extent-003 + http://dublincore.org/usage/terms/history/#extent-002 + + + + extent-002 + http://purl.org/dc/terms/extent + http://purl.org/dc/terms/ + extent + + The size or duration of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/format + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#extent-002 + http://dublincore.org/usage/terms/history/#extent-001 + http://dublincore.org/usage/terms/history/#extent-003 + + + + extent-001 + http://purl.org/dc/terms/extent + http://purl.org/dc/terms/ + extent + + The size or duration of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/format + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#extent-001 + http://dublincore.org/usage/terms/history/#extent-002 + + + + medium-003 + http://purl.org/dc/terms/medium + http://purl.org/dc/terms/ + medium + terms-medium + + The material or physical carrier of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/format + http://purl.org/dc/terms/format + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/PhysicalResource + http://purl.org/dc/terms/PhysicalMedium + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#medium-003 + http://dublincore.org/usage/terms/history/#medium-002 + + + + medium-002 + http://purl.org/dc/terms/medium + http://purl.org/dc/terms/ + medium + + The material or physical carrier of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/format + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#medium-002 + http://dublincore.org/usage/terms/history/#medium-001 + http://dublincore.org/usage/terms/history/#medium-003 + + + + medium-001 + http://purl.org/dc/terms/medium + http://purl.org/dc/terms/ + medium + + The material or physical carrier of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/format + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#medium-001 + http://dublincore.org/usage/terms/history/#medium-002 + + + + isVersionOf-003 + http://purl.org/dc/terms/isVersionOf + http://purl.org/dc/terms/ + isVersionOf + terms-isVersionOf + + A related resource of which the described resource is a version, edition, or adaptation. + Changes in version imply substantive changes in content rather than differences in format. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isVersionOf-003 + http://dublincore.org/usage/terms/history/#isVersionOf-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isVersionOf-002 + http://purl.org/dc/terms/isVersionOf + http://purl.org/dc/terms/ + isVersionOf + + The described resource is a version, edition, or adaptation + of the referenced resource. Changes in version imply substantive + changes in content rather than differences in format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isVersionOf-002 + http://dublincore.org/usage/terms/history/#isVersionOf-001 + http://dublincore.org/usage/terms/history/#isVersionOf-003 + + + + isVersionOf-001 + http://purl.org/dc/terms/isVersionOf + http://purl.org/dc/terms/ + isVersionOf + + The described resource is a version, edition, or adaptation + of the referenced resource. Changes in version imply substantive + changes in content rather than differences in format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isVersionOf-001 + http://dublincore.org/usage/terms/history/#isVersionOf-002 + + + + hasVersion-003 + http://purl.org/dc/terms/hasVersion + http://purl.org/dc/terms/ + hasVersion + terms-hasVersion + + A related resource that is a version, edition, or adaptation of the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#hasVersion-003 + http://dublincore.org/usage/terms/history/#hasVersion-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + hasVersion-002 + http://purl.org/dc/terms/hasVersion + http://purl.org/dc/terms/ + hasVersion + + The described resource has a version, edition, or adaptation, + namely, the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#hasVersion-002 + http://dublincore.org/usage/terms/history/#hasVersion-001 + http://dublincore.org/usage/terms/history/#hasVersion-003 + + + + hasVersion-001 + http://purl.org/dc/terms/hasVersion + http://purl.org/dc/terms/ + hasVersion + + The described resource has a version, edition, or adaptation, + namely, the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#hasVersion-001 + http://dublincore.org/usage/terms/history/#hasVersion-002 + + + + isReplacedBy-003 + http://purl.org/dc/terms/isReplacedBy + http://purl.org/dc/terms/ + isReplacedBy + terms-isReplacedBy + + A related resource that supplants, displaces, or supersedes the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isReplacedBy-003 + http://dublincore.org/usage/terms/history/#isReplacedBy-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isReplacedBy-002 + http://purl.org/dc/terms/isReplacedBy + http://purl.org/dc/terms/ + isReplacedBy + + The described resource is supplanted, displaced, or + superseded by the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isReplacedBy-002 + http://dublincore.org/usage/terms/history/#isReplacedBy-001 + http://dublincore.org/usage/terms/history/#isReplacedBy-003 + + + + isReplacedBy-001 + http://purl.org/dc/terms/isReplacedBy + http://purl.org/dc/terms/ + isReplacedBy + + The described resource is supplanted, displaced, or + superceded by the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isReplacedBy-001 + http://dublincore.org/usage/terms/history/#isReplacedBy-002 + + + + replaces-003 + http://purl.org/dc/terms/replaces + http://purl.org/dc/terms/ + replaces + terms-replaces + + A related resource that is supplanted, displaced, or superseded by the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#replaces-003 + http://dublincore.org/usage/terms/history/#replaces-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + replaces-002 + http://purl.org/dc/terms/replaces + http://purl.org/dc/terms/ + replaces + + The described resource supplants, displaces, or supersedes + the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#replaces-002 + http://dublincore.org/usage/terms/history/#replaces-001 + http://dublincore.org/usage/terms/history/#Is-Replaced-By-003 + + + + replaces-001 + http://purl.org/dc/terms/replaces + http://purl.org/dc/terms/ + replaces + + The described resource supplants, displaces, or supersedes + the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#replaces-001 + http://dublincore.org/usage/terms/history/#replaces-002 + + + + isRequiredBy-003 + http://purl.org/dc/terms/isRequiredBy + http://purl.org/dc/terms/ + isRequiredBy + terms-isRequiredBy + + A related resource that requires the described resource to support its function, delivery, or coherence. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isRequiredBy-003 + http://dublincore.org/usage/terms/history/#isRequiredBy-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isRequiredBy-002 + http://purl.org/dc/terms/isRequiredBy + http://purl.org/dc/terms/ + isRequiredBy + + The described resource is required by the referenced resource, + either physically or logically. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isRequiredBy-002 + http://dublincore.org/usage/terms/history/#isRequiredBy-001 + http://dublincore.org/usage/terms/history/#isRequiredBy-003 + + + + isRequiredBy-001 + http://purl.org/dc/terms/isRequiredBy + http://purl.org/dc/terms/ + isRequiredBy + + The described resource is required by the referenced resource, + either physically or logically. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isRequiredBy-001 + http://dublincore.org/usage/terms/history/#isRequiredBy-002 + + + + requires-003 + http://purl.org/dc/terms/requires + http://purl.org/dc/terms/ + requires + terms-requires + + A related resource that is required by the described resource to support its function, delivery, or coherence. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#requires-003 + http://dublincore.org/usage/terms/history/#requires-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + requires-002 + http://purl.org/dc/terms/requires + http://purl.org/dc/terms/ + requires + + The described resource requires the referenced resource to + support its function, delivery, or coherence of content. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#requires-002 + http://dublincore.org/usage/terms/history/#requires-001 + http://dublincore.org/usage/terms/history/#requires-003 + + + + requires-001 + http://purl.org/dc/terms/requires + http://purl.org/dc/terms/ + requires + + The described resource requires the referenced resource to + support its function, delivery, or coherence of content. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#requires-001 + http://dublincore.org/usage/terms/history/#requires-002 + + + + isPartOf-003 + http://purl.org/dc/terms/isPartOf + http://purl.org/dc/terms/ + isPartOf + terms-isPartOf + + A related resource in which the described resource is physically or logically included. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isPartOf-003 + http://dublincore.org/usage/terms/history/#isPartOf-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isPartOf-002 + http://purl.org/dc/terms/isPartOf + http://purl.org/dc/terms/ + isPartOf + + The described resource is a physical or logical part of the + referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isPartOf-002 + http://dublincore.org/usage/terms/history/#isPartOf-001 + http://dublincore.org/usage/terms/history/#isPartOf-003 + + + + isPartOf-001 + http://purl.org/dc/terms/isPartOf + http://purl.org/dc/terms/ + isPartOf + + The described resource is a physical or logical part of the + referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isPartOf-001 + http://dublincore.org/usage/terms/history/#isPartOf-002 + + + + hasPart-003 + http://purl.org/dc/terms/hasPart + http://purl.org/dc/terms/ + hasPart + terms-hasPart + + A related resource that is included either physically or logically in the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#hasPart-003 + http://dublincore.org/usage/terms/history/#hasPart-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + hasPart-002 + http://purl.org/dc/terms/hasPart + http://purl.org/dc/terms/ + hasPart + + The described resource includes the referenced resource either + physically or logically. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#hasPart-002 + http://dublincore.org/usage/terms/history/#hasPart-001 + http://dublincore.org/usage/terms/history/#hasPart-003 + + + + hasPart-001 + http://purl.org/dc/terms/hasPart + http://purl.org/dc/terms/ + hasPart + + The described resource includes the referenced resource either + physically or logically. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#hasPart-001 + http://dublincore.org/usage/terms/history/#hasPart-002 + + + + isReferencedBy-003 + http://purl.org/dc/terms/isReferencedBy + http://purl.org/dc/terms/ + isReferencedBy + terms-isReferencedBy + + A related resource that references, cites, or otherwise points to the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isReferencedBy-003 + http://dublincore.org/usage/terms/history/#isReferencedBy-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isReferencedBy-002 + http://purl.org/dc/terms/isReferencedBy + http://purl.org/dc/terms/ + isReferencedBy + + The described resource is referenced, cited, or otherwise + pointed to by the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isReferencedBy-002 + http://dublincore.org/usage/terms/history/#isReferencedBy-001 + http://dublincore.org/usage/terms/history/#isReferencedBy-003 + + + + isReferencedBy-001 + http://purl.org/dc/terms/isReferencedBy + http://purl.org/dc/terms/ + isReferencedBy + + The described resource is referenced, cited, or otherwise + pointed to by the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isReferencedBy-001 + http://dublincore.org/usage/terms/history/#isReferencedBy-002 + + + + references-003 + http://purl.org/dc/terms/references + http://purl.org/dc/terms/ + references + terms-references + + A related resource that is referenced, cited, or otherwise pointed to by the described resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#references-003 + http://dublincore.org/usage/terms/history/#references-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + references-002 + http://purl.org/dc/terms/references + http://purl.org/dc/terms/ + references + + The described resource references, cites, or otherwise points + to the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#references-002 + http://dublincore.org/usage/terms/history/#references-001 + http://dublincore.org/usage/terms/history/#references-003 + + + + references-001 + http://purl.org/dc/terms/references + http://purl.org/dc/terms/ + references + + The described resource references, cites, or otherwise points + to the referenced resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#references-001 + http://dublincore.org/usage/terms/history/#references-002 + + + + isFormatOf-003 + http://purl.org/dc/terms/isFormatOf + http://purl.org/dc/terms/ + isFormatOf + terms-isFormatOf + + A related resource that is substantially the same as the described resource, but in another format. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#isFormatOf-003 + http://dublincore.org/usage/terms/history/#isFormatOf-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + isFormatOf-002 + http://purl.org/dc/terms/isFormatOf + http://purl.org/dc/terms/ + isFormatOf + + The described resource is the same intellectual content of + the referenced resource, but presented in another format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#isFormatOf-002 + http://dublincore.org/usage/terms/history/#isFormatOf-001 + http://dublincore.org/usage/terms/history/#isFormatOf-003 + + + + isFormatOf-001 + http://purl.org/dc/terms/isFormatOf + http://purl.org/dc/terms/ + isFormatOf + + The described resource is the same intellectual content of + the referenced resource, but presented in another format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#isFormatOf-001 + http://dublincore.org/usage/terms/history/#isFormatOf-002 + + + + hasFormat-003 + http://purl.org/dc/terms/hasFormat + http://purl.org/dc/terms/ + hasFormat + terms-hasFormat + + A related resource that is substantially the same as the pre-existing described resource, but in another format. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#hasFormat-003 + http://dublincore.org/usage/terms/history/#hasFormat-002 + This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. + + + + hasFormat-002 + http://purl.org/dc/terms/hasFormat + http://purl.org/dc/terms/ + hasFormat + + The described resource pre-existed the referenced resource, + which is essentially the same intellectual content presented + in another format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#hasFormat-002 + http://dublincore.org/usage/terms/history/#hasFormat-001 + http://dublincore.org/usage/terms/history/#hasFormat-003 + + + + hasFormat-001 + http://purl.org/dc/terms/hasFormat + http://purl.org/dc/terms/ + hasFormat + + The described resource pre-existed the referenced resource, + which is essentially the same intellectual content presented + in another format. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#hasFormat-001 + http://dublincore.org/usage/terms/history/#hasFormat-002 + + + + conformsTo-003 + http://purl.org/dc/terms/conformsTo + http://purl.org/dc/terms/ + conformsTo + terms-conformsTo + + An established standard to which the described resource conforms. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/relation + http://purl.org/dc/terms/relation + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2008-01-14 + http://purl.org/dc/terms/Standard + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#conformsTo-003 + http://dublincore.org/usage/terms/history/#conformsTo-002 + + + + conformsTo-002 + http://purl.org/dc/terms/conformsTo + http://purl.org/dc/terms/ + conformsTo + + A reference to an established standard to which the resource conforms. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#conformsTo-002 + http://dublincore.org/usage/terms/history/#conformsTo-001 + http://dublincore.org/usage/terms/history/#conformsTo-003 + + + + conformsTo-001 + http://purl.org/dc/terms/conformsTo + http://purl.org/dc/terms/ + conformsTo + + A reference to an established standard to which the resource conforms. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/relation + Domain-Specific + 2001-05-21 + http://dublincore.org/usage/decisions/#Decision-2001-01 + http://dublincore.org/usage/terms/history/#conformsTo-001 + http://dublincore.org/usage/terms/history/#conformsTo-002 + + + + spatial-003 + http://purl.org/dc/terms/spatial + http://purl.org/dc/terms/ + spatial + terms-spatial + + Spatial characteristics of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/terms/coverage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/Location + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#spatial-003 + http://dublincore.org/usage/terms/history/#spatial-002 + + + + spatial-002 + http://purl.org/dc/terms/spatial + http://purl.org/dc/terms/ + spatial + + Spatial characteristics of the intellectual content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/coverage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#spatial-002 + http://dublincore.org/usage/terms/history/#spatial-001 + http://dublincore.org/usage/terms/history/#spatial-003 + + + + spatial-001 + http://purl.org/dc/terms/spatial + http://purl.org/dc/terms/ + spatial + + Spatial characteristics of the intellectual content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/coverage + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#spatial-001 + http://dublincore.org/usage/terms/history/#spatial-002 + + + + temporal-003 + http://purl.org/dc/terms/temporal + http://purl.org/dc/terms/ + temporal + terms-temporal + + Temporal characteristics of the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/coverage + http://purl.org/dc/terms/coverage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/PeriodOfTime + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#temporal-003 + http://dublincore.org/usage/terms/history/#temporal-002 + + + + temporal-002 + http://purl.org/dc/terms/temporal + http://purl.org/dc/terms/ + temporal + + Temporal characteristics of the intellectual content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/coverage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#temporal-002 + http://dublincore.org/usage/terms/history/#temporal-001 + http://dublincore.org/usage/terms/history/#temporal-003 + + + + temporal-001 + http://purl.org/dc/terms/temporal + http://purl.org/dc/terms/ + temporal + + Temporal characteristics of the intellectual content of the resource. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/coverage + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#temporal-001 + http://dublincore.org/usage/terms/history/#temporal-002 + + + + mediator-003 + http://purl.org/dc/terms/mediator + http://purl.org/dc/terms/ + mediator + terms-mediator + + An entity that mediates access to the resource and for whom the resource is intended or useful. + In an educational context, a mediator might be a parent, teacher, teaching assistant, or care-giver. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/audience + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2008-01-14 + http://purl.org/dc/terms/AgentClass + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#mediator-003 + http://dublincore.org/usage/terms/history/#mediator-002 + + + + mediator-002 + http://purl.org/dc/terms/mediator + http://purl.org/dc/terms/ + mediator + + A class of entity that mediates access to the + resource and for whom the resource is intended or useful. + The audiences for a resource are of two basic classes: (1) an + ultimate beneficiary of the resource, and (2) frequently, an + entity that mediates access to the resource. The mediator + element refinement represents the second of these two classes. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/terms/audience + http://dublincore.org/usage/documents/process/#recommended + 2001-05-21 + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#mediator-002 + http://dublincore.org/usage/terms/history/#mediator-001 + http://dublincore.org/usage/terms/history/#mediator-003 + + + + mediator-001 + http://purl.org/dc/terms/mediator + http://purl.org/dc/terms/ + mediator + + A class of entity that mediates access to the + resource and for whom the resource is intended or useful. + The audience for a resource in the education/training + domain are of two basic classes: (1) an ultimate beneficiary of + the resource (usually a student or trainee), and (2) frequently, + an entity that mediates access to the resource (usually a + teacher or trainer). The mediator element refinement represents + the second of these two classes. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/terms/audience + Domain-Specific + 2001-05-21 + http://dublincore.org/usage/decisions/#Decision-2001-01 + http://dublincore.org/usage/terms/history/#mediator-001 + http://dublincore.org/usage/terms/history/#mediator-002 + + + + dateAccepted-002 + http://purl.org/dc/terms/dateAccepted + http://purl.org/dc/terms/ + dateAccepted + terms-dateAccepted + + Date of acceptance of the resource. + Examples of resources to which a Date Accepted may be relevant are a thesis (accepted by a university department) or an article (accepted by a journal). + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#dateAccepted-002 + http://dublincore.org/usage/terms/history/#dateAccepted-001 + + + + dateAccepted-001 + http://purl.org/dc/terms/dateAccepted + http://purl.org/dc/terms/ + dateAccepted + + Date of acceptance of the resource (e.g. of thesis + by university department, of article by journal, etc.). + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#dateAccepted-001 + http://dublincore.org/usage/terms/history/#dateAccepted-002 + + + + dateCopyrighted-002 + http://purl.org/dc/terms/dateCopyrighted + http://purl.org/dc/terms/ + dateCopyrighted + terms-dateCopyrighted + + Date of copyright. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#dateCopyrighted-002 + http://dublincore.org/usage/terms/history/#dateCopyrighted-001 + + + + dateCopyrighted-001 + http://purl.org/dc/terms/dateCopyrighted + http://purl.org/dc/terms/ + dateCopyrighted + + Date of a statement of copyright. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#dateCopyrighted-001 + http://dublincore.org/usage/terms/history/#dateCopyrighted-002 + + + + dateSubmitted-002 + http://purl.org/dc/terms/dateSubmitted + http://purl.org/dc/terms/ + dateSubmitted + terms-dateSubmitted + + Date of submission of the resource. + Examples of resources to which a Date Submitted may be relevant are a thesis (submitted to a university department) or an article (submitted to a journal). + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + 2008-01-14 + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#dateSubmitted-002 + http://dublincore.org/usage/terms/history/#dateSubmitted-001 + + + + dateSubmitted-001 + http://purl.org/dc/terms/dateSubmitted + http://purl.org/dc/terms/ + dateSubmitted + + Date of submission of the resource (e.g. thesis, + articles, etc.). + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/date + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#dateSubmitted-001 + http://dublincore.org/usage/terms/history/#dateSubmitted-002 + + + + educationLevel-002 + http://purl.org/dc/terms/educationLevel + http://purl.org/dc/terms/ + educationLevel + terms-educationLevel + + A class of entity, defined in terms of progression through an educational or training context, for which the described resource is intended. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/terms/audience + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + 2008-01-14 + http://purl.org/dc/terms/AgentClass + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#educationLevel-002 + http://dublincore.org/usage/terms/history/#educationLevel-001 + + + + educationLevel-001 + http://purl.org/dc/terms/educationLevel + http://purl.org/dc/terms/ + educationLevel + + A general statement describing the education or + training context. Alternatively, a more specific + statement of the location of the audience in terms of + its progression through an education or training context. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/terms/audience + http://dublincore.org/usage/documents/process/#conforming + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#educationLevel-001 + http://dublincore.org/usage/terms/history/#educationLevel-002 + + + + accessRights-002 + http://purl.org/dc/terms/accessRights + http://purl.org/dc/terms/ + accessRights + terms-accessRights + + Information about who can access the resource or an indication of its security status. + Access Rights may include information regarding access or restrictions based on privacy, security, or other policies. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/terms/rights + http://dublincore.org/usage/documents/process/#conforming + 2003-02-15 + 2008-01-14 + http://purl.org/dc/terms/RightsStatement + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#accessRights-002 + http://dublincore.org/usage/terms/history/#accessRights-001 + + + + accessRights-001 + http://purl.org/dc/terms/accessRights + http://purl.org/dc/terms/ + accessRights + + Information about who can access the + resource or an indication of its security status. + + Access Rights may include information + regarding access or restrictions based on privacy, + security or other regulations. + + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/rights + http://dublincore.org/usage/documents/process/#conforming + 2003-02-15 + http://dublincore.org/usage/decisions/#Decision-2003-01 + http://dublincore.org/usage/terms/history/#accessRights-001 + http://dublincore.org/usage/terms/history/#accessRights-002 + + + + bibliographicCitation-002 + http://purl.org/dc/terms/bibliographicCitation + http://purl.org/dc/terms/ + bibliographicCitation + terms-bibliographicCitation + + A bibliographic reference for the resource. + Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/terms/identifier + http://dublincore.org/usage/documents/process/#conforming + 2003-02-15 + 2008-01-14 + http://purl.org/dc/terms/BibliographicResource + http://www.w3.org/2000/01/rdf-schema#Literal + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#bibliographicCitation-002 + http://dublincore.org/usage/terms/history/#bibliographicCitation-001 + + + + bibliographicCitation-001 + http://purl.org/dc/terms/bibliographicCitation + http://purl.org/dc/terms/ + bibliographicCitation + + A bibliographic reference for the resource. + + Recommended practice is to include sufficient + bibliographic detail to identify the resource as + unambiguously as possible, whether or not the + citation is in a standard form. + + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/identifier + http://dublincore.org/usage/documents/process/#conforming + 2003-02-15 + http://dublincore.org/usage/decisions/#Decision-2003-01 + http://dublincore.org/usage/terms/history/#bibliographicCitation-001 + http://dublincore.org/usage/terms/history/#bibliographicCitation-002 + + + + license-002 + http://purl.org/dc/terms/license + http://purl.org/dc/terms/ + license + terms-license + + A legal document giving official permission to do something with the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://purl.org/dc/elements/1.1/rights + http://purl.org/dc/terms/rights + http://dublincore.org/usage/documents/process/#conforming + 2004-06-14 + 2008-01-14 + http://purl.org/dc/terms/LicenseDocument + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#license-002 + http://dublincore.org/usage/terms/history/#license-001 + + + + license-001 + http://purl.org/dc/terms/license + http://purl.org/dc/terms/ + license + + A legal document giving official permission to do something + with the resource. + Recommended best practice is to identify the license using a + URI. Examples of such licenses can be found at + http://creativecommons.org/licenses/. + http://dublincore.org/usage/documents/principles/#element-refinement + http://purl.org/dc/elements/1.1/rights + http://dublincore.org/usage/documents/process/#conforming + 2004-06-14 + http://dublincore.org/usage/decisions/#Decision-2004-01 + http://dublincore.org/usage/terms/history/#license-001 + http://dublincore.org/usage/terms/history/#license-002 + + + + rightsHolder-002 + http://purl.org/dc/terms/rightsHolder + http://purl.org/dc/terms/ + rightsHolder + terms-rightsHolder + + A person or organization owning or managing rights over the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2004-06-14 + 2008-01-14 + http://purl.org/dc/terms/Agent + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#rightsHolder-002 + http://dublincore.org/usage/terms/history/#rightsHolder-001 + + + + rightsHolder-001 + http://purl.org/dc/terms/rightsHolder + http://purl.org/dc/terms/ + rightsHolder + + A person or organization owning or managing rights over the resource. + + Recommended best practice is to use the URI or name of + the Rights Holder to indicate the entity. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2004-06-14 + http://dublincore.org/usage/decisions/#Decision-2004-01 + http://dublincore.org/usage/terms/history/#rightsHolder-001 + http://dublincore.org/usage/terms/history/#rightsHolder-002 + + + + Provenance-002 + http://purl.org/dc/terms/provenance + http://purl.org/dc/terms/ + provenance + terms-provenance + + A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. + The statement may include a description of any changes successive custodians made to the resource. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2004-09-20 + 2008-01-14 + http://purl.org/dc/terms/ProvenanceStatement + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#provenance-002 + http://dublincore.org/usage/terms/history/#provenance-001 + + + + Provenance-001 + http://purl.org/dc/terms/provenance + http://purl.org/dc/terms/ + provenance + + A statement of any changes in ownership and custody + of the resource since its creation that are + significant for its authenticity, integrity and + interpretation. + + The statement may include a description of any + changes successive custodians made to the resource. + + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2004-09-20 + http://dublincore.org/usage/decisions/#Decision-2004-02 + http://dublincore.org/usage/terms/history/#provenance-001 + http://dublincore.org/usage/terms/history/#provenance-002 + + + + instructionalMethod-002 + instructionalMethod + terms-instructionalMethod + http://purl.org/dc/terms/instructionalMethod + http://purl.org/dc/terms/ + + A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support. + Instructional Method will typically include ways of presenting instructional materials or conducting instructional activities, patterns of learner-to-learner and learner-to-instructor interactions, and mechanisms by which group and individual levels of learning are measured. Instructional methods include all aspects of the instruction and learning processes from planning and implementation through evaluation and feedback. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + 2008-01-14 + http://purl.org/dc/terms/MethodOfInstruction + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#instructionalMethod-002 + http://dublincore.org/usage/terms/history/#instructionalMethod-001 + + + + instructionalMethod-001 + instructionalMethod + http://purl.org/dc/terms/instructionalMethod + http://purl.org/dc/terms/ + + A process, used to engender knowledge, attitudes and skills, + that the resource is designed to support. + Instructional Method will typically include ways of presenting + instructional materials or conducting instructional activities, + patterns of learner-to-learner and learner-to-instructor interactions, + and mechanisms by which group and individual levels of learning are measured. + Instructional methods include all aspects of the instruction and learning + processes from planning and implementation through evaluation and + feedback. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-02 + http://dublincore.org/usage/terms/history/#instructionalMethod-001 + http://dublincore.org/usage/terms/history/#instructionalMethod-002 + + + + accrualMethod-002 + accrualMethod + terms-accrualMethod + http://purl.org/dc/terms/accrualMethod + http://purl.org/dc/terms/ + + The method by which items are added to a collection. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + 2008-01-14 + http://purl.org/dc/terms/Collection + http://purl.org/dc/terms/MethodOfAccrual + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#accrualMethod-002 + http://dublincore.org/usage/terms/history/#accrualMethod-001 + + + + accrualMethod-001 + accrualMethod + http://purl.org/dc/terms/accrualMethod + http://purl.org/dc/terms/ + + The method by which items are added to a collection. + Recommended best practice is to use a value from a controlled vocabulary. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-03 + http://dublincore.org/usage/terms/history/#accrualMethod-001 + http://dublincore.org/usage/terms/history/#accrualMethod-002 + + + + accrualPeriodicity-002 + accrualPeriodicity + terms-accrualPeriodicity + http://purl.org/dc/terms/accrualPeriodicity + http://purl.org/dc/terms/ + + The frequency with which items are added to a collection. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + 2008-01-14 + http://purl.org/dc/terms/Collection + http://purl.org/dc/terms/Frequency + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#accrualPeriodicity-002 + http://dublincore.org/usage/terms/history/#accrualPeriodicity-001 + + + + accrualPeriodicity-001 + accrualPeriodicity + http://purl.org/dc/terms/accrualPeriodicity + http://purl.org/dc/terms/ + + The frequency with which items are added to a collection. + Recommended best practice is to use a value from a + controlled vocabulary. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-03 + http://dublincore.org/usage/terms/history/#accrualPeriodicity-001 + http://dublincore.org/usage/terms/history/#accrualPeriodicity-002 + + + + accrualPolicy-002 + accrualPolicy + terms-accrualPolicy + http://purl.org/dc/terms/accrualPolicy + http://purl.org/dc/terms/ + + The policy governing the addition of items to a collection. + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + 2008-01-14 + http://purl.org/dc/terms/Collection + http://purl.org/dc/terms/Policy + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#accrualPolicy-002 + http://dublincore.org/usage/terms/history/#accrualPolicy-001 + + + + accrualPolicy-001 + accrualPolicy + http://purl.org/dc/terms/accrualPolicy + http://purl.org/dc/terms/ + + The policy governing the addition of items to a collection. + Recommended best practice is to use a value from a controlled + vocabulary. + http://dublincore.org/usage/documents/principles/#element + http://dublincore.org/usage/documents/process/#conforming + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-03 + http://dublincore.org/usage/terms/history/#accrualPolicy-001 + http://dublincore.org/usage/terms/history/#accrualPolicy-002 + + + diff --git a/2008-01-14/xmldata/dcterms-ses.xml b/2008-01-14/xmldata/dcterms-ses.xml new file mode 100755 index 0000000..cf893de --- /dev/null +++ b/2008-01-14/xmldata/dcterms-ses.xml @@ -0,0 +1,536 @@ + + + + + + ISO639-2-003 + http://purl.org/dc/terms/ISO639-2 + http://purl.org/dc/terms/ + ISO639-2 + ses-ISO639-2 + + The three-letter alphabetic codes listed in ISO639-2 for the representation of names of languages. + http://lcweb.loc.gov/standards/iso639-2/langhome.html + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#ISO639-2-003 + http://dublincore.org/usage/terms/history/#ISO639-2-002 + + + + ISO639-2-002 + http://purl.org/dc/terms/ISO639-2 + http://purl.org/dc/terms/ + ISO639-2 + + ISO 639-2: Codes for the representation of names of languages. + http://lcweb.loc.gov/standards/iso639-2/langhome.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#ISO639-2-002 + http://dublincore.org/usage/terms/history/#ISO639-2-001 + http://dublincore.org/usage/terms/history/#ISO639-2-003 + + + + ISO639-2-001 + http://purl.org/dc/terms/ISO639-2 + http://purl.org/dc/terms/ + ISO639-2 + + ISO 639-2: Codes for the representation of names of languages. + http://lcweb.loc.gov/standards/iso639-2/langhome.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#ISO639-2-001 + http://dublincore.org/usage/terms/history/#ISO639-2-002 + + + + RFC1766-003 + http://purl.org/dc/terms/RFC1766 + http://purl.org/dc/terms/ + RFC1766 + ses-RFC1766 + + The set of tags, constructed according to RFC 1766, for the identification of languages. + http://www.ietf.org/rfc/rfc1766.txt + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#RFC1766-003 + http://dublincore.org/usage/terms/history/#RFC1766-002 + + + + RFC1766-002 + http://purl.org/dc/terms/RFC1766 + http://purl.org/dc/terms/ + RFC1766 + + Internet RFC 1766 'Tags for the identification of Language' + specifies a two letter code taken from ISO 639, followed + optionally by a two letter country code taken from ISO 3166. + http://www.ietf.org/rfc/rfc1766.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#RFC1766-002 + http://dublincore.org/usage/terms/history/#RFC1766-001 + http://dublincore.org/usage/terms/history/#RFC1766-003 + + + + RFC1766-001 + http://purl.org/dc/terms/RFC1766 + http://purl.org/dc/terms/ + RFC1766 + + Internet RFC 1766 'Tags for the identification of Language' + specifies a two letter code taken from ISO 639, followed + optionally by a two letter country code taken from ISO 3166. + http://www.ietf.org/rfc/rfc1766.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#RFC1766-001 + http://dublincore.org/usage/terms/history/#RFC1766-002 + + + + URI-003 + http://purl.org/dc/terms/URI + http://purl.org/dc/terms/ + URI + ses-URI + + The set of identifiers constructed according to the generic syntax for Uniform Resource Identifiers as specified by the Internet Engineering Task Force. + http://www.ietf.org/rfc/rfc3986.txt + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#URI-003 + http://dublincore.org/usage/terms/history/#URI-002 + + + + URI-002 + http://purl.org/dc/terms/URI + http://purl.org/dc/terms/ + URI + + A URI Uniform Resource Identifier + http://www.ietf.org/rfc/rfc2396.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/relation + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#URI-002 + http://dublincore.org/usage/terms/history/#URI-001 + http://dublincore.org/usage/terms/history/#URI-003 + + + + URI-001 + http://purl.org/dc/terms/URI + http://purl.org/dc/terms/ + URI + + A URI Uniform Resource Identifier + http://www.ietf.org/rfc/rfc2396.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/identifier + http://purl.org/dc/elements/1.1/source + http://purl.org/dc/elements/1.1/relation + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#URI-001 + http://dublincore.org/usage/terms/history/#URI-002 + + + + Point-003 + http://purl.org/dc/terms/Point + http://purl.org/dc/terms/ + Point + ses-Point + + The set of points in space defined by their geographic coordinates according to the DCMI Point Encoding Scheme. + http://dublincore.org/documents/dcmi-point/ + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Point-003 + http://dublincore.org/usage/terms/history/#Point-002 + + + + Point-002 + http://purl.org/dc/terms/Point + http://purl.org/dc/terms/ + Point + + The DCMI Point identifies a point in space using its geographic coordinates. + http://dublincore.org/documents/dcmi-point/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#Point-002 + http://dublincore.org/usage/terms/history/#Point-001 + http://dublincore.org/usage/terms/history/#Point-003 + + + + Point-001 + http://purl.org/dc/terms/Point + http://purl.org/dc/terms/ + Point + + The DCMI Point identifies a point in space using its geographic coordinates. + http://dublincore.org/documents/dcmi-point/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#Point-001 + http://dublincore.org/usage/terms/history/#Point-002 + + + + ISO3166-004 + http://purl.org/dc/terms/ISO3166 + http://purl.org/dc/terms/ + ISO3166 + ses-ISO3166 + + The set of codes listed in ISO 3166-1 for the representation of names of countries. + http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#ISO3166-004 + http://dublincore.org/usage/terms/history/#ISO3166-003 + + + + ISO3166-003 + http://purl.org/dc/terms/ISO3166 + http://purl.org/dc/terms/ + ISO3166 + + ISO 3166 Codes for the representation of names of countries + http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2004-12-17 + http://dublincore.org/usage/decisions/#Decision-2004-03 + http://dublincore.org/usage/terms/history/#ISO3166-003 + http://dublincore.org/usage/terms/history/#ISO3166-002 + http://dublincore.org/usage/terms/history/#ISO3166-004 + + + + ISO3166-002 + http://purl.org/dc/terms/ISO3166 + http://purl.org/dc/terms/ + ISO3166 + + ISO 3166 Codes for the representation of names of countries + http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/index.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#ISO3166-002 + http://dublincore.org/usage/terms/history/#ISO3166-001 + http://dublincore.org/usage/terms/history/#ISO3166-003 + + + + ISO3166-001 + http://purl.org/dc/terms/ISO3166 + http://purl.org/dc/terms/ + ISO3166 + + ISO 3166 Codes for the representation of names of countries + http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/index.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#ISO3166-001 + http://dublincore.org/usage/terms/history/#ISO3166-002 + + + + Box-003 + http://purl.org/dc/terms/Box + http://purl.org/dc/terms/ + Box + ses-Box + + The set of regions in space defined by their geographic coordinates according to the DCMI Box Encoding Scheme. + http://dublincore.org/documents/dcmi-box/ + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Box-003 + http://dublincore.org/usage/terms/history/#Box-002 + + + + Box-002 + http://purl.org/dc/terms/Box + http://purl.org/dc/terms/ + Box + + The DCMI Box identifies a region of space using its geographic limits. + http://dublincore.org/documents/dcmi-box/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#Box-002 + http://dublincore.org/usage/terms/history/#Box-001 + http://dublincore.org/usage/terms/history/#Box-003 + + + + Box-001 + http://purl.org/dc/terms/Box + http://purl.org/dc/terms/ + Box + + The DCMI Box identifies a region of space using its geographic limits. + http://dublincore.org/documents/dcmi-box/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#Box-001 + http://dublincore.org/usage/terms/history/#Box-002 + + + + Period-003 + http://purl.org/dc/terms/Period + http://purl.org/dc/terms/ + Period + ses-Period + + The set of time intervals defined by their limits according to the DCMI Period Encoding Scheme. + http://dublincore.org/documents/dcmi-period/ + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Period-003 + http://dublincore.org/usage/terms/history/#Period-002 + + + + Period-002 + http://purl.org/dc/terms/Period + http://purl.org/dc/terms/ + Period + + A specification of the limits of a time interval. + http://dublincore.org/documents/dcmi-period/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#Period-002 + http://dublincore.org/usage/terms/history/#Period-001 + http://dublincore.org/usage/terms/history/#Period-003 + + + + Period-001 + http://purl.org/dc/terms/Period + http://purl.org/dc/terms/ + Period + + A specification of the limits of a time interval. + http://dublincore.org/documents/dcmi-period/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#Period-001 + http://dublincore.org/usage/terms/history/#Period-002 + + + + W3CDTF-003 + http://purl.org/dc/terms/W3CDTF + http://purl.org/dc/terms/ + W3CDTF + ses-W3CDTF + + The set of dates and times constructed according to the W3C Date and Time Formats Specification. + http://www.w3.org/TR/NOTE-datetime + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#W3CDTF-003 + http://dublincore.org/usage/terms/history/#W3CDTF-002 + + + + W3CDTF-002 + http://purl.org/dc/terms/W3CDTF + http://purl.org/dc/terms/ + W3CDTF + + W3C Encoding rules for dates and times - a profile based on ISO 8601 + http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#W3CDTF-002 + http://dublincore.org/usage/terms/history/#W3CDTF-001 + http://dublincore.org/usage/terms/history/#W3CDTF-003 + + + + W3CDTF-001 + http://purl.org/dc/terms/W3CDTF + http://purl.org/dc/terms/ + W3CDTF + + W3C Encoding rules for dates and times - a profile based on ISO 8601 + http://www.w3.org/TR/NOTE-datetime + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/date + http://purl.org/dc/terms/temporal + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#W3CDTF-001 + http://dublincore.org/usage/terms/history/#W3CDTF-002 + + + + RFC3066-002 + http://purl.org/dc/terms/RFC3066 + http://purl.org/dc/terms/ + RFC3066 + ses-RFC3066 + + The set of tags constructed according to RFC 3066 for the identification of languages. + RFC 3066 has been obsoleted by RFC 4646. + http://www.ietf.org/rfc/rfc3066.txt + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + 2002-07-13 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#RFC3066-002 + http://dublincore.org/usage/terms/history/#RFC3066-001 + + + + RFC3066-001 + http://purl.org/dc/terms/RFC3066 + http://purl.org/dc/terms/ + RFC3066 + + Internet RFC 3066 'Tags for the + Identification of Languages' specifies a primary + subtag which is a two-letter code taken from ISO + 639 part 1 or a three-letter code taken from ISO 639 + part 2, followed optionally by a two-letter country + code taken from ISO 3166. When a language in ISO + 639 has both a two-letter and three-letter code, use + the two-letter code; when it has only a three-letter + code, use the three-letter code. This RFC replaces + RFC 1766. + http://www.ietf.org/rfc/rfc3066.txt + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/language + http://dublincore.org/usage/documents/process/#registered + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#RFC3066-001 + http://dublincore.org/usage/terms/history/#RFC3066-002 + + + + RFC4646-001 + RFC4646 + ses-RFC4646 + http://purl.org/dc/terms/RFC4646 + http://purl.org/dc/terms/ + + The set of tags constructed according to RFC 4646 for the identification of languages. + RFC 4646 obsoletes RFC 3066. + http://www.ietf.org/rfc/rfc4646.txt + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + http://dublincore.org/usage/terms/history/#RFC4646-001 + 2008-01-14 + + + + ISO639-3-001 + ISO639-3 + ses-ISO639-3 + http://purl.org/dc/terms/ISO639-3 + http://purl.org/dc/terms/ + + The set of three-letter codes listed in ISO 639-3 for the representation of names of languages. + http://www.sil.org/iso639-3/ + http://www.w3.org/2000/01/rdf-schema#Datatype + http://dublincore.org/usage/documents/process/#registered + http://dublincore.org/usage/terms/history/#ISO639-3-001 + 2008-01-14 + + + diff --git a/2008-01-14/xmldata/dcterms-ves.xml b/2008-01-14/xmldata/dcterms-ves.xml new file mode 100755 index 0000000..81df0f6 --- /dev/null +++ b/2008-01-14/xmldata/dcterms-ves.xml @@ -0,0 +1,482 @@ + + + + + + LCSH-003 + http://purl.org/dc/terms/LCSH + http://purl.org/dc/terms/ + LCSH + ves-LCSH + + The set of labeled concepts specified by the Library of Congress Subject Headings. + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#LCSH-003 + http://dublincore.org/usage/terms/history/#LCSH-002 + + + + LCSH-002 + http://purl.org/dc/terms/LCSH + http://purl.org/dc/terms/ + LCSH + + Library of Congress Subject Headings + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#LCSH-002 + http://dublincore.org/usage/terms/history/#LCSH-001 + http://dublincore.org/usage/terms/history/#LCSH-002 + + + + LCSH-001 + http://purl.org/dc/terms/LCSH + http://purl.org/dc/terms/ + LCSH + + Library of Congress Subject Headings + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#LCSH-001 + http://dublincore.org/usage/terms/history/#LCSH-002 + + + + MESH-003 + http://purl.org/dc/terms/MESH + http://purl.org/dc/terms/ + MESH + ves-MESH + + The set of labeled concepts specified by the Medical Subject Headings. + http://www.nlm.nih.gov/mesh/meshhome.html + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#MESH-003 + http://dublincore.org/usage/terms/history/#MESH-002 + + + + MESH-002 + http://purl.org/dc/terms/MESH + http://purl.org/dc/terms/ + MESH + + Medical Subject Headings + http://www.nlm.nih.gov/mesh/meshhome.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#MESH-002 + http://dublincore.org/usage/terms/history/#MESH-001 + http://dublincore.org/usage/terms/history/#MESH-003 + + + + MESH-001 + http://purl.org/dc/terms/MESH + http://purl.org/dc/terms/ + MESH + + Medical Subject Headings + http://www.nlm.nih.gov/mesh/meshhome.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#MESH-001 + http://dublincore.org/usage/terms/history/#MESH-002 + + + + DDC-003 + http://purl.org/dc/terms/DDC + http://purl.org/dc/terms/ + DDC + ves-DDC + + The set of conceptual resources specified by the Dewey Decimal Classification. + http://www.oclc.org/dewey/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#DDC-003 + http://dublincore.org/usage/terms/history/#DDC-002 + + + + DDC-002 + http://purl.org/dc/terms/DDC + http://purl.org/dc/terms/ + DDC + + Dewey Decimal Classification + http://www.oclc.org/dewey/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#DDC-002 + http://dublincore.org/usage/terms/history/#DDC-001 + http://dublincore.org/usage/terms/history/#DDC-003 + + + + DDC-001 + http://purl.org/dc/terms/DDC + http://purl.org/dc/terms/ + DDC + + Dewey Decimal Classification + http://www.oclc.org/dewey/index.htm + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#DDC-001 + http://dublincore.org/usage/terms/history/#DDC-002 + + + + LCC-003 + http://purl.org/dc/terms/LCC + http://purl.org/dc/terms/ + LCC + ves-LCC + + The set of conceptual resources specified by the Library of Congress Classification. + http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#LCC-003 + http://dublincore.org/usage/terms/history/#LCC-002 + + + + LCC-002 + http://purl.org/dc/terms/LCC + http://purl.org/dc/terms/ + LCC + + Library of Congress Classification + http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#LCC-002 + http://dublincore.org/usage/terms/history/#LCC-001 + http://dublincore.org/usage/terms/history/#LCC-003 + + + + LCC-001 + http://purl.org/dc/terms/LCC + http://purl.org/dc/terms/ + LCC + + Library of Congress Classification + http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#LCC-001 + http://dublincore.org/usage/terms/history/#LCC-002 + + + + UDC-003 + http://purl.org/dc/terms/UDC + http://purl.org/dc/terms/ + UDC + ves-UDC + + The set of conceptual resources specified by the Universal Decimal Classification. + http://www.udcc.org/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#UDC-003 + http://dublincore.org/usage/terms/history/#UDC-002 + + + + UDC-002 + http://purl.org/dc/terms/UDC + http://purl.org/dc/terms/ + UDC + + Universal Decimal Classification + http://www.udcc.org/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#UDC-002 + http://dublincore.org/usage/terms/history/#UDC-001 + http://dublincore.org/usage/terms/history/#UDC-003 + + + + UDC-001 + http://purl.org/dc/terms/UDC + http://purl.org/dc/terms/ + UDC + + Universal Decimal Classification + http://www.udcc.org/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#UDC-001 + http://dublincore.org/usage/terms/history/#UDC-002 + + + + DCMIType-003 + http://purl.org/dc/terms/DCMIType + http://purl.org/dc/terms/ + DCMIType + ves-DCMIType + + The set of classes specified by the DCMI Type Vocabulary, used to categorize the nature or genre of the resource. + http://dublincore.org/documents/dcmi-type-vocabulary/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#DCMIType-003 + http://dublincore.org/usage/terms/history/#DCMIType-002 + + + + DCMIType-002 + http://purl.org/dc/terms/DCMIType + http://purl.org/dc/terms/ + DCMIType + + A list of types used to categorize the nature or genre + of the content of the resource. + http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/type + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#DCMIType-002 + http://dublincore.org/usage/terms/history/#DCMIType-001 + http://dublincore.org/usage/terms/history/#DCMIType-003 + + + + DCMIType-001 + http://purl.org/dc/terms/DCMIType + http://purl.org/dc/terms/ + DCMIType + + A list of types used to categorize the nature or genre + of the content of the resource. + http://dublincore.org/documents/dcmi-type-vocabulary/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/type + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#DCMIType-001 + http://dublincore.org/usage/terms/history/#DCMIType-002 + + + + IMT-004 + http://purl.org/dc/terms/IMT + http://purl.org/dc/terms/ + IMT + ves-IMT + + The set of media types specified by the Internet Assigned Numbers Authority. + http://www.iana.org/assignments/media-types/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#IMT-004 + http://dublincore.org/usage/terms/history/#IMT-003 + + + + IMT-003 + http://purl.org/dc/terms/IMT + http://purl.org/dc/terms/ + IMT + + The Internet media type of the resource. + http://www.iana.org/assignments/media-types/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/format + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2004-12-17 + http://dublincore.org/usage/decisions/#Decision-2004-03 + http://dublincore.org/usage/terms/history/#IMT-003 + http://dublincore.org/usage/terms/history/#IMT-002 + http://dublincore.org/usage/terms/history/#IMT-004 + + + + IMT-002 + http://purl.org/dc/terms/IMT + http://purl.org/dc/terms/ + IMT + + The Internet media type of the resource. + http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/format + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#IMT-002 + http://dublincore.org/usage/terms/history/#IMT-001 + http://dublincore.org/usage/terms/history/#IMT-003 + + + + IMT-001 + http://purl.org/dc/terms/IMT + http://purl.org/dc/terms/ + IMT + + The Internet media type of the resource. + http://www.isi.edu/in-notes/iana/assignments/media-types/media-types + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/format + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#IMT-001 + http://dublincore.org/usage/terms/history/#IMT-002 + + + + TGN-003 + http://purl.org/dc/terms/TGN + http://purl.org/dc/terms/ + TGN + ves-TGN + + The set of places specified by the Getty Thesaurus of Geographic Names. + http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#TGN-003 + http://dublincore.org/usage/terms/history/#TGN-002 + + + + TGN-002 + http://purl.org/dc/terms/TGN + http://purl.org/dc/terms/ + TGN + + The Getty Thesaurus of Geographic Names + http://www.getty.edu/research/tools/vocabulary/tgn/index.html + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + http://dublincore.org/usage/documents/process/#registered + 2000-07-11 + 2002-06-15 + http://dublincore.org/usage/decisions/#Decision-2002-01 + http://dublincore.org/usage/terms/history/#TGN-002 + http://dublincore.org/usage/terms/history/#TGN-001 + http://dublincore.org/usage/terms/history/#TGN-003 + + + + TGN-001 + http://purl.org/dc/terms/TGN + http://purl.org/dc/terms/ + TGN + + The Getty Thesaurus of Geographic Names + http://shiva.pub.getty.edu/tgn_browser/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/terms/spatial + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-01 + http://dublincore.org/usage/terms/history/#TGN-001 + http://dublincore.org/usage/terms/history/#TGN-002 + + + + NLM-002 + NLM + ves-NLM + http://purl.org/dc/terms/NLM + http://purl.org/dc/terms/ + + The set of conceptual resources specified by the National Library of Medicine Classification. + http://wwwcf.nlm.nih.gov/class/ + http://purl.org/dc/dcam/VocabularyEncodingScheme + http://dublincore.org/usage/documents/process/#registered + 2005-06-13 + 2008-01-14 + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#NLM-002 + http://dublincore.org/usage/terms/history/#NLM-001 + + + + NLM-001 + NLM + http://purl.org/dc/terms/NLM + http://purl.org/dc/terms/ + + National Library of Medicine Classification + http://wwwcf.nlm.nih.gov/class/ + http://dublincore.org/usage/documents/principles/#encoding-scheme + http://purl.org/dc/elements/1.1/subject + http://dublincore.org/usage/documents/process/#registered + 2005-06-13 + http://dublincore.org/usage/decisions/#Decision-2005-01 + http://dublincore.org/usage/terms/history/#NLM-001 + http://dublincore.org/usage/terms/history/#NLM-002 + + + diff --git a/2008-01-14/xmldata/dctype.xml b/2008-01-14/xmldata/dctype.xml new file mode 100755 index 0000000..8262e39 --- /dev/null +++ b/2008-01-14/xmldata/dctype.xml @@ -0,0 +1,751 @@ + + + + + + Collection-003 + http://purl.org/dc/dcmitype/Collection + http://purl.org/dc/dcmitype/ + Collection + dcmitype-Collection + + An aggregation of resources. + A collection is described as a group; its parts may also be separately described. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Collection-003 + http://dublincore.org/usage/terms/history/#Collection-002 + + + + Collection-002 + http://purl.org/dc/dcmitype/Collection + http://purl.org/dc/dcmitype/ + Collection + + An aggregation of resources. + A collection is described as a group; its parts + may also be separately described. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Collection-002 + http://dublincore.org/usage/terms/history/#Collection-001 + http://dublincore.org/usage/terms/history/#Collection-003 + + + + Collection-001 + http://purl.org/dc/dcmitype/Collection + http://purl.org/dc/dcmitype/ + Collection + + A collection is an aggregation of items. The term + collection means that the resource is described as a + group; its parts may be separately described and navigated. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Collection-001 + http://dublincore.org/usage/terms/history/#Collection-002 + + + + Dataset-003 + http://purl.org/dc/dcmitype/Dataset + http://purl.org/dc/dcmitype/ + Dataset + dcmitype-Dataset + + Data encoded in a defined structure. + Examples include lists, tables, and databases. A dataset may be useful for direct machine processing. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Dataset-003 + http://dublincore.org/usage/terms/history/#Dataset-002 + + + + Dataset-002 + http://purl.org/dc/dcmitype/Dataset + http://purl.org/dc/dcmitype/ + Dataset + + Data encoded in a defined structure. + Examples include lists, tables, and databases. + A dataset may be useful for direct machine processing. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Dataset-002 + http://dublincore.org/usage/terms/history/#Dataset-001 + http://dublincore.org/usage/terms/history/#Dataset-003 + + + + Dataset-001 + http://purl.org/dc/dcmitype/Dataset + http://purl.org/dc/dcmitype/ + Dataset + + A dataset is information encoded in a defined structure + (for example, lists, tables, and databases), intended to + be useful for direct machine processing. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Dataset-001 + http://dublincore.org/usage/terms/history/#Dataset-002 + + + + Event-003 + http://purl.org/dc/dcmitype/Event + http://purl.org/dc/dcmitype/ + Event + dcmitype-Event + + A non-persistent, time-based occurrence. + Metadata for an event provides descriptive information that is the basis for discovery of the purpose, location, duration, and responsible agents associated with an event. Examples include an exhibition, webcast, conference, workshop, open day, performance, battle, trial, wedding, tea party, conflagration. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Event-003 + http://dublincore.org/usage/terms/history/#Event-002 + + + + Event-002 + http://purl.org/dc/dcmitype/Event + http://purl.org/dc/dcmitype/ + Event + + A non-persistent, time-based occurrence. + Metadata for an event provides descriptive + information that is the basis for discovery of the + purpose, location, duration, and responsible + agents associated with an event. Examples + include an exhibition, webcast, conference, workshop, + open day, performance, battle, trial, wedding, tea + party, conflagration. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Event-002 + http://dublincore.org/usage/terms/history/#Event-001 + http://dublincore.org/usage/terms/history/#Event-003 + + + + Event-001 + http://purl.org/dc/dcmitype/Event + http://purl.org/dc/dcmitype/ + Event + + An event is a non-persistent, time-based occurrence. + Metadata for an event provides descriptive + information that is the basis for discovery of the + purpose, location, duration, responsible agents, and + links to related events and resources. The resource + of type event may not be retrievable if the described + instantiation has expired or is yet to occur. + Examples - exhibition, web-cast, conference, + workshop, open-day, performance, battle, trial, + wedding, tea-party, conflagration. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Event-001 + http://dublincore.org/usage/terms/history/#Event-002 + + + + Image-004 + http://purl.org/dc/dcmitype/Image + http://purl.org/dc/dcmitype/ + Image + dcmitype-Image + + A visual representation other than text. + Examples include images and photographs of physical objects, paintings, prints, drawings, other images and graphics, animations and moving pictures, film, diagrams, maps, musical notation. Note that Image may include both electronic and physical representations. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/MovingImage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Image-004 + http://dublincore.org/usage/terms/history/#Image-003 + + + + Image-003 + http://purl.org/dc/dcmitype/Image + http://purl.org/dc/dcmitype/ + Image + + A visual representation other than text. + Examples include images and photographs + of physical objects, paintings, prints, drawings, other + images and graphics, animations and moving + pictures, film, diagrams, maps, musical + notation. Note that Image may include both + electronic and physical representations. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/MovingImage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Image-003 + http://dublincore.org/usage/terms/history/#Image-002 + http://dublincore.org/usage/terms/history/#Image-004 + + + + Image-002 + http://purl.org/dc/dcmitype/Image + http://purl.org/dc/dcmitype/ + Image + + An image is a primarily symbolic visual representation + other than text. For example - images and photographs of + physical objects, paintings, prints, drawings, other + images and graphics, animations and moving pictures, + film, diagrams, maps, musical notation. Note that image + may include both electronic and physical representations. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/MovingImage + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2003-11-18 + http://dublincore.org/usage/decisions/#Decision-2003-02 + http://dublincore.org/usage/terms/history/#Image-002 + http://dublincore.org/usage/terms/history/#Image-001 + http://dublincore.org/usage/terms/history/#Image-003 + + + + Image-001 + http://purl.org/dc/dcmitype/Image + http://purl.org/dc/dcmitype/ + Image + + An image is a primarily symbolic visual representation + other than text. For example - images and photographs of + physical objects, paintings, prints, drawings, other + images and graphics, animations and moving pictures, + film, diagrams, maps, musical notation. Note that image + may include both electronic and physical representations. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Image-001 + http://dublincore.org/usage/terms/history/#Image-002 + + + + InteractiveResource-003 + http://purl.org/dc/dcmitype/InteractiveResource + http://purl.org/dc/dcmitype/ + InteractiveResource + dcmitype-InteractiveResource + + A resource requiring interaction from the user to be understood, executed, or experienced. + Examples include forms on Web pages, applets, multimedia learning objects, chat services, or virtual reality environments. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#InteractiveResource-003 + http://dublincore.org/usage/terms/history/#InteractiveResource-002 + + + + InteractiveResource-002 + http://purl.org/dc/dcmitype/InteractiveResource + http://purl.org/dc/dcmitype/ + InteractiveResource + + A resource requiring interaction from the user to + be understood, executed, or experienced. + Examples include forms on Web pages, applets, multimedia + learning objects, chat services, or virtual reality + environments. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#InteractiveResource-002 + http://dublincore.org/usage/terms/history/#InteractiveResource-001 + http://dublincore.org/usage/terms/history/#InteractiveResource-003 + + + + InteractiveResource-001 + http://purl.org/dc/dcmitype/InteractiveResource + http://purl.org/dc/dcmitype/ + InteractiveResource + + An interactive resource is a resource which requires + interaction from the user to be understood, executed, + or experienced. For example - forms on web pages, applets, + multimedia learning objects, chat services, virtual + reality. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#InteractiveResource-001 + http://dublincore.org/usage/terms/history/#InteractiveResource-002 + + + + Service-003 + http://purl.org/dc/dcmitype/Service + http://purl.org/dc/dcmitype/ + Service + dcmitype-Service + + A system that provides one or more functions. + Examples include a photocopying service, a banking service, an authentication service, interlibrary loans, a Z39.50 or Web server. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Service-003 + http://dublincore.org/usage/terms/history/#Service-002 + + + + Service-002 + http://purl.org/dc/dcmitype/Service + http://purl.org/dc/dcmitype/ + Service + + A system that provides one or more functions. + Examples include a photocopying service, a banking service, + an authentication service, interlibrary loans, a Z39.50 or + Web server. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Service-002 + http://dublincore.org/usage/terms/history/#Service-001 + http://dublincore.org/usage/terms/history/#Service-003 + + + + Service-001 + http://purl.org/dc/dcmitype/Service + http://purl.org/dc/dcmitype/ + Service + + A service is a system that provides one or more + functions of value to the end-user. Examples include: + a photocopying service, a banking service, an + authentication service, interlibrary loans, a Z39.50 + or Web server. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Service-001 + http://dublincore.org/usage/terms/history/#Service-002 + + + + Software-003 + http://purl.org/dc/dcmitype/Software + http://purl.org/dc/dcmitype/ + Software + dcmitype-Software + + A computer program in source or compiled form. + Examples include a C source file, MS-Windows .exe executable, or Perl script. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Software-003 + http://dublincore.org/usage/terms/history/#Software-002 + + + + Software-002 + http://purl.org/dc/dcmitype/Software + http://purl.org/dc/dcmitype/ + Software + + A computer program in source or compiled form. + Examples include a C source file, MS-Windows .exe executable, + or Perl script. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Software-002 + http://dublincore.org/usage/terms/history/#Software-001 + http://dublincore.org/usage/terms/history/#Software-003 + + + + Software-001 + http://purl.org/dc/dcmitype/Software + http://purl.org/dc/dcmitype/ + Software + + Software is a computer program in source or + compiled form which may be available for installation + non-transiently on another machine. For software which + exists only to create an interactive environment, use + interactive instead. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Software-001 + http://dublincore.org/usage/terms/history/#Software-002 + + + + Sound-003 + http://purl.org/dc/dcmitype/Sound + http://purl.org/dc/dcmitype/ + Sound + dcmitype-Sound + + A resource primarily intended to be heard. + Examples include a music playback file format, an audio compact disc, and recorded speech or sounds. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Sound-003 + http://dublincore.org/usage/terms/history/#Sound-002 + + + + Sound-002 + http://purl.org/dc/dcmitype/Sound + http://purl.org/dc/dcmitype/ + Sound + + A resource primarily intended to be heard. + Examples include a music playback file format, an audio + compact disc, and recorded speech or sounds. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Sound-002 + http://dublincore.org/usage/terms/history/#Sound-001 + http://dublincore.org/usage/terms/history/#Sound-003 + + + + Sound-001 + http://purl.org/dc/dcmitype/Sound + http://purl.org/dc/dcmitype/ + Sound + + A sound is a resource whose content is primarily + intended to be rendered as audio. For example - a + music playback file format, an audio compact disc, + and recorded speech or sounds. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Sound-001 + http://dublincore.org/usage/terms/history/#Sound-002 + + + + Text-003 + http://purl.org/dc/dcmitype/Text + http://purl.org/dc/dcmitype/ + Text + dcmitype-Text + + A resource consisting primarily of words for reading. + Examples include books, letters, dissertations, poems, newspapers, articles, archives of mailing lists. Note that facsimiles or images of texts are still of the genre Text. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#Text-003 + http://dublincore.org/usage/terms/history/#Text-002 + + + + Text-002 + http://purl.org/dc/dcmitype/Text + http://purl.org/dc/dcmitype/ + Text + + A resource consisting primarily of words for reading. + Examples include books, letters, dissertations, + poems, newspapers, articles, archives of mailing + lists. Note that facsimiles or images of + texts are still of the genre Text. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#Text-002 + http://dublincore.org/usage/terms/history/#Text-001 + http://dublincore.org/usage/terms/history/#Text-003 + + + + Text-001 + http://purl.org/dc/dcmitype/Text + http://purl.org/dc/dcmitype/ + Text + + A text is a resource whose content is primarily + words for reading. For example - books, letters, + dissertations, poems, newspapers, articles, + archives of mailing lists. Note that facsimiles + or images of texts are still of the genre text. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2000-07-11 + http://dublincore.org/usage/decisions/#Decision-2000-02 + http://dublincore.org/usage/terms/history/#Text-001 + http://dublincore.org/usage/terms/history/#Text-002 + + + + PhysicalObject-003 + http://purl.org/dc/dcmitype/PhysicalObject + http://purl.org/dc/dcmitype/ + PhysicalObject + dcmitype-PhysicalObject + + An inanimate, three-dimensional object or substance. + Note that digital representations of, or surrogates for, these objects should use Image, Text or one of the other types. + http://www.w3.org/2000/01/rdf-schema#Class + http://dublincore.org/usage/documents/process/#recommended + 2002-07-13 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/terms/history/#PhysicalObject-003 + http://dublincore.org/usage/terms/history/#PhysicalObject-002 + + + + PhysicalObject-002 + http://purl.org/dc/dcmitype/PhysicalObject + http://purl.org/dc/dcmitype/ + PhysicalObject + + An inanimate, three-dimensional object or substance. + Note that digital representations of, or surrogates for, + these objects should use Image, Text or one of the other + types. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2002-07-13 + 2006-08-28 + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/terms/history/#PhysicalObject-002 + http://dublincore.org/usage/terms/history/#PhysicalObject-001 + http://dublincore.org/usage/terms/history/#PhysicalObject-003 + + + + PhysicalObject-001 + http://purl.org/dc/dcmitype/PhysicalObject + http://purl.org/dc/dcmitype/ + PhysicalObject + + An inanimate, three-dimensional object or substance. + For example -- a computer, the great pyramid, a + sculpture. Note that digital representations + of, or surrogates for, these things should use Image, + Text or one of the other types. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://dublincore.org/usage/documents/process/#recommended + 2002-07-13 + http://dublincore.org/usage/decisions/#Decision-2002-02 + http://dublincore.org/usage/terms/history/#PhysicalObject-001 + http://dublincore.org/usage/terms/history/#PhysicalObject-002 + + + + StillImage-003 + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/ + StillImage + dcmitype-StillImage + + A static visual representation. + Examples include paintings, drawings, graphic designs, plans and maps. Recommended best practice is to assign the type Text to images of textual materials. Instances of the type Still Image must also be describable as instances of the broader type Image. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/terms/history/#StillImage-003 + http://dublincore.org/usage/terms/history/#StillImage-002 + + + + StillImage-002 + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/ + StillImage + + A static visual representation. + Examples include paintings, drawings, + graphic designs, plans and maps. Recommended + best practice is to assign the type Text to + images of textual materials. Instances of the + type Still Image must also be describable as + instances of the broader type Image. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + 2006-08-28 + http://dublincore.org/usage/terms/history/#StillImage-002 + http://dublincore.org/usage/terms/history/#StillImage-001 + http://dublincore.org/usage/terms/history/#StillImage-003 + + + + StillImage-001 + http://purl.org/dc/dcmitype/StillImage + http://purl.org/dc/dcmitype/ + StillImage + + A static visual representation. Examples of + still images are: paintings, drawings, graphic designs, + plans and maps. + Recommended best practice is to assign the type + "text" to images of textual materials. Instances of + the type "Still Image" must also be describable as + instances of the broader type "Image". + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2003-02 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + http://dublincore.org/usage/terms/history/#StillImage-001 + http://dublincore.org/usage/terms/history/#StillImage-002 + + + + MovingImage-003 + http://purl.org/dc/dcmitype/MovingImage + http://purl.org/dc/dcmitype/ + MovingImage + dcmitype-MovingImage + + A series of visual representations imparting an impression of motion when shown in succession. + Examples include animations, movies, television programs, videos, zoetropes, or visual output from a simulation. Instances of the type Moving Image must also be describable as instances of the broader type Image. + http://www.w3.org/2000/01/rdf-schema#Class + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2008-01 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + 2008-01-14 + http://purl.org/dc/terms/DCMIType + http://dublincore.org/usage/terms/history/#MovingImage-003 + http://dublincore.org/usage/terms/history/#MovingImage-002 + + + + MovingImage-002 + http://purl.org/dc/dcmitype/MovingImage + http://purl.org/dc/dcmitype/ + MovingImage + + A series of visual representations imparting + an impression of motion when shown in succession. + Examples include animations, movies, television programs, + videos, zoetropes, or visual output from a simulation. + Instances of the type Moving Image must also be describable + as instances of the broader type Image. + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2006-02 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + 2006-08-28 + http://dublincore.org/usage/terms/history/#MovingImage-002 + http://dublincore.org/usage/terms/history/#MovingImage-001 + http://dublincore.org/usage/terms/history/#MovingImage-003 + + + + MovingImage-001 + http://purl.org/dc/dcmitype/MovingImage + http://purl.org/dc/dcmitype/ + MovingImage + + A series of visual representations that, + when shown in succession, impart an impression + of motion. Examples of moving images are: + animations, movies, television programs, + videos, zoetropes, or visual output from + a simulation. + Instances of the type "Moving Image" must + also be describable as instances of the broader type "Image". + http://dublincore.org/usage/documents/principles/#vocabulary-term + http://purl.org/dc/dcmitype/Image + http://dublincore.org/usage/decisions/#Decision-2003-02 + http://dublincore.org/usage/documents/process/#recommended + 2003-11-18 + http://dublincore.org/usage/terms/history/#MovingImage-001 + http://dublincore.org/usage/terms/history/#MovingImage-002 + + + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..20cf8fd --- /dev/null +++ b/LICENSE @@ -0,0 +1,48 @@ +The software is hereby made available under the terms of the +DCMI Public License 2.0 [1]. + +This license corresponds to the BSD License as formulated by +the Open Source Initiative [2]. + +[1] http://dublincore.org/about/software/license2/ +[2] http://www.opensource.org/licenses/bsd-license.php + +License +======= + +Copyright (c) 2008, Dublin Core Metadata Initiative + +All rights reserved. + +Redistribution and use in source and binary forms, with +or without modification, are permitted provided that the +following conditions are met: + +* Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + +* Redistributions in binary form must reproduce the + above copyright notice, this list of conditions and the + following disclaimer in the documentation and/or other + materials provided with the distribution. + +* Neither the name of Dublin Core Metadata Initiative nor + the names of its contributors may be used to endorse or + promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND +CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + diff --git a/README b/README new file mode 100644 index 0000000..d467766 --- /dev/null +++ b/README @@ -0,0 +1,131 @@ +Vocabulary Management Tool + +2010-05-05 + +This tool was developed in circa 2002 by Mitsuharu Nagamori +and Harry Wagner. It is used to generate RDF schemas and Web +pages for DCMI Metadata Terms from source files in unvalidated +XML, hand-edited using vi. We have long recognized that this +method could be improved but, while somewhat cumbersome, +it has served us well for eight years given the frequency +with which we need to make changes. We are making it available +in an open source repository and welcome improvements to the +code. + +Specifically, we are interested in modifying the XSL transforms +to generate Web pages for DCMI metadata terms that contain its +formal RDF specification embedded in the attributes using RDFa. + +To use the tool, the vocabulary maintainer edits the following +files, adding terms that have been approved or making changes +to existing terms: + + http://dublincore.org/usage/xml/dcam.xml + http://dublincore.org/usage/xml/dcelements.xml + http://dublincore.org/usage/xml/dcterms-classes.xml + http://dublincore.org/usage/xml/dcterms-properties.xml + http://dublincore.org/usage/xml/dcterms-ses.xml + http://dublincore.org/usage/xml/dcterms-ves.xml + http://dublincore.org/usage/xml/dctype.xml + http://dublincore.org/usage/xml/header-doc-dcterms.xml + http://dublincore.org/usage/xml/header-doc-dctype.xml + http://dublincore.org/usage/xml/header-doc-history.xml + http://dublincore.org/usage/xml/header-rdf-dcam.xml + http://dublincore.org/usage/xml/header-rdf-dcelements.xml + http://dublincore.org/usage/xml/header-rdf-dcterms.xml + http://dublincore.org/usage/xml/header-rdf-dctype.xml + http://dublincore.org/usage/xml/intro.dcmi-terms.xsl + http://dublincore.org/usage/xml/intro.history.xsl + +Note that to change an existing term, a new snapshot is created, +then edited, so that each historical "description" of the term +is preserved. This is analogous to the way DCMI and W3C version +Web documents -- i.e., snapshots supersede each other and accumulate +to form the historical record. DCMI would also welcome feedback +or suggestions on this versioning model. + +To prepare a new release of documentation, the editor copies +the files listed above to a time-stamped directory under the +VMT project (here, vmt:), e.g. as follows: + + vmt:2008-01-14/headers/header-doc-dcterms.xml + vmt:2008-01-14/headers/header-doc-dctype.xml + vmt:2008-01-14/headers/header-doc-history.xml + vmt:2008-01-14/headers/header-rdf-dcam.xml + vmt:2008-01-14/headers/header-rdf-dcelements.xml + vmt:2008-01-14/headers/header-rdf-dcterms.xml + vmt:2008-01-14/headers/header-rdf-dctype.xml + vmt:2008-01-14/headers/intro.dcmi-terms.xsl + vmt:2008-01-14/headers/intro.history.xsl + vmt:2008-01-14/xmldata/dcam.xml + vmt:2008-01-14/xmldata/dcelements.xml + vmt:2008-01-14/xmldata/dcterms-classes.xml + vmt:2008-01-14/xmldata/dcterms-properties.xml + vmt:2008-01-14/xmldata/dcterms-ses.xml + vmt:2008-01-14/xmldata/dcterms-ves.xml + vmt:2008-01-14/xmldata/dctype.xml + +Then the following file is edited: + + vmt:build.xml + +for example, thus: + + :%s/2008-01-14/2010-04-30/ + +The build file uses the following XSL files: + + vmt:web/xsl/common-templates.xsl + vmt:web/xsl/dcam.xsl + vmt:web/xsl/dcelements.xsl + vmt:web/xsl/dcterms.xsl + vmt:web/xsl/dctype.xsl + vmt:web/xsl/html-dcmiterms.xsl + vmt:web/xsl/html-dctype.xsl + vmt:web/xsl/html-history.xsl + +Apache Ant (version 1.7 or higher)[1] is required to run the program. +After installation of Apache Ant, execute the command: + + $ ant + +The output is written to a new directory: + + vmt:build + +The output is then installed on the DCMI stage server for publication +on the production Website. As a final step, the PURLs for DCMI metadata +terms are edited to point to the schemas. See, for example: + + http://dublincore.org/documents/dcmi-terms/ + -> http://dublincore.org/documents/2008/01/14/dcmi-terms/ + http://dublincore.org/documents/dcmi-type-vocabulary/ + -> http://dublincore.org/documents/2008/01/14/dcmi-type-vocabulary/ + http://dublincore.org/usage/terms/history/ + -> http://dublincore.org/usage/terms/history/2008/01/14/ + http://dublincore.org/documents/dces/ + -> http://dublincore.org/documents/2008/01/14/dces/ + + http://purl.org/dc/elements/1.1/ + -> http://dublincore.org/2008/01/14/dcelements.rdf# + http://purl.org/dc/terms/ + -> http://dublincore.org/2008/01/14/dcterms.rdf# + http://purl.org/dc/dcmitype/ + -> http://dublincore.org/2008/01/14/dctype.rdf# + http://purl.org/dc/dcam/ + -> http://dublincore.org/2008/01/14/dcam.rdf# + +Any comments or feedback on this tool or the general approach +to publishing DCMI Metadata Terms (such as versioning) is +most welcome. To submit a comment, please either subscribe to +the dc-architecture mailing list [2] and post there or send +comments to tbaker@tbaker.de indicating whether or not they are +intended also for posting to the list. + +Tom Baker +CIO, Dublin Core Metadata Initiative Ltd. +http://dublincore.org + + +[1] http://ant.apache.org/ +[2] http://www.jiscmail.ac.uk/lists/dc-architecture.html diff --git a/archive/src-old/org/dublincore/vmt/tools/myxt b/archive/src-old/org/dublincore/vmt/tools/myxt new file mode 100755 index 0000000..3b4dd3c --- /dev/null +++ b/archive/src-old/org/dublincore/vmt/tools/myxt @@ -0,0 +1,6 @@ +#!/bin/tcsh -f + +setenv JAVA_HOME /usr/java/j2sdk1.4.0_01 +#setenv CLASSPATH ${CLASSPATH}:/home/mitsuharu/lib/myxt.jar + +java myxt $* diff --git a/archive/src-old/org/dublincore/vmt/tools/myxt.java b/archive/src-old/org/dublincore/vmt/tools/myxt.java new file mode 100755 index 0000000..845ab61 --- /dev/null +++ b/archive/src-old/org/dublincore/vmt/tools/myxt.java @@ -0,0 +1,73 @@ +// +// Simple XSLT Processor +// $Id: myxt.java,v 1.1.1.1 2003/10/13 19:43:58 wagnerh Exp $ +// +// note: J2SDK1.4 (or higher) is required to compile this program. +// + +//package org.dublincore.vmt.tools; + +import java.io.File; +import javax.xml.transform.TransformerFactory; +import javax.xml.transform.Transformer; +import javax.xml.transform.TransformerConfigurationException; +import javax.xml.transform.TransformerException; +import javax.xml.transform.Source; +import javax.xml.transform.Result; +import javax.xml.transform.stream.StreamSource; +import javax.xml.transform.stream.StreamResult; + +public class myxt +{ + public static void main(String[] args) { + int nArgs = 0; + TransformerFactory factory = null; + Transformer transformer = null; + + if (args.length < 2) { + usage(); + } + try { + factory = TransformerFactory.newInstance(); + transformer = factory.newTransformer(new StreamSource(args[1])); + } catch (TransformerConfigurationException e) { + System.err.println(e.getMessageAndLocation()); + System.exit(-1); + } + + for (int i=0; i 0) { + String key = args[i].substring(0, k); + String value = args[i].substring(k + 1); + transformer.setParameter(key, value); + } else { + args[nArgs++] = args[i]; + } + } + if (nArgs != 2 && nArgs != 3) { + usage(); + } + + Source inputSource = new StreamSource(args[0]); + + Result outputResult = null; + if (nArgs == 3) { + outputResult = new StreamResult(args[2]); + } else { + outputResult = new StreamResult(System.out); + } + + try { + transformer.transform(inputSource,outputResult); + } catch (TransformerException e) { + System.err.println(e.getMessageAndLocation()); + System.exit(-1); + } + } + + public static void usage() { + System.err.println("usage: myxt source stylesheet [result] [param=value]..."); + System.exit(-1); + } +} diff --git a/archive/src-old/org/dublincore/vmt/tools/usage.java b/archive/src-old/org/dublincore/vmt/tools/usage.java new file mode 100755 index 0000000..517e53a --- /dev/null +++ b/archive/src-old/org/dublincore/vmt/tools/usage.java @@ -0,0 +1,103 @@ +//package org.dublincore.vmt.tools; + +import javax.xml.transform.TransformerFactory; +import javax.xml.transform.Transformer; +import javax.xml.transform.OutputKeys; +import javax.xml.transform.stream.StreamSource; +import javax.xml.transform.stream.StreamResult; +import javax.xml.transform.Source; +import javax.xml.transform.TransformerException; +import javax.xml.transform.TransformerConfigurationException; + +import java.io.FileOutputStream; +import java.io.FileNotFoundException; + +import java.io.*; +import java.net.*; +import java.util.*; + +/** + * Use the TraX interface to perform a transformation in the simplest manner possible + */ + + +public class usage { + private static String[] monthNames = {"January","February","March","April","May","June","July","August","September","October","November","December"}; + + public static void main(String[] args) + throws TransformerException, TransformerConfigurationException, + FileNotFoundException, IOException { + + String proFile = null; + String xmlFile = null; + String xslFile = null; + String outFile = null; + String ns = null; + String tt = null; + String hfn = null; + Calendar tDate; + String todaysDate = null; + + + if (args.length == 1) { + proFile = args[0]; + System.out.println("using property file: " + proFile); + } else { + System.out.println("improper usage"); + usage(); + System.exit(-1); + } + + try { + Properties p = new Properties(); + InputStream pin = new FileInputStream(proFile); + p.load(pin); + + xmlFile = p.getProperty("xmlFile"); + xslFile = p.getProperty("xslFile"); + outFile = p.getProperty("outFile"); + ns = p.getProperty("ns"); + tt = p.getProperty("tt"); + hfn = p.getProperty("hfn"); + + tDate = new GregorianCalendar(); + StringBuffer ts = new StringBuffer(); + ts.append(Integer.toString(tDate.get(Calendar.YEAR))); + if (tDate.get(Calendar.MONTH) > 8) { + ts.append("-" + Integer.toString(tDate.get(Calendar.MONTH) + 1)); + } else { + ts.append("-0" + Integer.toString(tDate.get(Calendar.MONTH) + 1)); + } + if (tDate.get(Calendar.DATE) > 9) { + ts.append("-" + Integer.toString(tDate.get(Calendar.DATE))); + } else { + ts.append("-0" + Integer.toString(tDate.get(Calendar.DATE))); + } + todaysDate = ts.toString(); + + } catch (Exception e) { + System.out.println("error reading properties file"); + System.err.println(e); + e.printStackTrace(); + } + + TransformerFactory tFactory = TransformerFactory.newInstance(); + Transformer transformer = tFactory.newTransformer(new StreamSource(xslFile)); + transformer.setOutputProperty(OutputKeys.ENCODING, "UTF8"); + transformer.setParameter("todaysDate", todaysDate); + if (ns != null) + transformer.setParameter("ns", ns); + if (tt != null) + transformer.setParameter("tt", tt); + transformer.setParameter("hfn", hfn); + transformer.transform(new StreamSource(xmlFile), + new StreamResult(new FileOutputStream(outFile))); + + System.out.println("done! results are in: " + outFile); + } + + private static final void usage() { + System.out.println("Usage: usage "); + } + +} \ No newline at end of file diff --git a/build.xml b/build.xml new file mode 100755 index 0000000..3915bac --- /dev/null +++ b/build.xml @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/xsl/common-templates.xsl b/web/xsl/common-templates.xsl new file mode 100755 index 0000000..0683dc2 --- /dev/null +++ b/web/xsl/common-templates.xsl @@ -0,0 +1,348 @@ + + + + + + + + + + + + + +<!DOCTYPE rdf:RDF [ + <!ENTITY rdfns 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> + <!ENTITY rdfsns 'http://www.w3.org/2000/01/rdf-schema#'> + <!ENTITY dcns 'http://purl.org/dc/elements/1.1/'> + <!ENTITY dctermsns 'http://purl.org/dc/terms/'> + <!ENTITY dctypens 'http://purl.org/dc/dcmitype/'> + <!ENTITY dcamns 'http://purl.org/dc/dcam/'> + <!ENTITY skosns 'http://www.w3.org/2004/02/skos/core#'> +]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + () + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/xsl/dcam.xsl b/web/xsl/dcam.xsl new file mode 100755 index 0000000..c015e7f --- /dev/null +++ b/web/xsl/dcam.xsl @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + rdfs:Class + + + rdf:Property + + + + + + + + + + + + + + diff --git a/web/xsl/dcelements.xsl b/web/xsl/dcelements.xsl new file mode 100755 index 0000000..487071f --- /dev/null +++ b/web/xsl/dcelements.xsl @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + rdfs:Class + + + rdf:Property + + + + + + + + + + + + + diff --git a/web/xsl/dcterms.xsl b/web/xsl/dcterms.xsl new file mode 100755 index 0000000..700881e --- /dev/null +++ b/web/xsl/dcterms.xsl @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/xsl/dctype.xsl b/web/xsl/dctype.xsl new file mode 100755 index 0000000..bd02503 --- /dev/null +++ b/web/xsl/dctype.xsl @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/xsl/html-dcmiterms.xsl b/web/xsl/html-dcmiterms.xsl new file mode 100755 index 0000000..f7af837 --- /dev/null +++ b/web/xsl/html-dcmiterms.xsl @@ -0,0 +1,405 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="H1/Title"/> + + <!--#exec cgi="/cgi-bin/metawriter.cgi" --> + + + + + + <!--#include virtual="/ssi/header.shtml" --> + + + + + + + + + + + + <!--#include virtual="/ssi/footer.shtml" --> + + + + + +

+ + + + + + + + + +
+
+ + +

Table of Contents

+
    +
  1. Introduction and Definitions
  2. +
  3. Properties in the /terms/ namespace
  4. +
  5. Properties in the legacy /elements/1.1/ namespace
  6. +
  7. Vocabulary Encoding Schemes
  8. +
  9. Syntax Encoding Schemes
  10. +
  11. Classes
  12. +
  13. DCMI Type Vocabulary
  14. +
  15. Terms related to the DCMI Abstract Model
  16. + +
+
+ + +

Index of Terms

+ + + + + + + + + + + + + + + + + + + + + +
Properties in the /terms/ namespace + + + + + + + + + + , + + +
Properties in the legacy /elements/1.1/ namespace + + + + + + + + + + , + + +
Vocabulary Encoding Schemes + + + + + + + + + + , + + +
Syntax Encoding Schemes + + + + + + + + + + , + + +
Classes + + + + + + + + + + , + + +
+
+ + + +

Section 1: Introduction and Definitions

+ +
+ + + +

Section 2: Properties in the /terms/ namespace

+ + + + +
+
+ + + +

Section 3: Properties in the legacy /elements/1.1/ namespace

+ + + + +
+
+ + + +

Section 4: Vocabulary Encoding Schemes

+ + + + +
+
+ + + +

Section 5: Syntax Encoding Schemes

+ + + + +
+
+ + + +

Section 6: Classes

+ + + + +
+
+ + + +

Section 7: DCMI Type Vocabulary

+ + + + +
+
+ + + +

Section 8: Terms related to the DCMI Abstract Model

+ + + + +
+
+ + + + + + + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + : + + + + + + + + + + + + + + + + + + + + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/web/xsl/html-dctype.xsl b/web/xsl/html-dctype.xsl new file mode 100755 index 0000000..3d6f49c --- /dev/null +++ b/web/xsl/html-dctype.xsl @@ -0,0 +1,196 @@ + + + + + + + + + + + + + + + + + + <xsl:value-of select="$heading/H1/Title"/> + + <!--#exec cgi="/cgi-bin/metawriter.cgi" --> + + + + + <!--#include virtual="/ssi/header.shtml" --> + + <!--#include virtual="/ssi/footer.shtml" --> + + + + + +

DCMI Type Vocabulary

+ + + + + + + + + +
+ + + + + +
+
+ + + + + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + &nbsp;&nbsp; + + + + + + + + + + + + + + + + + + + + + + + + : + + + + + + + + + + + + + + + + + + + + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/web/xsl/html-history.xsl b/web/xsl/html-history.xsl new file mode 100755 index 0000000..62d19f3 --- /dev/null +++ b/web/xsl/html-history.xsl @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="H1/Title"/> + + <!--#exec cgi="/cgi-bin/metawriter.cgi" --> + + + + + + <!--#include virtual="/ssi/header.shtml" --> + + <!--#include virtual="/ssi/footer.shtml" --> + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + : + + + + + + + + + + + + + + + + + + + + + + : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +