Open Archives Initiative Object Reuse and Exchange |
Open Archives Initiative Object Reuse and Exchange (OAI-ORE) defines standards for the description and exchange of aggregations of Web resources. OAI-ORE introduces the notion of a Resource Map that describes an Aggregation. A Resource Map asserts which Aggregation it describes, and which resources are constituents of the Aggregation (the Aggregated Resources). In addition, a Resource Map can express relationships and types pertaining to the Aggregation, the Aggregated Resources, the Resource Map itself, and to resources related to them. Each Aggregation may be described by one or more Resource Maps, each of which must have exactly one representation that is a serialization of the Resource Map according to a specific format. This document details a Resource Map serialization based on the Atom syndication format, in which each Resource Map is expressed as an Atom entry.
The intended audience for this document is implementers that have an understanding of both Atom and ORE concepts. Readers that want a high-level understanding of the motivation for ORE, and of the solution it provides should read the [ORE Primer].
1. Introduction
1.1 Notational Conventions
1.2 Namespaces
1.3 Compliance
2. Populating Elements
2.1 Creating the Skeleton of a Resource Map
2.2 Adding Metadata About the Resource Map
2.3 Adding Metadata About the Aggregation
2.4 Adding Aggregated Resources
3. Common Scenarios
3.1 Related Versions
3.2 References and Citations
3.3 Metadata About Aggregated Resources
3.3.1 Describing the Splash Page
3.3.2 Describing the Metadata
3.3.3 Format Relationships
3.3.4 Authorship of Aggregated Resources
3.3.5 Proxies
3.3.6 The Complete Resource Map
3.4 Other Scenarios
3.4.1 Multiply Aggregated Resources
3.4.2 Nested Aggregations
4. Correspondence between the ORE Model and the Atom Model
4.1 Mapping between the ORE Model and the Atom Model:Basics
4.2 Mapping between the ORE Model and the Atom Model: Atom Elements and RDF Triples
5. References
A. Acknowledgments
B. Extended Example
C. Schematron Schema for Resource Map Profile of Atom
D. GRDDL crosswalk from Atom XML to RDF/XML
E. Change Log
This implementation guide describes serialization of ORE Resource Maps using the Atom Syndication Format [RFC4287]. The purpose of this document is to provide guidance to application developers on how to implement Atom-based Resource Maps (Resource Maps), which are based on Atom entry documents. For the purposes of discovery these entry documents can be linked to directly or can be syndicated in Atom feeds. The Resource Maps are entirely self-contained in the entry documents and the Atom feeds in which they may be included have no ORE semantics. Please see [ORE User Discovery] for a full discussion of Resource Map discovery mechanisms.
This document is a combination of tutorial and reference guide. It is structured as:
The keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in [RFC2119].
This specification uses the same shorthands to terms from the XML Infoset [XML Infoset] as used in [RFC4287]: the phrase "Information Item" is omitted when naming Element Information Items and Attribute Information Items. Therefore, when this specification uses the term "element," it is referring to an Element Information Item in Infoset terms. Likewise, when it uses the term "attribute," it is referring to an Attribute Information Item.
This specification uses the common term URI [RFC3986] to mean both IRI [RFC3987] and URI.
This specification uses the following namespaces and prefixes:
Prefix | Namespace URI | Description |
---|---|---|
atom |
http://www.w3.org/2005/Atom |
Atom namespace |
dc |
http://purl.org/dc/elements/1.1/ |
Dublin Core elements |
dcterms |
http://purl.org/dc/terms/ |
Dublin Core terms |
foaf |
http://xmlns.com/foaf/0.1/ |
FOAF vocabulary terms |
ore |
http://www.openarchives.org/ore/terms/ |
ORE vocabulary terms |
oreatom |
http://www.openarchives.org/ore/atom/ |
ORE Atom elements |
rdf |
http://www.w3.org/1999/02/22-rdf-syntax-ns# |
RDF vocabulary terms |
rdfs |
http://www.w3.org/2000/01/rdf-schema# |
RDF vocabulary terms |
Atom serializations of Resource Maps MUST be compliant with the Atom Syndication Format [RFC4287]. Moreover, they MUST adhere to the semantic mapping between the ORE Model [ORE Model] and the Atom model detailed Section 4. Specifically, an Atom representation of a Resource Map MUST be a well-formed XML document that is valid according to the Relax NG Compact Schema of [RFC4287]. Moreover, it MUST be valid according to the more specific Schematron Schema of Appendix C that further restricts the Atom syntax to represent Resource Maps.
Resource Maps are expressed as Atom entry documents [RFC4287]. These entry documents can either be linked to directly or gathered together in an Atom feed for syndication (see [ORE User Discovery] for a full discussion of discovery techniques). Although the primary purpose of Atom-based Resource Maps is for machine processing, their relative simplicity should allow for human readability as well.
In this section, we incrementally build up an example Resource Map, mapping the concepts of the ORE Data Model [ORE Model] to their corresponding Atom elements. Throughout this document, we will use the following arXiv e-print (first introduced in the [ORE Primer]) as the defining example:
http://arxiv.org/abs/astro-ph/0601007
This is an interesting example because it has multiple identifiers, versions, formats, mirrors and external relationships. Although the actual URIs may be different in the future, for this document we will assume the existence of two Resource Maps (URI-R) and an Aggregation (URI-A):
http://arxiv.org/rem/atom/astro-ph/0601007
(URI-R of Atom XML Resource Map)
http://arxiv.org/rem/rdf/astro-ph/0601007
(URI-R of RDF/XML Resource Map)
http://arxiv.org/aggregation/astro-ph/0601007
(URI-A)
The subsections below provide a step-by-step build-up of a Resource Map for the above arXiv e-print, culminating in a minimal but complete Resource Map that later sections will further expand. In each section, the bold XML corresponds to the concepts newly introduced in that section.
We begin by creating the skeleton of a Resource Map. We begin
with the Atom elements that have no ORE semantics and exist
only to facilitate processing and display of the Resource
Map serialized as an Atom entry document. First, we use a
tag:
URI [RFC4151] for
the /entry/id
element. This element has no ORE
semantics and is used only for Atom-specific processing
(e.g., detecting duplications among entry documents
discovered from different feeds). Authors MAY reuse an
existing ORE URI (e.g., URI-A) for /entry/id
,
but it is RECOMMENDED to create an Atom-specific URI for this
purpose (e.g., tag URIs [RFC4151],
uuids [RFC4122], and info URIs [RFC4452]).
Second, we put the URI of the splash page in the
/entry/link[@rel="alternate"]/@href
element.
This rel
value has no ORE semantics, but Atom
processors will use this URI for linking when creating a human
readable display of the entry document. If there is no suitable
candidate for this link, /entry/content
must
be used (see Table 1 below).
<?xml version="1.0" encoding="utf-8"?> <entry xmlns="http://www.w3.org/2005/Atom"> <!-- Atom Specific; No ORE Semantics --> <id>tag:arxiv.org,2008:astro-ph:0601007</id> <link rel="alternate" type="text/html" href="http://arxiv.org/abs/astro-ph/0601007"/> </entry>
In this section, we add to the Resource Map elements that express metadata about the Resource Map itself.
/entry/link[@rel="http://www.openarchives.org/ore/terms/describes"]/@href
and /entry/link[@rel="self"]/@href
, respectively.
Note that the latter, URI-R, is the URI of the current Atom XML
Resource Map. The URIs of Resource Maps that describe the same Aggregation
using another serialization format are included as Metadata
about the Aggregation, as detailed below. There are multiple
methods for choosing values for URI-A and URI-R (see [ORE HTTP]). In this example, we
assume repository support for multiple URIs (i.e.,
using the three URIs introduced above) and not the
"URI-A = URI-R#aggregation" approach./entry/published
and /entry/updated
,
respectively. These times are distinct from the creation and
modified times of the Aggregation./entry/source
.
The values of this SHOULD be copied from the feed
in which this entry originally appeared (see [RFC4287] for full description of this process). If the
entry document was initially created "outside" of a feed, then
/entry/source/author
element(s) MUST be assigned at
the creation time of the entry document.
The Resource Map metadata is often different from that of the
Aggregation (see the metadata section
below). In this example, the Resource Map author is "arXiv.org
e-Print Repository" and the Aggregation authors are "Hui Li,
Zong-Kuan Guo, Yuan-Zhong Zhang"./entry/rights
for a human
readable description and /entry/link/[@rel="license"]/@href
element for
the machine readable version.<?xml version="1.0" encoding="utf-8"?> <entry xmlns="http://www.w3.org/2005/Atom"> <!-- Atom Specific; No ORE Semantics --> <id>tag:arxiv.org,2008:astro-ph:0601007</id> <link rel="alternate" type="text/html" href="http://arxiv.org/abs/astro-ph/0601007"/> <!-- Resource Map Metadata --> <link rel="self" type="application/atom+xml" href="http://arxiv.org/rem/atom/astro-ph/0601007"/> <link rel="http://www.openarchives.org/ore/terms/describes" href="http://arxiv.org/aggregation/astro-ph/0601007"/> <source> <author> <name>arXiv.org e-Print Repository</name> <uri>http://arXiv.org</uri> </author> <id>tag:arxiv.org,2008:astro-ph</id> <updated>2008-10-03T07:30:34Z</updated> <title>arXiv.org Astrophysics Feed</title> </source> <published>2008-10-01T18:30:02Z</published> <updated>2007-10-10T18:30:02Z</updated> <link rel="license" type="application/rdf+xml" href="http://creativecommons.org/licenses/by-nc/2.5/rdf" /> <rights>This Resource Map is available under the Creative Commons Attribution-Noncommercial 2.5 Generic license</rights> </entry>
arXiv has OAI-PMH Dublin Core metadata for its e-prints and the full metadata record will be included as a separate Aggregated Resource in the section below. However, that does not assist in the presentation and processing of the Resource Map itself. In this section we focus on including just enough metadata in the Resource Map to make it useful, but without competing with complex metadata formats.
Expressing the authors and title of the Aggregation in
the Atom /entry/author
and /entry/title
,
respectively, makes the Resource Map more human readable and more usable
in standard syndication tools (e.g., Google Reader).
The creation and modification times of the Aggregation
(distinct from those of the Resource Map) are provided using /entry/category
elements. Categories are also used to assert that this is an ORE Aggregation
as well as possibly other semantic types.
/entry/title
and /entry/author
, respectively./entry/category
elements, with the attributes
scheme="http://www.openarchives.org/ore/atom/created"
and
scheme="http://www.openarchives.org/ore/atom/modified"
.
The term
attributes in these two category elements
are literals, not URIs. The date times are expressed in ISO
8601 format (the same as /entry/published
and
/entry/updated
for the Resource Map)./entry/category
elements
to assert 1) this entry document is an Aggregation (this element
is required) and 2) this Aggregation is a journal article (this
element is optional)./entry/link[@rel="http://www.openarchives.org/ore/terms/isDescribedBy"]/@href
.
In this example, this element receives the URI-R of the
RDF/XML-based Resource Map.<?xml version="1.0" encoding="utf-8"?> <entry xmlns="http://www.w3.org/2005/Atom"> <!-- Atom Specific; No ORE Semantics --> <id>tag:arxiv.org,2008:astro-ph:0601007</id> <link rel="alternate" type="text/html" href="http://arxiv.org/abs/astro-ph/0601007"/> <!-- Resource Map Metadata --> <link rel="self" type="application/atom+xml" href="http://arxiv.org/rem/atom/astro-ph/0601007"/> <link rel="http://www.openarchives.org/ore/terms/describes" href="http://arxiv.org/aggregation/astro-ph/0601007"/> <source> <author> <name>arXiv.org e-Print Repository</name> <uri>http://arXiv.org</uri> </author> <id>tag:arxiv.org,2008:astro-ph</id> <updated>2008-10-03T07:30:34Z</updated> <title>arXiv.org Astrophysics Feed</title> </source> <published>2008-10-01T18:30:02Z</published> <updated>2007-10-10T18:30:02Z</updated> <link rel="license" type="application/rdf+xml" href="http://creativecommons.org/licenses/by-nc/2.5/rdf" /> <rights>This Resource Map is available under the Creative Commons Attribution-Noncommercial 2.5 Generic license</rights> <!-- Aggregation Metadata --> <title>Parametrization of K-essence and Its Kinetic Term</title> <author> <name>Hui Li</name> <email>lihui@somewhere.cn</email> </author> <author> <name>Zong-Kuan Guo</name> </author> <author> <name>Yuan-Zhong Zhang</name> </author> <link rel="http://www.openarchives.org/ore/terms/isDescribedBy" href="http://arxiv.org/rem/rdf/astro-ph/0601007"/> <category term="2005-12-31T04:01:23Z" scheme="http://www.openarchives.org/ore/atom/created"/> <category term="http://www.openarchives.org/ore/terms/Aggregation" label="Aggregation" scheme="http://www.openarchives.org/ore/terms/" /> <category term="2006-01-18T06:16:15Z" scheme="http://www.openarchives.org/ore/atom/modified"/> <category term="http://purl.org/eprint/type/JournalArticle" scheme="http://purl.org/eprint/type/" label="Journal Article"/> </entry>
Aggregated Resources are represented in Atom-based Resource Maps with
/entry/link[@rel="http://www.openarchives.org/ore/terms/aggregates"]/@href
elements. For the arXiv e-print example, we aggregate the:
If the Aggregated Resources have distinctly
separate titles from the Aggregation, we use the
/entry/link/[@title]
attributes accordingly
(e.g., different versions of PostScript). We also use other
optional attributes, such as /entry/link/[@type]
and
/entry/link/[@hreflang]
, where possible. It is
important to note that the Resource Map is more than just an XML-encoded
version of the splash page. The arXiv splash page does not
contain direct links to the DVI, LaTeX or three of the PostScript
versions of the e-print (they are one level "down" from splash
page), and the Dublin Core metadata is not linked to at all from
the splash page.
Expanding our skeleton Resource Map, we now have:
<?xml version="1.0" encoding="utf-8"?> <entry xmlns="http://www.w3.org/2005/Atom"> <!-- Atom Specific; No ORE Semantics --> <id>tag:arxiv.org,2008:astro-ph:0601007</id> <link rel="alternate" type="text/html" href="http://arxiv.org/abs/astro-ph/0601007"/> <!-- Resource Map Metadata --> <link rel="self" type="application/atom+xml" href="http://arxiv.org/rem/atom/astro-ph/0601007"/> <link rel="http://www.openarchives.org/ore/terms/describes" href="http://arxiv.org/aggregation/astro-ph/0601007"/> <source> <author> <name>arXiv.org e-Print Repository</name> <uri>http://arXiv.org</uri> </author> <id>tag:arxiv.org,2008:astro-ph</id> <updated>2008-10-03T07:30:34Z</updated> <title>arXiv.org Astrophysics Feed</title> </source> <published>2008-10-01T18:30:02Z</published> <updated>2007-10-10T18:30:02Z</updated> <link rel="license" type="application/rdf+xml" href="http://creativecommons.org/licenses/by-nc/2.5/rdf" /> <rights>This Resource Map is available under the Creative Commons Attribution-Noncommercial 2.5 Generic license</rights> <!-- Aggregation Metadata --> <title>Parametrization of K-essence and Its Kinetic Term</title> <author> <name>Hui Li</name> <email>lihui@somewhere.cn</email> </author> <author> <name>Zong-Kuan Guo</name> </author> <author> <name>Yuan-Zhong Zhang</name> </author> <link rel="http://www.openarchives.org/ore/terms/isDescribedBy" href="http://arxiv.org/rem/rdf/astro-ph/0601007"/> <category term="2005-12-31T04:01:23Z" scheme="http://www.openarchives.org/ore/atom/created"/> <category term="http://www.openarchives.org/ore/terms/Aggregation" label="Aggregation" scheme="http://www.openarchives.org/ore/terms/" /> <category term="2006-01-18T06:16:15Z" scheme="http://www.openarchives.org/ore/atom/modified"/> <category term="http://purl.org/eprint/type/JournalArticle" scheme="http://purl.org/eprint/type/" label="Journal Article"/> <!-- Aggregated Resources --> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/abs/astro-ph/0601007" title="[astro-ph/0601007] Parametrization of K-essence and Its Kinetic Term" type="text/html" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/ps/astro-ph/0601007" title="Parametrization of K-essence and Its Kinetic Term" type="application/postscript" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/pdf/astro-ph/0601007" title="Parametrization of K-essence and Its Kinetic Term" type="application/pdf" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/ps/astro-ph/0601007?dpi=600&font=bitmapped" title="Parametrization of K-essence and Its Kinetic Term (600 DPI Bitmapped Fonts PostScript)" type="application/postscript" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/ps/astro-ph/0601007?dpi=300&font=bitmapped" title="Parametrization of K-essence and Its Kinetic Term (300 DPI Bitmapped Fonts PostScript)" type="application/postscript" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/ps/astro-ph/0601007?fname=cm&font=TypeI" title="Parametrization of K-essence and Its Kinetic Term (Type I Fonts PostScript)" type="application/postscript" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/dvi/astro-ph/0601007" title="Parametrization of K-essence and Its Kinetic Term" type="application/dvi" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix=oai_dc&identifier=astro-ph/0601007" title="Dublin Core Metadata for Parametrization of K-essence and Its Kinetic Term" type="application/xml"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/cits/astro-ph/0601007" title="Citations for astro-ph/0601007" type="text/html" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007" title="Citebase - Parametrization of K-essence and Its Kinetic Term" type="text/html" hreflang="en"/> </entry>
The previous section covered the basics of building an Atom-based Resource Map. In this section we review the appropriate techniques within the Atom ORE Specification for handling common scenarios for Aggregations that go beyond the basics covered above.
There are a number of methods to link to resources that are
related to the Aggregation. In this section, we illustrate
three kinds of related resources and the recommended
/entry/link/[@rel]
values.
/entry/link/[@rel="http://purl.org/dc/terms/hasVersion"]/@href
.
We use this rel
URI to distinguish different
versions of ORE Aggregations, such as those created by the same
repository. Note that the target URIs of these rels are also
URIs that identify Aggregations (and not Aggregated Resources such
as splash pages or PDFs)./entry/link/[@rel="related"]/@href
./entry/link/[@rel="http://www.openarchives.org/ore/terms/similarTo"]/@href
to reference resources that are somehow considered similar
to, but not the same as (i.e., not owl:sameAs
),
the Aggregation. We express this relationship for the
arXiv identifier and the DOI. We do not, for example, use
owl:sameAs
for the relationship between URI-A
and the DOI because the DOI is the identifier of an officially
published version of the e-print, which may not be the
same as e-print, but is very "similar".<?xml version="1.0" encoding="utf-8"?> <entry xmlns="http://www.w3.org/2005/Atom"> <!-- Atom Specific; No ORE Semantics --> <id>tag:arxiv.org,2008:astro-ph:0601007</id> <link rel="alternate" type="text/html" href="http://arxiv.org/abs/astro-ph/0601007"/> <!-- Resource Map Metadata --> <link rel="self" type="application/atom+xml" href="http://arxiv.org/rem/atom/astro-ph/0601007"/> <link rel="http://www.openarchives.org/ore/terms/describes" href="http://arxiv.org/aggregation/astro-ph/0601007"/> <source> <author> <name>arXiv.org e-Print Repository</name> <uri>http://arXiv.org</uri> </author> <id>tag:arxiv.org,2008:astro-ph</id> <updated>2008-10-03T07:30:34Z</updated> <title>arXiv.org Astrophysics Feed</title> </source> <published>2008-10-01T18:30:02Z</published> <updated>2007-10-10T18:30:02Z</updated> <link rel="license" type="application/rdf+xml" href="http://creativecommons.org/licenses/by-nc/2.5/rdf" /> <rights>This Resource Map is available under the Creative Commons Attribution-Noncommercial 2.5 Generic license</rights> <!-- Aggregation Metadata --> <title>Parametrization of K-essence and Its Kinetic Term</title> <author> <name>Hui Li</name> <email>lihui@somewhere.cn</email> </author> <author> <name>Zong-Kuan Guo</name> </author> <author> <name>Yuan-Zhong Zhang</name> </author> <link rel="http://www.openarchives.org/ore/terms/isDescribedBy" href="http://arxiv.org/rem/rdf/astro-ph/0601007"/> <category term="2005-12-31T04:01:23Z" scheme="http://www.openarchives.org/ore/atom/created"/> <category term="http://www.openarchives.org/ore/terms/Aggregation" label="Aggregation" scheme="http://www.openarchives.org/ore/terms/" /> <category term="2006-01-18T06:16:15Z" scheme="http://www.openarchives.org/ore/atom/modified"/> <category term="http://purl.org/eprint/type/JournalArticle" scheme="http://purl.org/eprint/type/" label="Journal Article"/> <link rel="http://purl.org/dc/terms/hasVersion" href="http://arxiv.org/aggregation/astro-ph/0601007v1"/> <link rel="http://purl.org/dc/terms/hasVersion" href="http://arxiv.org/aggregation/astro-ph/0601007v2"/> <link rel="related" href="http://jp.arxiv.org/aggregation/astro-ph/0601007"/> <link rel="http://www.openarchives.org/ore/terms/similarTo" href="info:arxiv/astro-ph/0601007"/> <link rel="http://www.openarchives.org/ore/terms/similarTo" href="info:doi/10.1142/S0217732306019475"/> <!-- Aggregated Resources --> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/abs/astro-ph/0601007" title="[astro-ph/0601007] Parametrization of K-essence and Its Kinetic Term" type="text/html" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/ps/astro-ph/0601007" title="Parametrization of K-essence and Its Kinetic Term" type="application/postscript" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/pdf/astro-ph/0601007" title="Parametrization of K-essence and Its Kinetic Term" type="application/pdf" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/ps/astro-ph/0601007?dpi=600&font=bitmapped" title="Parametrization of K-essence and Its Kinetic Term (600 DPI Bitmapped Fonts PostScript)" type="application/postscript" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/ps/astro-ph/0601007?dpi=300&font=bitmapped" title="Parametrization of K-essence and Its Kinetic Term (300 DPI Bitmapped Fonts PostScript)" type="application/postscript" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/ps/astro-ph/0601007?fname=cm&font=TypeI" title="Parametrization of K-essence and Its Kinetic Term (Type I Fonts PostScript)" type="application/postscript" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/dvi/astro-ph/0601007" title="Parametrization of K-essence and Its Kinetic Term" type="application/dvi" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix=oai_dc&identifier=astro-ph/0601007" title="Dublin Core Metadata for Parametrization of K-essence and Its Kinetic Term" type="application/xml"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/cits/astro-ph/0601007" title="Citations for astro-ph/0601007" type="text/html" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007" title="Citebase - Parametrization of K-essence and Its Kinetic Term" type="text/html" hreflang="en"/> </entry>
In this example, we demonstrate two methods for including
citations to and from the e-print Aggregation. Although,
services that dynamically compute citations to and from this e-print
are included as Aggregated Resources (section
2.4 above), we can also link individual citations to and from with
/entry/link/[@rel="http://purl.org/dc/terms/isReferencedBy"]/@href
and
/entry/link/[@rel="http://purl.org/dc/terms/references"]/@href
elements. In this example, we show two examples of
citations that reference this e-print. We also use
/entry/link/[@title]
to make for a better display.
Also note that the target URIs of these rels are also URIs
that identify Aggregations.
<?xml version="1.0" encoding="utf-8"?> <entry xmlns="http://www.w3.org/2005/Atom"> <!-- Atom Specific; No ORE Semantics --> <id>tag:arxiv.org,2008:astro-ph:0601007</id> <link rel="alternate" type="text/html" href="http://arxiv.org/abs/astro-ph/0601007"/> <!-- Resource Map Metadata --> <link rel="self" type="application/atom+xml" href="http://arxiv.org/rem/atom/astro-ph/0601007"/> <link rel="http://www.openarchives.org/ore/terms/describes" href="http://arxiv.org/aggregation/astro-ph/0601007"/> <source> <author> <name>arXiv.org e-Print Repository</name> <uri>http://arXiv.org</uri> </author> <id>tag:arxiv.org,2008:astro-ph</id> <updated>2008-10-03T07:30:34Z</updated> <title>arXiv.org Astrophysics Feed</title> </source> <published>2008-10-01T18:30:02Z</published> <updated>2007-10-10T18:30:02Z</updated> <link rel="license" type="application/rdf+xml" href="http://creativecommons.org/licenses/by-nc/2.5/rdf" /> <rights>This Resource Map is available under the Creative Commons Attribution-Noncommercial 2.5 Generic license</rights> <!-- Aggregation Metadata --> <title>Parametrization of K-essence and Its Kinetic Term</title> <author> <name>Hui Li</name> <email>lihui@somewhere.cn</email> </author> <author> <name>Zong-Kuan Guo</name> </author> <author> <name>Yuan-Zhong Zhang</name> </author> <link rel="http://www.openarchives.org/ore/terms/isDescribedBy" href="http://arxiv.org/rem/rdf/astro-ph/0601007"/> <category term="2005-12-31T04:01:23Z" scheme="http://www.openarchives.org/ore/atom/created"/> <category term="http://www.openarchives.org/ore/terms/Aggregation" label="Aggregation" scheme="http://www.openarchives.org/ore/terms/" /> <category term="2006-01-18T06:16:15Z" scheme="http://www.openarchives.org/ore/atom/modified"/> <category term="http://purl.org/eprint/type/JournalArticle" scheme="http://purl.org/eprint/type/" label="Journal Article"/> <link rel="http://purl.org/dc/terms/hasVersion" href="http://arxiv.org/aggregation/astro-ph/0601007v1"/> <link rel="http://purl.org/dc/terms/hasVersion" href="http://arxiv.org/aggregation/astro-ph/0601007v2"/> <link rel="related" href="http://jp.arxiv.org/aggregation/astro-ph/0601007"/> <link rel="http://www.openarchives.org/ore/terms/similarTo" href="info:arxiv/astro-ph/0601007"/> <link rel="http://www.openarchives.org/ore/terms/similarTo" href="info:doi/10.1142/S0217732306019475"/> <link rel="http://purl.org/dc/terms/isReferencedBy" href="http://arxiv.org/aggregation/0807.1020" title="How the Scalar Field of Unified Dark Matter Models Can Cluster"/> <link rel="http://purl.org/dc/terms/isReferencedBy" href="http://arxiv.org/aggregation/0806.4327" title="Cosmological scalar fields that mimic the $\Lambda CDM$ cosmological model"/> <!-- Aggregated Resources --> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/abs/astro-ph/0601007" title="[astro-ph/0601007] Parametrization of K-essence and Its Kinetic Term" type="text/html" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/ps/astro-ph/0601007" title="Parametrization of K-essence and Its Kinetic Term" type="application/postscript" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/pdf/astro-ph/0601007" title="Parametrization of K-essence and Its Kinetic Term" type="application/pdf" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/ps/astro-ph/0601007?dpi=600&font=bitmapped" title="Parametrization of K-essence and Its Kinetic Term (600 DPI Bitmapped Fonts PostScript)" type="application/postscript" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/ps/astro-ph/0601007?dpi=300&font=bitmapped" title="Parametrization of K-essence and Its Kinetic Term (300 DPI Bitmapped Fonts PostScript)" type="application/postscript" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/ps/astro-ph/0601007?fname=cm&font=TypeI" title="Parametrization of K-essence and Its Kinetic Term (Type I Fonts PostScript)" type="application/postscript" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/dvi/astro-ph/0601007" title="Parametrization of K-essence and Its Kinetic Term" type="application/dvi" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix=oai_dc&identifier=astro-ph/0601007" title="Dublin Core Metadata for Parametrization of K-essence and Its Kinetic Term" type="application/xml"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/cits/astro-ph/0601007" title="Citations for astro-ph/0601007" type="text/html" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007" title="Citebase - Parametrization of K-essence and Its Kinetic Term" type="text/html" hreflang="en"/> </entry>
There may be scenarios in which you wish to convey additional
metadata about the Aggregation and Aggregated Resources. The
examples above have covered common scenarios that can be handled
with /entry/link
and /entry/category
elements. However, some statements cannot be expressed using
native Atom elements.
These statements MAY be included using the oreatom:triples
extension element. At the time of this writing, although some
mechanisms for expressing triples in the Atom Syndication Format
have been proposed, none have are finalized or have reached critical
mass in the community. Until that happens we RECOMMEND that
triples be expressed with oreatom:triples
. We anticipate
an easy migration path from oreatom:triples
to whichever
syntax the community adopts in the future.
These RDF/XML statements MUST all be "connected" to one of the following URIs:
That is, there must be at least one triple with one of those URIs as the subject or object. Only after a resource has appeared in such a triple may it be used as the subject or object of a subsequent triple. This results in a set of trples "connected" to the Aggregation.
In this section we want to further describe
the splash page. We have already used the
/entry/link/[@rel="alternate"]/@href
element
above (section 2.1). But this is only
an Atom-specific convention; to unambiguously state that
one of the Aggregated Resources is a splash page, we use an
rdf:Description
element and use the terminology
info:eu-repo/semantics/humanStartPage
.
The example further describes the type
info:eu-repo/semantics/humanStartPage
by adding
rdfs:label
and rdfs:isDefinedBy
properties. Although these property triples do not have an
Aggregated Resource as the subject, they are permitted because
they are "connected" to the Aggregated Resource via the resource
info:eu-repo/semantics/humanStartPage
.
... <oreatom:triples> <rdf:Description rdf:about="http://arxiv.org/abs/astro-ph/0601007"> <rdf:type rdf:resource="info:eu-repo/semantics/humanStartPage"/> </rdf:Description> <rdf:Description rdf:about="info:eu-repo/semantics/humanStartPage"> <rdfs:label>humanStartPage</rdfs:label> <rdfs:isDefinedBy rdf:resource="info:eu-repo/semantics/"/> </rdf:Description> </oreatom:triples> ...
Unlike the splash page, there is no Atom-specific convention
to hint at which Aggregated Resource is descriptive metadata.
We again use a info:eu-repo/
URI,
but we also assert the metadata format of the Aggregated Resource.
... <oreatom:triples> <rdf:Description rdf:about="http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix=oai_dc&identifier=astro-ph/0601007"> <dcterms:conformsTo rdf:resource="http://www.openarchives.org/OAI/2.0/oai_dc/"/> <rdf:type rdf:resource="info:eu-repo/semantics/descriptiveMetadata"/> </rdf:Description> </oreatom:triples> ...
The Aggregation has many Aggregated Resources, but not all are similar content; this Aggregation includes metadata, full text and citations. Some Aggregated Resources, such as the full text, share the property that they are expressions of the same content in different formats. For example, we can asssert that the PDF and PostScript versions are different formats of each other. In this example, we also identify the format of the PDF Aggregated Resource by means of a format URI for PDF accorded by the Pronom Format Registry.
... <oreatom:triples> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007"> <dcterms:hasFormat rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007&dpi=600&font=bitmapped"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007&dpi=300&font=bitmapped"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007&fname=cm&font=TypeI"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/> </rdf:Description> </oreatom:triples> ...
Sometimes there is metadata about Aggregated Resources that
cannot be expressed in the various attributes of the /entry/link/
element. This metadata also appears in the oreatom:triples
element.
In the section, we show how we state the authorship of the CiteBase.org
Aggregated Resource.
... <oreatom:triples> <rdf:Description rdf:about="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007"> <dcterms:creator rdf:parseType="Resource"> <foaf:name>The Citebase Project</foaf:name> <foaf:page rdf:resource="http://www.citebase.org/"/> <foaf:mbox rdf:resource="mailto:tdb01r@ecs.soton.ac.uk"/> </dcterms:creator> </rdf:Description> </oreatom:triples> ...
Proxies are defined by the ORE data model [ORE Model] and their implementation is discussed in [ORE HTTP]. In summary, Proxies provide a way to identify an Aggregated Resource in the context of a particular Aggregation. Proxy URIs allow us to distinguish between URI-AR as it exists in its own right, or as it appears as part of distinct Aggregations, say URI-A1 and URI-A2.
Using Proxies enables the establishment of lineage: the assertion that an Aggregated Resource originated or was sourced from another Aggregation (see [ORE Model] for a full discussion of Proxies and lineage). Authors wishing to express lineage SHOULD link to (in HTML) or aggregate (in Resource Maps) the URI of a Proxy instead of URI-AR.
The use of Proxies is not mandatory in the ORE Model. If they are used in Atom Resource Maps, they are expressed in the oreatom:triples element.
... <oreatom:triples> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/cits/astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/cits/astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> </oreatom:triples> ...
In this section, we pull together all the concepts introduced
in sections 3.3.1 - 3.3.5 into a single Resource Map with a single
oreatom:triples
element. The XML namespaces
at the beginning of the document have been updated as well.
This Resource Map is more expressive than the Resource Map in sections 2.4 or 3.2,
although it no longer uses only native Atom elements.
<?xml version="1.0" encoding="utf-8"?> <entry xmlns="http://www.w3.org/2005/Atom" xmlns:oreatom="http://www.openarchives.org/ore/atom/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:ore="http://www.openarchives.org/ore/terms/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" grddl:transformation="http://www.openarchives.org/ore/atom/atom-grddl.xsl"> <!-- Atom Specific; No ORE Semantics --> <id>tag:arxiv.org,2008:astro-ph:0601007</id> <link rel="alternate" type="text/html" href="http://arxiv.org/abs/astro-ph/0601007"/> <!-- Resource Map Metadata --> <link rel="self" type="application/atom+xml" href="http://arxiv.org/rem/atom/astro-ph/0601007"/> <link rel="http://www.openarchives.org/ore/terms/describes" href="http://arxiv.org/aggregation/astro-ph/0601007"/> <source> <author> <name>arXiv.org e-Print Repository</name> <uri>http://arXiv.org</uri> </author> <id>tag:arxiv.org,2008:astro-ph</id> <updated>2008-10-03T07:30:34Z</updated> <title>arXiv.org Astrophysics Feed</title> </source> <published>2008-10-01T18:30:02Z</published> <updated>2007-10-10T18:30:02Z</updated> <link rel="license" type="application/rdf+xml" href="http://creativecommons.org/licenses/by-nc/2.5/rdf" /> <rights>This Resource Map is available under the Creative Commons Attribution-Noncommercial 2.5 Generic license</rights> <!-- Aggregation Metadata --> <title>Parametrization of K-essence and Its Kinetic Term</title> <author> <name>Hui Li</name> <email>lihui@somewhere.cn</email> </author> <author> <name>Zong-Kuan Guo</name> </author> <author> <name>Yuan-Zhong Zhang</name> </author> <link rel="http://www.openarchives.org/ore/terms/isDescribedBy" href="http://arxiv.org/rem/rdf/astro-ph/0601007"/> <category term="2005-12-31T04:01:23Z" scheme="http://www.openarchives.org/ore/atom/created"/> <category term="http://www.openarchives.org/ore/terms/Aggregation" label="Aggregation" scheme="http://www.openarchives.org/ore/terms/" /> <category term="2006-01-18T06:16:15Z" scheme="http://www.openarchives.org/ore/atom/modified"/> <category term="http://purl.org/eprint/type/JournalArticle" scheme="http://purl.org/eprint/type/" label="Journal Article"/> <link rel="http://purl.org/dc/terms/hasVersion" href="http://arxiv.org/aggregation/astro-ph/0601007v1"/> <link rel="http://purl.org/dc/terms/hasVersion" href="http://arxiv.org/aggregation/astro-ph/0601007v2"/> <link rel="related" href="http://jp.arxiv.org/aggregation/astro-ph/0601007"/> <link rel="http://www.openarchives.org/ore/terms/similarTo" href="info:arxiv/astro-ph/0601007"/> <link rel="http://www.openarchives.org/ore/terms/similarTo" href="info:doi/10.1142/S0217732306019475"/> <link rel="http://purl.org/dc/terms/isReferencedBy" href="http://arxiv.org/aggregation/0807.1020" title="How the Scalar Field of Unified Dark Matter Models Can Cluster"/> <link rel="http://purl.org/dc/terms/isReferencedBy" href="http://arxiv.org/aggregation/0806.4327" title="Cosmological scalar fields that mimic the $\Lambda CDM$ cosmological model"/> <!-- Aggregated Resources --> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/abs/astro-ph/0601007" title="[astro-ph/0601007] Parametrization of K-essence and Its Kinetic Term" type="text/html" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/ps/astro-ph/0601007" title="Parametrization of K-essence and Its Kinetic Term" type="application/postscript" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/pdf/astro-ph/0601007" title="Parametrization of K-essence and Its Kinetic Term" type="application/pdf" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/ps/astro-ph/0601007?dpi=600&font=bitmapped" title="Parametrization of K-essence and Its Kinetic Term (600 DPI Bitmapped Fonts PostScript)" type="application/postscript" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/ps/astro-ph/0601007?dpi=300&font=bitmapped" title="Parametrization of K-essence and Its Kinetic Term (300 DPI Bitmapped Fonts PostScript)" type="application/postscript" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/ps/astro-ph/0601007?fname=cm&font=TypeI" title="Parametrization of K-essence and Its Kinetic Term (Type I Fonts PostScript)" type="application/postscript" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/dvi/astro-ph/0601007" title="Parametrization of K-essence and Its Kinetic Term" type="application/dvi" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007" title="Dublin Core Metadata for Parametrization of K-essence and Its Kinetic Term" type="application/xml"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://arxiv.org/cits/astro-ph/0601007" title="Citations for astro-ph/0601007" type="text/html" hreflang="en"/> <link rel="http://www.openarchives.org/ore/terms/aggregates" href="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007" title="Citebase - Parametrization of K-essence and Its Kinetic Term" type="text/html" hreflang="en"/> <!-- Additional properties pertaining to Aggregated Resources and Aggregation --> <oreatom:triples> <!-- About the Aggregation --> <rdf:Description rdf:about="http://arxiv.org/aggregation/astro-ph/0601007"> <dcterms:audience rdf:parseType="Resource"> <rdf:value>OCLC audience level 1: research</rdf:value> </dcterms:audience> </rdf:Description> <!-- Aggregated Resource http://arxiv.org/abs/astro-ph/0601007 --> <rdf:Description rdf:about="http://arxiv.org/abs/astro-ph/0601007"> <rdf:type rdf:resource="info:eu-repo/semantics/humanStartPage"/> </rdf:Description> <rdf:Description rdf:about="info:eu-repo/semantics/humanStartPage"> <rdfs:label>humanStartPage</rdfs:label> <rdfs:isDefinedBy rdf:resource="info:eu-repo/semantics/"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://arxiv.org/abs/astro-ph/0601007 --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/abs/astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/abs/astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Aggregated Resource http://arxiv.org/ps/astro-ph/0601007 --> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007"> <dcterms:hasFormat rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=600&font=bitmapped"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=300&font=bitmapped"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007?fname=cm&font=TypeI"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://arxiv.org/ps/astro-ph/0601007 --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/ps/astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/ps/astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Aggregated Resource http://arxiv.org/pdf/astro-ph/0601007 --> <rdf:Description rdf:about="http://arxiv.org/pdf/astro-ph/0601007"> <dcterms:conformsTo rdf:resource="info:pronom/fmt/18"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://arxiv.org/pdf/astro-ph/0601007 --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/pdf/astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://arxiv.org/ps/astro-ph/0601007?dpi=600&font=bitmapped --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/ps/astro-ph/0601007?dpi%3d600%26font%3dbitmapped&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=600&font=bitmapped"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://arxiv.org/ps/astro-ph/0601007?dpi=300&font=bitmapped --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/ps/astro-ph/0601007?dpi%3d300%26font%3dbitmapped&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=300&font=bitmapped"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://arxiv.org/ps/astro-ph/0601007?fname=cm&font=TypeI --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/ps/astro-ph/0601007?fname%3dcm%26font%3dTypeI&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/ps/astro-ph/0601007?fname=cm&font=TypeI"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://arxiv.org/dvi/astro-ph/0601007 --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/dvi/astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Aggregated Resource http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007 --> <rdf:Description rdf:about="http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007"> <dcterms:conformsTo rdf:resource="http://www.openarchives.org/OAI/2.0/oai_dc/"/> <rdf:type rdf:resource="info:eu-repo/semantics/descriptiveMetadata"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007 --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://export.arxiv.org/oai2?verb%3dGetRecord%26metadataPrefix%3doai_dc%26identifier%3doai:arXiv.org:astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://arxiv.org/cits/astro-ph/0601007 --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/cits/astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/cits/astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Aggregated Resource http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007 --> <rdf:Description rdf:about="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007"> <dcterms:creator rdf:parseType="Resource"> <foaf:name>The Citebase Project</foaf:name> <foaf:page rdf:resource="http://www.citebase.org/"/> <foaf:mbox rdf:resource="mailto:tdb01r@ecs.soton.ac.uk"/> </dcterms:creator> </rdf:Description> <!-- Proxy for Aggregated Resource http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007 --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://www.citebase.org/abstract?id%3doai:arXiv.org:astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> </oreatom:triples> </entry>
This section introduces two common scenarios that are
not covered by the arXiv example. Both examples use the
oreatom:triples
extension element.
Imagine that we know that the splash page for this e-print
has been aggregated by an ORE-compliant blog.
If we wanted to acknowledge this, in the oreatom:triples
section that is about the splash page, we could use the
http://www.openarchives.org/ore/tems/isAggregatedBy
predicate.
... <oreatom:triples> <rdf:Description rdf:about="http://arxiv.org/abs/astro-ph/0601007"> <rdf:type rdf:resource="info:eu-repo/semantics/humanStartPage"/> <ore:isAggregatedBy rdf:resource="http://blogs.foo.com/bob/2008/10/02/dark-energy/> </rdf:Description> <rdf:Description rdf:about="info:eu-repo/semantics/humanStartPage"> <rdfs:label>humanStartPage</rdfs:label> <rdfs:isDefinedBy rdf:resource="info:eu-repo/semantics/"/> </rdf:Description> </oreatom:triples> ...
If an Aggregated Resources is also an Aggregation, the term
http://www.openarchives.org/ore/terms/Aggregation
SHOULD be used to indicate as such. This allows for the "nesting"
or hierarchical collection of Aggregations. For example,
if the arXiv citation service, via content negotiation (see
[ORE HTTP]), could return
both an HTML page and an Aggregation, we could indicate this
by adding a statement in the oreatom:triples
element.
This would provide a processing "hint" to the agent processing
this Resource Map that the Aggregated Resource is also an Aggregation.
... <oreatom:triples> <rdf:Description rdf:about="http://arxiv.org/cits/astro-ph/0601007"> <rdf:type rdf:resource="http://www.openarchives.org/ore/terms/Aggregation"/> </rdf:Description> </oreatom:triples> ...
The approach to express entities from the ORE Model in Atom can be summarized as follows:
rel
attribute value that is registered in the IANA Atom Links Relations Registry have an Atom-specific meaning. As described in (5) below, the atom:link elements with theIANA-registered rel
attribute values self
and license
also have a meaning in the ORE Model.href
attribute of an atom:link element that has a rel
attribute value of "self"
.
rel
attribute value of "license"
, and the atom:author child elements of atom:source.href
attribute of a special-purpose ORE atom:link element that has a rel
attribute value of "http://www.openarchives.org/ore/terms/describes"
.
rel
attribute value in the ORE namespace (http://www.openarchives.org/ore/terms/
) pertain to the Aggregation. href
attribute of an atom:link element that has a rel
attribute value of "http://www.openarchives.org/ore/terms/aggregates"
, which is in the ORE namespace (http://www.openarchives.org/ore/terms/
). triples
element from the ORE namespace (http://www.openarchives.org/ore/terms/
) is an ORE-specific Atom extension element introduced to express RDF metadata pertaining to the Aggregation, the Resource Map, the Aggregated Resources, and resources related to those, which can not be expressed using elements from the Atom namespace. ORE processors SHOULD treat the contentof the triples
element as an integral part of the Atom Resource Map. Figure 1 illustrates the mapping between entities from the Atom and ORE models, whereas Table 1 provides the explicit mapping details.
Table 1 is organized in the following sections:
In Table 1, elements that are mandatory in
the Atom serialization are highlighted. Note that the column "ORE
Abstract Model and RDF Triples" of Table 1
indicates how elements of an Atom-based Resource Map MUST be mapped to
RDF triples. As shown, some predicates for these RDF triples are in
the ore
namespace, while others are in
other, commonly used namespaces listed in Section 1.2. The mapping between an Atom-based
Resource Map and RDF triples is undefined for those elements found in
the Resource Map that are not covered in Table
1; such elements MAY be ignored by ORE processors.
Atom Entry Item | Atom representation | ORE Abstract Model and RDF Triples |
---|---|---|
Entry id |
[RFC3987] [RFC3986] This element conveys the globally unique identifier of the Atom entry. |
Subject of the triple:
|
Entry Content |
If no |
No mapping defined |
Entry Link Element: Target and Properties |
The
The |
No mapping defined, except for the |
Entry Link "http://www.openarchives.org/ore/terms/describes ": Target and Properties |
[RFC3987] [RFC3986] This link conveys the URI (URI-A) of the Aggregation. The other attributes of this link element ( |
Through combination with the information from the row below, the following triple results:
|
Entry Link "self ": Target and Properties |
This link conveys the URI (URI-R) of the Resource Map. [RFC3987] [RFC3986]
It is RECOMMENDED to use the |
[URI of the Resource Map from which an Atom-based representation describing the Aggregation is retrievable] Object of the triples:
[Metadata about the Atom-based Resource Map] Through combination with the information from the row above, the following triple results:
|
Entry Link "http://www.openarchives.org/ore/terms/aggregates ": Target and Properties |
This link conveys the URI (URI-AR) of an Aggregated Resource. [RFC3987] [RFC3986]
|
Object of the triple:
[URI-AR of the Aggregated Resource] Objects of the respective triples:
|
Entry Link "http://www.openarchives.org/ore/terms/describes ": Target and Properties |
[RFC3987] [RFC3986] This link conveys the URI (URI-A) of the Aggregation. The other attributes of this link element ( |
|
Entry Author |
This element is used to convey the authors of the Aggregation. It is highly RECOMMENDED to have an It is RECOMMENDED to use a URI for the identification of an author. |
The triples:
Note that Note that [Relationships to other Resources and Types (pertaining to the Aggregation) ] |
Entry Category Term, Scheme, Label |
Categories MAY be provided to express a type of the Aggregation. An example is using a Category to type the Aggregation as a journal article. It is RECOMMENDED to use a URI as the value of the It is RECOMMENDED to provide a value for the |
If the value of
If the value of
[Relationships to other Resources and Types (pertaining to the Aggregation) ] |
Entry Category Term "http://www.openarchives.org/ore/terms/Aggregation " |
One
Category MUST be provided with a value for the term attribute of
"http://www.openarchives.org/ore/terms/Aggregation " and a value of the scheme attribute of "http://www.openarchives.org/ore/terms/ ". In this case, it is RECOMMENDED to use a value for the label attribute of "Aggregation" |
The triple:
And the OPTIONAL triples:
|
Entry Category Term with creation datetime value | One
Category MAY be provided with a value for the [RFC3339] Format SHOULD be "YYYY-MM-DDThh:mm:ssZ" |
The object of the triple:
|
Entry Category Term with modification datetime value | One
Category MAY be provided with a value for the [RFC3339] Format SHOULD be "YYYY-MM-DDThh:mm:ssZ" |
The object of the triple:
|
Entry Contributor |
This element is used to convey the contributors to the Aggregation. It is RECOMMENDED to use a URI for the identification of a contributor. |
The triples:
Note that Note that [Relationships to other Resources and Types (pertaining to the Aggregation) ] |
Entry Link "alternate ": Target and Properties |
[RFC3987] [RFC3986] It is RECOMMENDED to use this link element to reference a human readable representation of the Atom entry. Since the entry describes an Aggregation, this representation is likely to convey a human readable description of that Aggregation.
|
Object of the triple:
[Relationships to other Resources and Types (pertaining to the Aggregation) ] Objects of the respective triples:
|
Entry "related " Link: Target and Properties |
[RFC3987] [RFC3986] It is RECOMMENDED to use this link element to reference a resource related to the Atom entry.Since the entry describes an Aggregation, this resource is likely to also be related to the Aggregation.
|
Object of the triple:
[Relationships to other Resources and Types (pertaining to the Aggregation) ] Objects of the respective triples:
|
Entry "http://www.openarchives.org/ore/terms/isDescribedBy " Link: Target and Properties |
[RFC3987] [RFC3986] If
a Resource Map exists that describes the Aggregation using
serialization format other than Atom, it is RECOMMENDED to convey the
URI (URI-R) of this other Resource Map using this
|
Object of the triple:
[Relationships to other Resources and Types (pertaining to the Aggregation) ] Objects of the respective triples:
[Relationships between the Aggregation and Similar Resources] |
Entry "http://www.openarchives.org/ore/terms/similarTo " Link: Target and Properties |
[RFC3987] [RFC3986] It is RECOMMENDED to use this link element to express URIs of resources that are somehow equivalent to the Aggregation. Examples are info:doi/... , http://dx.doi.org/... , etc.
|
Object of the triple:
[Relationships to other Resources and Types (pertaining to the Aggregation) ] Objects of the respective triples:
[Relationships between the Aggregation and Similar Resources] |
Entry Summary | /entry/summary |
Object of the triple:
[Relationships to other Resources and Types (pertaining to the Aggregation) ] |
Entry Title | /entry/title |
Object of the triple:
[Relationships to other Resources and Types (pertaining to the Aggregation) ] |
Entry extension element oreatom:triples |
This ORE-specific extension element MAY be used to convey properties and types pertaining to the Aggregation, the Resource Map, the Aggregated Resources, and other related resources that can not be conveyed using the native Atom elements listed in this Table. The content of this element is RDF/XML and SHOULD consist of one or more An example use of this element for an Aggregation would be to assert a triple that has the Aggregation as the subject and a literal as the object. Such a triple can not be expressed using theatom:link element because the value of the |
The content of the |
Entry Link "self ": Target and Properties |
This link conveys the URI (URI-R) of the Resource Map. [RFC3987] [RFC3986]
It is RECOMMENDED to use the |
[URI of the Resource Map from which an Atom-based representation describing the Aggregation is retrievable]
|
Entry Link "license ": Target and Properties |
[RFC3987] [RFC3986] [RFC4946] This link element is used to provide the URI of a rights description that pertains to the Resource Map. It is RECOMMENDED that the rights description is machine-readable. An example is the URI of a Creative Common license that dereferences to an RDF/XML rights description.
|
Object of the triple:
[Metadata about the Atom-based Resource Map]
|
Entry Publication Datetime |
[RFC3339] This element is used to provide the datetime of creation of the Resource Map. Format SHOULD be "YYYY-MM-DDThh:mm:ssZ" |
Object of the triple:
|
Entry Updated Datetime |
[RFC3339] This element is used to provide the datetime of modification of the Resource Map. Format SHOULD be "YYYY-MM-DDThh:mm:ssZ" |
Object of the triple:
|
Entry Rights |
This element is used to provide a human readable description of the rights that pertain to the Resource Map. |
Object of the triple:
|
Entry Source, Author child element |
This element MUST be used to convey the author of the Resource Map. |
The triples:
Note that Note that |
Entry Source, child elements other than Author | These elements MAY be used to convey information about an Atom feed in which the Atom-based Resource Map is contained. Use of the following elements is RECOMMENDED:
|
The triples:
|
Entry extension element oreatom:triples |
This ORE-specific extension element MAY be used to convey properties and types pertaining to the Aggregation, the Resource Map, the Aggregated Resources, and other related resources that can not be conveyed using the native Atom elements listed in this Table. The content of this element is RDF/XML and SHOULD consist of one or more |
The content of the |
Entry Link "http://www.openarchives.org/ore/terms/aggregates ": Target and Properties |
This link conveys the URI (URI-AR) of an Aggregated Resource. [RFC3987] [RFC3986]
|
Object of the triple:
[URI-AR of the Aggregated Resource] Objects of the respective triples:
|
Entry extension element oreatom:triples |
This ORE-specific extension element MAY be used to convey properties and types pertaining to the Aggregation, the Resource Map, the Aggregated Resources, and other related resources that can not be conveyed using the native Atom elements listed in this Table. The content of this element is RDF/XML and SHOULD consist of one or more All properties of an Aggregated Resource, except for the ones that can be conveyed using the |
The content of the |
This document is the work of the Open Archives Initiative. Funding for Open Archives Initiative Object Reuse and Exchange is provided by the Andrew W. Mellon Foundation, Microsoft, and the National Science Foundation. Additional support is provided by the Coalition for Networked Information.
This document is based on meetings of the OAI-ORE Technical Committee (ORE-TC), with participation from the OAI-ORE Liaison Group (ORE-LG). Members of the ORE-TC are: Chris Bizer (Freie Universität Berlin), Les Carr (University of Southampton), Tim DiLauro (Johns Hopkins University), Leigh Dodds (Ingenta), David Fulker (UCAR), Tony Hammond (Nature Publishing Group), Pete Johnston (Eduserv Foundation), Richard Jones (Imperial College), Peter Murray (OhioLINK), Michael Nelson (Old Dominion University), Ray Plante (NCSA and National Virtual Observatory), Rob Sanderson (University of Liverpool), Simeon Warner (Cornell University), and Jeff Young (OCLC). Members of ORE-LG are: Leonardo Candela (DRIVER), Tim Cole (DLF Aquifer and UIUC Library), Julie Allinson (JISC), Jane Hunter (DEST), Savas Parastatidis (Microsoft), Sandy Payette (Fedora Commons), Thomas Place (DARE and University of Tilburg), Andy Powell (DCMI), and Robert Tansley (Google, Inc. and DSpace)
We also acknowledge comments from the OAI-ORE Advisory Committee (ORE-AC).
Many thanks to the Digital Library Research & Prototyping Team of the Los Alamos National Laboratory for their inspiring explorations into Atom and ORE space: Lyudmilla Balakireva, Ryan Chute, Stephan Drescher, Alberto Pepe, Zhiwu Xie.
A rich Resource Map for the arXiv document is shown below and is available here.
<?xml version="1.0" encoding="UTF-8"?> <atom:entry xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:ore="http://www.openarchives.org/ore/terms/" xmlns:oreatom="http://www.openarchives.org/ore/atom/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" grddl:transformation="http://www.openarchives.org/ore/atom/atom-grddl.xsl"> <!-- Information about the Atom entry --> <!-- --> <atom:id>tag:arxiv.org,2008:astro-ph:0601007</atom:id> <!-- Information about the Aggregation --> <!-- --> <!-- Express URI-A: This Atom entry is about URI-A --> <atom:link href="http://arxiv.org/aggregation/astro-ph/0601007" rel="http://www.openarchives.org/ore/terms/describes"/> <!-- Aggregation Author (repeatable) --> <atom:author> <atom:name>Hui Li</atom:name> <atom:email>lihui@somewhere.cn</atom:email> </atom:author> <atom:author> <atom:name>Zong-Kuan Guo</atom:name> </atom:author> <atom:author> <atom:name>Yuan-Zhong Zhang</atom:name> </atom:author> <!-- Aggregation Title --> <atom:title>Parametrization of K-essence and Its Kinetic Term</atom:title> <!-- Aggregation Summary --> <atom:summary>We construct the non-canonical kinetic term of a k-essence field directly from the effective equation of state function $w_k(z)$, which describes the properties of the dark energy. Adopting the usual parametrizations of equation of state we numerically reproduce the shape of the non-canonical kinetic term and discuss some features of the constructed form of k-essence.</atom:summary> <!-- Resources somehow equivalent to the Aggregation --> <atom:link href="info:arxiv/astro-ph/0601007" rel="http://www.openarchives.org/ore/terms/similarTo"/> <atom:link href="info:doi/10.1142/S0217732306019475" rel="http://www.openarchives.org/ore/terms/similarTo"/> <!-- Resource Map in another format that describes the Aggregation --> <atom:link href="http://arxiv.org/rem/rdf/astro-ph/0601007" rel="http://www.openarchives.org/ore/terms/isDescribedBy" type="application/rdf+xml"/> <!-- Human entry page for the Aggregation --> <atom:link href="http://arxiv.org/abs/astro-ph/0601007" rel="alternate"/> <!-- Discovery pointer to a mirrored version of the Aggregation --> <atom:link href="http://jp.arxiv.org/aggregation/astro-ph/0601007" rel="related"/> <!-- Other versions of the Aggregation --> <atom:link href="http://arxiv.org/aggregation/astro-ph/0601007v1" rel="http://purl.org/dc/terms/hasVersion"/> <atom:link href="http://arxiv.org/aggregation/astro-ph/0601007v2" rel="http://purl.org/dc/terms/hasVersion"/> <!-- Resources that reference the Aggregation --> <atom:link href="http://arxiv.org/aggregation/0807.1020" rel="http://purl.org/dc/terms/isReferencedBy" title="How the Scalar Field of Unified Dark Matter Models Can Cluster"/> <atom:link href="http://arxiv.org/aggregation/0806.4327" rel="http://purl.org/dc/terms/isReferencedBy" title="Cosmological scalar fields that mimic the $\Lambda CDM$ cosmological model"/> <!-- Categories for the Aggregation (rdf:type) --> <atom:category term="http://www.openarchives.org/ore/terms/Aggregation" scheme="http://www.openarchives.org/ore/terms/" label="Aggregation"/> <atom:category term="http://purl.org/eprint/type/JournalArticle" scheme="http://purl.org/eprint/type/" label="Journal Article"/> <!-- Creation and Modification date/time of the Aggregation (rdf literals) --> <atom:category term="2005-12-31T04:01:23Z" scheme="http://www.openarchives.org/ore/atom/created"/> <atom:category term="2006-01-18T06:16:15Z" scheme="http://www.openarchives.org/ore/atom/modified"/> <!-- Information about the Resource Map --> <!-- --> <!-- Express URI-R, the URI of the Atom Resource Map --> <atom:link href="http://arxiv.org/rem/atom/astro-ph/0601007" rel="self" type="application/atom+xml"/> <!-- Resource Map Creation and Modification date/time --> <atom:published>2008-10-01T18:30:02Z</atom:published> <atom:updated>2008-10-03T07:30:34Z</atom:updated> <!-- Express rights pertaining to the Atom Resource Map --> <atom:link href="http://creativecommons.org/licenses/by-nc/2.5/" rel="license" type="application/rdf+xml"/> <atom:rights>This Resource Map is available under the Creative Commons Attribution-Noncommercial 2.5 Generic license</atom:rights> <!-- Express authorship of Resource Map using atom:source --> <!-- Also express additional child elements of atom:source that are recommended in Atom --> <atom:source> <atom:author> <atom:name>arXiv.org e-Print Repository</atom:name> <atom:uri>http://arXiv.org</atom:uri> </atom:author> <atom:id>tag:arxiv.org,2008:astro-ph</atom:id> <atom:link href="http://arxiv.org/feed/astro-ph" rel="self" type="application/atom+xml"/> <atom:updated>2008-10-03T07:30:34Z</atom:updated> <atom:title>ArXiv.org Atrophysics Feed</atom:title> </atom:source> <!-- Express URI to edit this Atom entry via the Atom Publishing Protocol --> <atom:link href="http://arxiv.org/edit/astro-ph/0601007" rel="edit"/> <!-- The Aggregated Resources --> <!-- --> <atom:link href="http://arxiv.org/abs/astro-ph/0601007" rel="http://www.openarchives.org/ore/terms/aggregates" title="[astro-ph/0601007] Parametrization of K-essence and Its Kinetic Term" type="text/html" hreflang="en"/> <atom:link href="http://arxiv.org/ps/astro-ph/0601007" rel="http://www.openarchives.org/ore/terms/aggregates" title="Parametrization of K-essence and Its Kinetic Term" type="application/postscript" hreflang="en"/> <atom:link href="http://arxiv.org/pdf/astro-ph/0601007" rel="http://www.openarchives.org/ore/terms/aggregates" title="Parametrization of K-essence and Its Kinetic Term" type="application/pdf" hreflang="en"/> <atom:link href="http://arxiv.org/ps/astro-ph/0601007&dpi=600&font=bitmapped" rel="http://www.openarchives.org/ore/terms/aggregates" title="Parametrization of K-essence and Its Kinetic Term (600 DPI Bitmapped Fonts PostScript)" type="application/postscript" hreflang="en"/> <atom:link href="http://arxiv.org/ps/astro-ph/0601007&dpi=300&font=bitmapped" rel="http://www.openarchives.org/ore/terms/aggregates" title="Parametrization of K-essence and Its Kinetic Term (300 DPI Bitmapped Fonts PostScript)" type="application/postscript" hreflang="en"/> <atom:link href="http://arxiv.org/ps/astro-ph/0601007&fname=cm&font=TypeI" rel="http://www.openarchives.org/ore/terms/aggregates" title="Parametrization of K-essence and Its Kinetic Term (Type I Fonts PostScript)" type="application/postscript" hreflang="en"/> <atom:link href="http://arxiv.org/dvi/astro-ph/0601007" rel="http://www.openarchives.org/ore/terms/aggregates" title="Parametrization of K-essence and Its Kinetic Term" type="application/dvi" hreflang="en"/> <atom:link href="http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007" rel="http://www.openarchives.org/ore/terms/aggregates" title="Dublin Core Metadata for Parametrization of K-essence and Its Kinetic Term" type="application/xml"/> <atom:link href="http://arxiv.org/cits/astro-ph/0601007" rel="http://www.openarchives.org/ore/terms/aggregates" title="Citations for astro-ph/0601007" type="text/html" hreflang="en"/> <atom:link href="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007" rel="http://www.openarchives.org/ore/terms/aggregates" title="Citebase - Parametrization of K-essence and Its Kinetic Term" type="text/html" hreflang="en"/> <!-- Additional properties pertaining to Aggregated Resources and Aggregation --> <!-- --> <oreatom:triples> <!-- About the Aggregation --> <rdf:Description rdf:about="http://arxiv.org/aggregation/astro-ph/0601007"> <dcterms:audience rdf:parseType="Resource"> <rdf:value>OCLC audience level 1: research</rdf:value> </dcterms:audience> </rdf:Description> <!-- Aggregated Resource http://arxiv.org/abs/astro-ph/0601007 --> <rdf:Description rdf:about="http://arxiv.org/abs/astro-ph/0601007"> <rdf:type rdf:resource="info:eu-repo/semantics/humanStartPage"/> </rdf:Description> <rdf:Description rdf:about="info:eu-repo/semantics/humanStartPage"> <rdfs:label>humanStartPage</rdfs:label> <rdfs:isDefinedBy rdf:resource="info:eu-repo/semantics/"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://arxiv.org/abs/astro-ph/0601007 --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/abs/astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/abs/astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Aggregated Resource http://arxiv.org/ps/astro-ph/0601007 --> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007"> <dcterms:hasFormat rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007&dpi=600&font=bitmapped"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007&dpi=300&font=bitmapped"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007&fname=cm&font=TypeI"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://arxiv.org/ps/astro-ph/0601007 --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/ps/astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/ps/astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Aggregated Resource http://arxiv.org/pdf/astro-ph/0601007 --> <rdf:Description rdf:about="http://arxiv.org/pdf/astro-ph/0601007"> <dcterms:conformsTo rdf:resource="info:pronom/fmt/18"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://arxiv.org/pdf/astro-ph/0601007 --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/pdf/astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://arxiv.org/ps/astro-ph/0601007&dpi=600&font=bitmapped --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/ps/astro-ph/0601007%26dpi%3d600%26font%3dbitmapped&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/ps/astro-ph/0601007&dpi=600&font=bitmapped"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://arxiv.org/ps/astro-ph/0601007&dpi=300&font=bitmapped --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/ps/astro-ph/0601007%26dpi%3d300%26font%3dbitmapped&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/ps/astro-ph/0601007&dpi=300&font=bitmapped"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://arxiv.org/ps/astro-ph/0601007&fname=cm&font=TypeI --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/ps/astro-ph/0601007%26fname%3dcm%26font%3dTypeI&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/ps/astro-ph/0601007&fname=cm&font=TypeI"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://arxiv.org/dvi/astro-ph/0601007 --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/dvi/astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Aggregated Resource http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007 --> <rdf:Description rdf:about="http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007"> <dcterms:conformsTo rdf:resource="http://www.openarchives.org/OAI/2.0/oai_dc/"/> <rdf:type rdf:resource="info:eu-repo/semantics/descriptiveMetadata"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007 --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://export.arxiv.org/oai2?verb%3dGetRecord%26metadataPrefix%3doai_dc%26identifier%3doai:arXiv.org:astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Proxy for Aggregated Resource http://arxiv.org/cits/astro-ph/0601007 --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/cits/astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/cits/astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <!-- Aggregated Resource http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007 --> <rdf:Description rdf:about="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007"> <dcterms:creator rdf:parseType="Resource"> <foaf:name>The Citebase Project</foaf:name> <foaf:page rdf:resource="http://www.citebase.org/"/> <foaf:mbox rdf:resource="mailto:tdb01r@ecs.soton.ac.uk"/> </dcterms:creator> </rdf:Description> <!-- Proxy for Aggregated Resource http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007 --> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://www.citebase.org/abstract?id%3doai:arXiv.org:astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> </oreatom:triples> </atom:entry>
The up-to-date version of the Schematron schema for the Resource Map Profile of Atom is available at http://www.openarchives.org/ore/atom-tron.
The up-to-date version of the GRDDL-compliant XSLT to transform an Atom-based serialization of a Resource Map into a serialization in RDF/XML is available at http://www.openarchives.org/ore/atom-grddl.xsl. This XSLT uses XSLT 2.0 functionality. In order to allow Atom-based Resource Maps to be readily transformed in this manner, it is RECOMMENDED to add GRDDL namespace and transformation information as attributes to the atom:entry element, as shown below.
<?xml version="1.0" encoding="UTF-8"?> <atom:entry xmlns:atom="http://www.w3.org/2005/Atom" xmlns:grddl="http://www.w3.org/2003/g/data-view#" grddl:transformation="http://www.openarchives.org/ore/atom-grddl.xsl"> ...
The result of transforming the extended example of Appendix B in this manner is shown below and is also available here. Online transformation engines exist. For example, the W3C's Online XSLT 2.0 service takes the URIs of a stylesheet and an XML document as input.
<?xml version="1.0" encoding="utf-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:ore="http://www.openarchives.org/ore/terms/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:grddl="http://www.w3.org/2003/g/data-view#"> <rdf:Description rdf:about="http://arxiv.org/rem/atom/astro-ph/0601007"> <rdf:type rdf:resource="http://www.openarchives.org/ore/terms/ResourceMap"/> <ore:describes rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> <dcterms:modified>2008-10-03T07:30:34Z</dcterms:modified> <dcterms:created>2008-10-01T18:30:02Z</dcterms:created> <dc:rights>This Resource Map is available under the Creative Commons Attribution-Noncommercial 2.5 Generic license</dc:rights> <dcterms:rights rdf:resource="http://creativecommons.org/licenses/by-nc/2.5/"/> <dcterms:creator rdf:parseType="Resource"> <foaf:page rdf:resource="http://arXiv.org"/> <foaf:name>arXiv.org e-Print Repository</foaf:name> </dcterms:creator> <dcterms:isVersionOf rdf:resource="tag:arxiv.org,2008:astro-ph:0601007"/> </rdf:Description> <rdf:Description rdf:about="tag:arxiv.org,2008:astro-ph:0601007"> <rdf:type rdf:resource="http://bblfish.net/work/atom-owl/2006-06-06/#Entry"/> <dcterms:isPartOf rdf:resource="tag:arxiv.org,2008:astro-ph"/> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/aggregation/astro-ph/0601007"> <ore:isDescribedBy rdf:resource="http://arxiv.org/rem/atom/astro-ph/0601007"/> <rdf:type rdf:resource="http://www.openarchives.org/ore/terms/Aggregation"/> <rdf:type rdf:resource="http://purl.org/eprint/type/JournalArticle"/> <created xmlns="http://purl.org/dc/terms/">2005-12-31T04:01:23Z</created> <modified xmlns="http://purl.org/dc/terms/">2006-01-18T06:16:15Z</modified> <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title> <dcterms:creator rdf:parseType="Resource"> <foaf:name>Hui Li</foaf:name> <foaf:mbox rdf:resource="mailto:lihui@somewhere.cn"/> </dcterms:creator> <dcterms:creator rdf:parseType="Resource"> <foaf:name>Zong-Kuan Guo</foaf:name> </dcterms:creator> <dcterms:creator rdf:parseType="Resource"> <foaf:name>Yuan-Zhong Zhang</foaf:name> </dcterms:creator> <similarTo xmlns="http://www.openarchives.org/ore/terms/" rdf:resource="info:arxiv/astro-ph/0601007"/> <similarTo xmlns="http://www.openarchives.org/ore/terms/" rdf:resource="info:doi/10.1142/S0217732306019475"/> <isDescribedBy xmlns="http://www.openarchives.org/ore/terms/" rdf:resource="http://arxiv.org/rem/rdf/astro-ph/0601007"/> <rdfs:seeAlso rdf:resource="http://arxiv.org/abs/astro-ph/0601007"/> <rdfs:seeAlso rdf:resource="http://jp.arxiv.org/aggregation/astro-ph/0601007"/> <hasVersion xmlns="http://purl.org/dc/terms/" rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007v1"/> <hasVersion xmlns="http://purl.org/dc/terms/" rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007v2"/> <isReferencedBy xmlns="http://purl.org/dc/terms/" rdf:resource="http://arxiv.org/aggregation/0807.1020"/> <isReferencedBy xmlns="http://purl.org/dc/terms/" rdf:resource="http://arxiv.org/aggregation/0806.4327"/> <aggregates xmlns="http://www.openarchives.org/ore/terms/" rdf:resource="http://arxiv.org/abs/astro-ph/0601007"/> <aggregates xmlns="http://www.openarchives.org/ore/terms/" rdf:resource="http://arxiv.org/ps/astro-ph/0601007"/> <aggregates xmlns="http://www.openarchives.org/ore/terms/" rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/> <aggregates xmlns="http://www.openarchives.org/ore/terms/" rdf:resource="http://arxiv.org/ps/astro-ph/0601007&dpi=600&font=bitmapped"/> <aggregates xmlns="http://www.openarchives.org/ore/terms/" rdf:resource="http://arxiv.org/ps/astro-ph/0601007&dpi=300&font=bitmapped"/> <aggregates xmlns="http://www.openarchives.org/ore/terms/" rdf:resource="http://arxiv.org/ps/astro-ph/0601007&fname=cm&font=TypeI"/> <aggregates xmlns="http://www.openarchives.org/ore/terms/" rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/> <aggregates xmlns="http://www.openarchives.org/ore/terms/" rdf:resource="http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007"/> <aggregates xmlns="http://www.openarchives.org/ore/terms/" rdf:resource="http://arxiv.org/cits/astro-ph/0601007"/> <aggregates xmlns="http://www.openarchives.org/ore/terms/" rdf:resource="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007"/> <dcterms:abstract>We construct the non-canonical kinetic term of a k-essence field directly from the effective equation of state function $w_k(z)$, which describes the properties of the dark energy. Adopting the usual parametrizations of equation of state we numerically reproduce the shape of the non-canonical kinetic term and discuss some features of the constructed form of k-essence.</dcterms:abstract> </rdf:Description> <rdf:Description rdf:about="http://www.openarchives.org/ore/terms/Aggregation"> <rdfs:isDefinedBy rdf:resource="http://www.openarchives.org/ore/terms/"/> <rdfs:label xml:lang="en-US">Aggregation</rdfs:label> </rdf:Description> <rdf:Description rdf:about="http://purl.org/eprint/type/JournalArticle"> <rdfs:isDefinedBy rdf:resource="http://purl.org/eprint/type/"/> <rdfs:label xml:lang="en-US">Journal Article</rdfs:label> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/rem/rdf/astro-ph/0601007"> <dc:format>application/rdf+xml</dc:format> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/aggregation/0807.1020"> <dc:title>How the Scalar Field of Unified Dark Matter Models Can Cluster</dc:title> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/aggregation/0806.4327"> <dc:title>Cosmological scalar fields that mimic the $\Lambda CDM$ cosmological model</dc:title> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/rem/atom/astro-ph/0601007"> <dc:format>application/atom+xml</dc:format> </rdf:Description> <rdf:Description rdf:about="http://creativecommons.org/licenses/by-nc/2.5/"> <dc:format>application/rdf+xml</dc:format> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/abs/astro-ph/0601007"> <dc:format>text/html</dc:format> <dc:language>en</dc:language> <dc:title>[astro-ph/0601007] Parametrization of K-essence and Its Kinetic Term</dc:title> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007"> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/pdf/astro-ph/0601007"> <dc:format>application/pdf</dc:format> <dc:language>en</dc:language> <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007&dpi=600&font=bitmapped"> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> <dc:title>Parametrization of K-essence and Its Kinetic Term (600 DPI Bitmapped Fonts PostScript)</dc:title> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007&dpi=300&font=bitmapped"> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> <dc:title>Parametrization of K-essence and Its Kinetic Term (300 DPI Bitmapped Fonts PostScript)</dc:title> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007&fname=cm&font=TypeI"> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> <dc:title>Parametrization of K-essence and Its Kinetic Term (Type I Fonts PostScript)</dc:title> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/dvi/astro-ph/0601007"> <dc:format>application/dvi</dc:format> <dc:language>en</dc:language> <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title> </rdf:Description> <rdf:Description rdf:about="http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007"> <dc:format>application/xml</dc:format> <dc:title>Dublin Core Metadata for Parametrization of K-essence and Its Kinetic Term</dc:title> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/cits/astro-ph/0601007"> <dc:format>text/html</dc:format> <dc:language>en</dc:language> <dc:title>Citations for astro-ph/0601007</dc:title> </rdf:Description> <rdf:Description rdf:about="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007"> <dc:format>text/html</dc:format> <dc:language>en</dc:language> <dc:title>Citebase - Parametrization of K-essence and Its Kinetic Term</dc:title> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/aggregation/astro-ph/0601007"> <dcterms:audience rdf:parseType="Resource"> <rdf:value>OCLC audience level 1: research</rdf:value> </dcterms:audience> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/abs/astro-ph/0601007"> <rdf:type rdf:resource="info:eu-repo/semantics/humanStartPage"/> </rdf:Description> <rdf:Description rdf:about="info:eu-repo/semantics/humanStartPage"> <rdfs:label>humanStartPage</rdfs:label> <rdfs:isDefinedBy rdf:resource="info:eu-repo/semantics/"/> </rdf:Description> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/abs/astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/abs/astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007"> <dcterms:hasFormat rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007&dpi=600&font=bitmapped"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007&dpi=300&font=bitmapped"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007&fname=cm&font=TypeI"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/> </rdf:Description> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/ps/astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/ps/astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/pdf/astro-ph/0601007"> <dcterms:conformsTo rdf:resource="info:pronom/fmt/18"/> </rdf:Description> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/pdf/astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/ps/astro-ph/0601007?dpi%3d600%26font%3dbitmapped&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/ps/astro-ph/0601007&dpi=600&font=bitmapped"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/ps/astro-ph/0601007?dpi%3d300%26font%3dbitmapped&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/ps/astro-ph/0601007&dpi=300&font=bitmapped"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/ps/astro-ph/0601007?fname%3dcm%26font%3dTypeI&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/ps/astro-ph/0601007&fname=cm&font=TypeI"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/dvi/astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <rdf:Description rdf:about="http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix%3doai_dc%26identifier=oai:arXiv.org:astro-ph/0601007"> <dcterms:conformsTo rdf:resource="http://www.openarchives.org/OAI/2.0/oai_dc/"/> <rdf:type rdf:resource="info:eu-repo/semantics/descriptiveMetadata"/> </rdf:Description> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://export.arxiv.org/oai2?verb%3dGetRecord%26metadataPrefix%3doai_dc%26identifier%3doai:arXiv.org:astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://export.arxiv.org/oai2?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/cits/astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/cits/astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <rdf:Description rdf:about="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007"> <dcterms:creator rdf:parseType="Resource"> <foaf:name>The Citebase Project</foaf:name> <foaf:page rdf:resource="http://www.citebase.org/"/> <foaf:mbox rdf:resource="mailto:tdb01r@ecs.soton.ac.uk"/> </dcterms:creator> </rdf:Description> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://www.citebase.org/abstract?id%3doai:arXiv.org:astro-ph/0601007&where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007"/> <ore:proxyIn rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/> </rdf:Description> <rdf:Description rdf:about="tag:arxiv.org,2008:astro-ph"> <rdf:type rdf:resource="http://bblfish.net/work/atom-owl/2006-06-06/#Feed"/> <rdfs:seeAlso rdf:resource="http://arxiv.org/feed/astro-ph"/> <dcterms:modified>2008-10-03T07:30:34Z</dcterms:modified> <dc:title>ArXiv.org Atrophysics Feed</dc:title> </rdf:Description> </rdf:RDF>
Date | Editor | Description |
---|---|---|
2008-10-17 | herbertv & mln | complete overhaul of ORE-Atom mapping; merger of previous two Atom documents |
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License.
Use of this page is tracked to collect anonymous traffic data. See OAI privacy policy.