ORE User Guide - Resource Map Implementation in RDF/XML

17 October 2008

This version:
http://www.openarchives.org/ore/1.0/rdfxml
Latest version:
http://www.openarchives.org/ore/rdfxml
Previous version:
http://www.openarchives.org/ore/0.9/rdfxml
Editors (OAI Executive)
Carl Lagoze, Cornell University Information Science
Herbert Van de Sompel, Los Alamos National Laboratory
Editors (ORE Technical Committee)
Pete Johnston, Eduserv Foundation
Michael Nelson, Old Dominion University
Robert Sanderson, University of Liverpool
Simeon Warner, Cornell University Information Science

Abstract

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, an RDF Graph [RDF Concepts] which describes the Aggregation, the aggregated Resources of which it is composed, and the relationships between them (and/or the relationships between these and other resources).

Since a Resource Map is an RDF Graph, it can be serialized using any RDF syntax. This document outlines the use of one such syntax for the serialization of Resource Maps: RDF/XML [RDF/XML]. A companion document [ORE RDFa] outlines the serialization of Resource Maps in RDFa [RDFa Syntax].

This document is intended for implementers who have an understanding of ORE concepts and are responsible for the development of applications which generate or process Resource Maps using RDF/XML. Readers who want a high-level understanding of the motivation for ORE, and of the solution it provides, should read the ORE Primer [Primer]; readers who want further details of the RDF/XML syntax should consult the W3C RDF/XML specification [RDF/XML]

This is one of several documents comprising the OAI-ORE specifications and user guides.


Table of Contents

1. Introduction
    1.1 Notational Conventions
    1.2 Namespaces
    1.3 Conformance
2. Summary of Recommended ORE RDF/XML Syntax
3. Examples of Resource Maps Encoded in RDF/XML
    3.1. Relationship between a Resource Map and an Aggregation
    3.2. Metadata about the Resource Map and Aggregation
    3.3. Aggregated Resources and Aggregation Graph
    3.4. Relationships between the Aggregation and Similar Resources
    3.5. Relationships to other Resources and Types
    3.6. Asserting that an Aggregated Resource is a constituent of another Aggregation
    3.7. Nesting Aggregations
    3.8. Proxies for Aggregated Resources
4. References

Appendices

A. Acknowledgements
B. Change Log


1. Introduction

The Open Archives Initiative Object Reuse and Exchange (OAI-ORE) [Abstract Data Model] introduces the notion of a Resource Map, an RDF Graph [RDF Concepts] which describes an Aggregation, the Aggregated Resources of which it is composed, and the relationships between them (and/or the relationships between these and other resources). Since a Resource Map is an RDF Graph, it can be serialized using any RDF syntax.

This document outlines the use of one such syntax for the serialization of Resource Maps: RDF/XML [RDF/XML]. The RDF/XML specification [RDF/XML] describes an XML format for serializing RDF graphs. In order to represent an RDF Graph as an XML document the constructs of the RDF Graph (triples made up of subjects, predicates and objects) have to be represented as components in that XML document, i.e. as XML elements and XML attributes, XML element names and XML attribute names, and as XML element content and XML attribute values.

For some features of the RDF Graph, the RDF/XML syntax permits the encoding of a single feature in multiple ways in XML. The aim of this document is to provide a profile of RDF/XML for encoding an ORE Resource Map. However, it is possible to use RDF/XML to encode the same ORE Resource Map using a different set of conventions permitted by RDF/XML.

1.1 Notational Conventions

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 RFC 2119 [IETF RFC 2119].

This specification uses the common term URI to mean both IRI [RFC3987] and URI [RFC3986].

1.2 Namespaces

This specification uses the following namespaces and prefixes to indicate those namespaces:

Prefix Namespace URI Description
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
rdf http://www.w3.org/1999/02/22-rdf-syntax-ns# RDF vocabulary terms
rdfs http://www.w3.org/2000/01/rdf-schema# RDFS vocabulary terms

1.3 Conformance

The Internet media type / MIME type for RDF/XML is application/rdf+xml. Where RDF/XML is used to provide representations of ORE Resource Maps that media type MUST be used.

A consumer of ORE Resource Maps encoded in RDF/XML MUST support all of the syntactic conventions defined by RDF/XML. This allowance for different syntactic conventions is supported by conformant RDF/XML parsers.

2. Summary of Recommended ORE RDF/XML Syntax

The general convention used in RDF/XML is that the set of subject-predicate-object triples is represented as sequences of XML elements corresponding to the subject of one or more triples (node elements) containing child XML elements corresponding to predicates (property elements) the attributes and/or content of which correspond to the objects. Since the object of one triple may itself be the subject of another triple, that pattern can be repeated, with the consequence that this convention is sometimes referred to as "striping". Neither the order of node elements within the root element, nor the order of property elements within the node element, is significant.

This document describes a convention for encoding Resource Maps in RDF/XML where this striping is limited to one "level" i.e. a node element contains child property elements but those property elements do not contain further node elements.

The exception to this one level striping is when the object of a triple is a "blank node", or "bNode". In this case any subsequent triples where that object bNode is a subject may be nested in the "stripe" corresponding to the subject of the original triple. Note that bNodes are not mandated by the ORE data model, but MAY occur in some triples, for example when asserting the creator of a Resource Map, where no URI is available for the specified agent. Where a bNode is the object of multiple triples (e.g. the same agent is the creator of multiple resources), then two options are available: either the pattern above is repeated for each occurrence of the bNode and the triples where that bNode is a subject are nested in each "stripe", or the bNode is represented as an un-nested node element in its own right.

Also, in the conventions used here, a node element always has the XML expanded name ("http://www.w3.org/1999/02/22-rdf-syntax-ns#", "Description"), typically represented by the QName rdf:Description, where the prefix rdf is associated via an XML namespace declaration with the namespace name http://www.w3.org/1999/02/22-rdf-syntax-ns#. In other words, these examples do not make use of RDF/XML's "typed node element" convention: triples with the predicate http://www.w3.org/1999/02/22-rdf-syntax-ns#type are always represented using property elements.

In the remainder of this document, the names of XML elements are cited as XML QNames. An XML QName is an abbreviation for an expanded name, a pair consisting of an XML Namespace Name (a URI) and a local name. The prefix part of the XML QName is bound to an XML Namespace Name through an XML Namespace declaration; where an XML QName has no prefix, the XML Namespace Name is obtained from the default namespace declaration. Where an XML QName is used to represent a URI in RDF/XML, the URI is determined by appending the local name part of the QName to the XML Namespace Name. For example, using the mapping provided in the section above on Namepaces, the QName ore:describes maps to the URI http://www.openarchives.org/ore/terms/describes. Note that the prefix used in the QNames in this document should not be interpreted as significant; any prefix can be used as long as the QName corresponds to the XML expanded name which would be generated using the prefix/namespace name pairs listed in the section above on Namepaces.

As demonstrated by the examples in the remainder of this document the recommended rules for encoding a Resource Map in RDF/XML are:

3. Examples of Resource Maps Encoded in RDF/XML

The remainder of this section uses the an e-print in arXiv with a "splash page" at http://arxiv.org/abs/astro-ph/0601007 to illustrate the RECOMMENDED RDF/XML encoding of a Resource Map. This is an interesting example because it has multiple identifiers, versions, formats, mirrors and external relationships. For illustrative purposes, the example diverges from the real e-print in arXiv in the manner that it associates an aggregation of data with the e-print.

These examples use the following URIs for the Aggregation (URI-A) and Resource Map (URI-R). As specified, the URI-A of an Aggregation should be distinct from the URI of a splash page.

The ordering of the following subsections correspond to that used to introduce features in the Abstract Data Model specification [Abstract Data Model]. Each section header links to the corresponding Abstract Data Model section. The examples are not intended to be exhaustive, but sufficient to demonstrate the recommended RDF/XML syntax.

3.1 Relationship between a Resource Map and an Aggregation

A Resource Map MUST include one triple with an ore:describes predicate. The subject of this triple MUST be the URI-R of the Resource Map. The object is the URI-A of the Aggregation described by the Resource Map.

The triples corresponding to the example are:

Subject Predicate Object
Assertions about Resource Map
http://arxiv.org/rem/rdf/astro-ph/0601007 ore:describes http://arxiv.org/aggregation/astro-ph/0601007
Assertions about Aggregation
http://arxiv.org/aggregation/astro-ph/0601007 ore:isDescribedy http://arxiv.org/rem/atom/astro-ph/0601007
http://arxiv.org/aggregation/astro-ph/0601007 ore:isDescribedy http://arxiv.org/rem/xhtml/astro-ph/0601007

These triples SHOULD be serialized in RDF/XML as follows:

<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
        xmlns:ore="http://www.openarchives.org/ore/terms/">
  <rdf:Description rdf:about="http://arxiv.org/rem/rdf/astro-ph/0601007">
    <ore:describes rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007" />
  </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" />
    <ore:isDescribedBy rdf:resource="http://arxiv.org/rem/xhtml/astro-ph/0601007" />
  </rdf:Description>
</rdf:RDF>

[RDF/XML, NTriples via Triplr]

Note: The use of bold in the RDF/XML above indicates the segment of the XML that corresponds to the triples in the table that immediately preceeds the example. This visual cue will be used throughout this document.

3.2 Metadata about the Resource Map and Aggregation

A Resource Map MUST include triples expressing minimal metadata properties about the Resource Map. It MAY include triples expressing additional metadata properties about the Resource Map. Finally it MAY include triples expressing metadata properties about the Aggregation.

The triples corresponding to the example are:

Subject Predicate Object
Assertions about Resource Map (and related Agents)
http://arxiv.org/rem/rdf/astro-ph/0601007 dcterms:creator _:blank1
_:blank1 foaf:name "arXiv.org e-Print Repository"
_:blank1 foaf:page http://arXiv.org
http://arxiv.org/rem/rdf/astro-ph/0601007 dcterms:created "2008-10-01T18:30:02Z"^^
http://www.w3.org/2001/XMLSchema#dateTime
http://arxiv.org/rem/rdf/astro-ph/0601007 dcterms:modified "2008-10-03T07:30:34Z"^^
http://www.w3.org/2001/XMLSchema#dateTime
http://arxiv.org/rem/rdf/astro-ph/0601007 dc:rights "This Resource Map is available under the Creative Commons Attribution-Noncommercial 2.5 Generic license"
http://arxiv.org/rem/rdf/astro-ph/0601007 dcterms:rights http://creativecommons.org/licenses/by-nc/2.5/
Assertions about Aggregation (and related Agents)
http://arxiv.org/aggregation/astro-ph/0601007 dc:title "Parametrization of K-essence and Its Kinetic Term"
http://arxiv.org/aggregation/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."
http://arxiv.org/aggregation/astro-ph/0601007 dcterms:created "2005-12-31T04:01:23Z"^^
http://www.w3.org/2001/XMLSchema#dateTime
http://arxiv.org/aggregation/astro-ph/0601007 dcterms:modified "2006-01-18T06:16:15Z"^^
http://www.w3.org/2001/XMLSchema#dateTime
http://arxiv.org/aggregation/astro-ph/0601007 dcterms:creator _:blank2
_:blank2 foaf:name "Hui Li"
_:blank2 foaf:mbox mailto:lihui@somewhere.cn
http://arxiv.org/aggregation/astro-ph/0601007 dcterms:creator _:blank3
_:blank3 foaf:name "Zong-Kuan Guo"
http://arxiv.org/aggregation/astro-ph/0601007 dcterms:creator _:blank4
_:blank4 foaf:name "Yuan-Zhong Zhang"

Note the introduction of bnodes for the creators of the resource map and of the aggregation - where there are no available URI for the agents.

These triples SHOULD be serialized in RDF/XML as follows:

<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:ore="http://www.openarchives.org/ore/terms/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:dcterms="http://purl.org/dc/terms/"
    xmlns:foaf="http://xmlns.com/foaf/0.1/"
    xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
    <rdf:Description rdf:about="http://arxiv.org/rem/rdf/astro-ph/0601007">
        <ore:describes rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/>
        <dcterms:creator rdf:parseType="Resource">
            <foaf:name>arXiv.org e-Print Repository</foaf:name>
            <foaf:page rdf:resource="http://arXiv.org" />
        </dcterms:creator>
        <dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2008-10-01T18:30:02Z</dcterms:created>
        <dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2008-10-03T07:30:34Z</dcterms:modified>
        <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/"/>
    </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"/>
        <ore:isDescribedBy rdf:resource="http://arxiv.org/rem/xhtml/astro-ph/0601007" />
        <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title>
        <dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2005-12-31T04:01:23Z</dcterms:created>
        <dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2006-01-18T06:16:15Z</dcterms:modified>
        <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>
    </rdf:Description>
</rdf:RDF>

[RDF/XML, NTriples via Triplr]

3.3 Aggregated Resources and Aggregation Graph

A Resource Map MAY include one or more triples describing the relationship between the Aggregation and Aggregated Resources.

The triples corresponding to the example are:

Subject Predicate Object
Assertions about Aggregation
http://arxiv.org/aggregation/astro-ph/0601007 ore:aggregates http://arxiv.org/abs/astro-ph/0601007
http://arxiv.org/aggregation/astro-ph/0601007 ore:aggregates http://arxiv.org/pdf/astro-ph/0601007
http://arxiv.org/aggregation/astro-ph/0601007 ore:aggregates http://arxiv.org/ps/astro-ph/0601007
http://arxiv.org/aggregation/astro-ph/0601007 ore:aggregates http://arxiv.org/ps/astro-ph/0601007?dpi=600&font=bitmapped
http://arxiv.org/aggregation/astro-ph/0601007 ore:aggregates http://arxiv.org/ps/astro-ph/0601007?dpi=300&font=bitmapped
http://arxiv.org/aggregation/astro-ph/0601007 ore:aggregates http://arxiv.org/ps/astro-ph/0601007?fname=cm&font=TypeI
http://arxiv.org/aggregation/astro-ph/0601007 ore:aggregates http://arxiv.org/dvi/astro-ph/0601007
http://arxiv.org/aggregation/astro-ph/0601007 ore:aggregates http://export.arxiv.org/oai2?verb=GetRecord
&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007
http://arxiv.org/aggregation/astro-ph/0601007 ore:aggregates http://arxiv.org/cits/astro-ph/0601007
http://arxiv.org/aggregation/astro-ph/0601007 ore:aggregates http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007

These triples SHOULD be serialized in RDF/XML as follows:

<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:ore="http://www.openarchives.org/ore/terms/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:dcterms="http://purl.org/dc/terms/"
    xmlns:foaf="http://xmlns.com/foaf/0.1/">
    <rdf:Description rdf:about="http://arxiv.org/rem/rdf/astro-ph/0601007">
        <ore:describes rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/>
        <dcterms:creator rdf:parseType="Resource">
            <foaf:name>arXiv.org e-Print Repository</foaf:name>
            <foaf:page rdf:resource="http://arXiv.org" />
        </dcterms:creator>
        <dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2008-10-01T18:30:02Z</dcterms:created>
        <dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2008-10-03T07:30:34Z</dcterms:modified>
        <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/"/>
    </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"/>
        <ore:isDescribedBy rdf:resource="http://arxiv.org/rem/xhtml/astro-ph/0601007" />
        <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title>
        <dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2005-12-31T04:01:23Z</dcterms:created>
        <dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2006-01-18T06:16:15Z</dcterms:modified>
        <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>
        <ore:aggregates rdf:resource="http://arxiv.org/abs/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=600&amp;font=bitmapped"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=300&amp;font=bitmapped"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?fname=cm&amp;font=TypeI"/>
        <ore:aggregates rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://export.arxiv.org/oai2?verb=GetRecord
&amp;metadataPrefix=oai_dc&amp;identifier=astro-ph/0601007"/> <ore:aggregates rdf:resource="http://arxiv.org/cits/astro-ph/0601007"/> <ore:aggregates rdf:resource="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007"/>
</rdf:Description> </rdf:RDF>

[RDF/XML, NTriples via Triplr]

3.4 Relationships between the Aggregation and Similar Resources

A Resource Map MAY include one or more triples, with URI-A as the subject, which assert that the Aggregation is a Resource with content that is similar to another Resource. The predicate MAY be either rdfs:seeAlso or its sub-property ore:similarTo.

The triples corresponding to the example are:

Subject Predicate Object
Assertions about Aggregation
http://arxiv.org/aggregation/astro-ph/0601007 rdfs:seeAlso http://arxiv.org/abs/astro-ph/0601007
http://arxiv.org/aggregation/astro-ph/0601007 rdfs:seeAlso http://jp.arxiv.org/aggregation/astro-ph/0601007
http://arxiv.org/aggregation/astro-ph/0601007 ore:similarTo info:arxiv/astro-ph/0601007
http://arxiv.org/aggregation/astro-ph/0601007 ore:similarTo info:doi/10.1142/S0217732306019475

These triples SHOULD be serialized in RDF/XML as follows:

<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:ore="http://www.openarchives.org/ore/terms/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:dcterms="http://purl.org/dc/terms/"
    xmlns:foaf="http://xmlns.com/foaf/0.1/"
    xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
    <rdf:Description rdf:about="http://arxiv.org/rem/rdf/astro-ph/0601007">
        <ore:describes rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/>
        <dcterms:creator rdf:parseType="Resource">
            <foaf:name>arXiv.org e-Print Repository</foaf:name>
            <foaf:page rdf:resource="http://arXiv.org" />
        </dcterms:creator>
        <dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2008-10-01T18:30:02Z</dcterms:created>
        <dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2008-10-03T07:30:34Z</dcterms:modified>
        <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/"/>
    </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"/>
        <ore:isDescribedBy rdf:resource="http://arxiv.org/rem/xhtml/astro-ph/0601007" />
        <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title>
        <dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2005-12-31T04:01:23Z</dcterms:created>
        <dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2006-01-18T06:16:15Z</dcterms:modified>
        <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>
        <ore:aggregates rdf:resource="http://arxiv.org/abs/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=600&amp;font=bitmapped"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=300&amp;font=bitmapped"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?fname=cm&amp;font=TypeI"/>
        <ore:aggregates rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://export.arxiv.org/oai2?verb=GetRecord
&amp;metadataPrefix=oai_dc&amp;identifier=astro-ph/0601007"/> <ore:aggregates rdf:resource="http://arxiv.org/cits/astro-ph/0601007"/> <ore:aggregates rdf:resource="http://www.citebase.org/abstract?id=oai:arXiv.org: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"/> <ore:similarTo rdf:resource="info:arxiv/astro-ph/0601007"/> <ore:similarTo rdf:resource="info:doi/10.1142/S0217732306019475"/> </rdf:Description> </rdf:RDF>

[RDF/XML, NTriples via Triplr]

3.5 Relationships to other Resources and Types

A Resource Map MAY include additional triples that assert properties about the Resource Map, Aggregation, Aggregated Resources, or other related Resources or Literals.

The triples corresponding to the example are:

Subject Predicate Object
Assertions about Aggregation
http://arxiv.org/aggregation/astro-ph/0601007 dcterms:hasVersion http://arxiv.org/aggregation/astro-ph/0601007v1
http://arxiv.org/aggregation/astro-ph/0601007 dcterms:hasVersion http://arxiv.org/aggregation/astro-ph/0601007v2
http://arxiv.org/aggregation/astro-ph/0601007 dcterms:isReferencedBy http://arxiv.org/aggregation/0807.1020
http://arxiv.org/aggregation/astro-ph/0601007 dcterms:isReferencedBy http://arxiv.org/aggregation/0806.4327
http://arxiv.org/aggregation/astro-ph/0601007 rdf:type http://purl.org/eprint/type/JournalArticle
http://arxiv.org/aggregation/astro-ph/0601007 dcterms:audience _:blank6
_:blank6 rdf:value "OCLC audience level 1: research"
Assertions about other Resource Maps
http://arxiv.org/rem/atom/astro-ph/0601007 dc:format "application/atom+xml"
http://arxiv.org/rem/xhtml/astro-ph/0601007 dc:format "application/xhtml+xml"
Assertions about related Aggregations
http://arxiv.org/aggregation/0807.1020 dc:title "How the Scalar Field of Unified Dark Matter Models Can Cluster"
http://arxiv.org/aggregation/0806.4327 dc:title "Cosmological scalar fields that mimic the $\Lambda CDM$ cosmological model"
Assertions about Aggregated Resources (and related Agents)
http://arxiv.org/abs/astro-ph/0601007 dc:title "[astro-ph/0601007] Parametrization of K-essence and Its Kinetic Term"
http://arxiv.org/abs/astro-ph/0601007 dc:format "text/html"
http://arxiv.org/abs/astro-ph/0601007 dc:language "en"
http://arxiv.org/abs/astro-ph/0601007 rdf:type info:eu-repo/semantics/humanStartPage
http://arxiv.org/pdf/astro-ph/0601007 dc:title "Parametrization of K-essence and Its Kinetic Term"
http://arxiv.org/pdf/astro-ph/0601007 dc:format "application/pdf"
http://arxiv.org/pdf/astro-ph/0601007 dc:language "en"
http://arxiv.org/pdf/astro-ph/0601007 dcterms:conformsTo info:pronom/fmt/18
http://arxiv.org/ps/astro-ph/0601007 dc:title "Parametrization of K-essence and Its Kinetic Term"
http://arxiv.org/ps/astro-ph/0601007 dc:format "application/postscript"
http://arxiv.org/ps/astro-ph/0601007 dc:language "en"
http://arxiv.org/ps/astro-ph/0601007 dcterms:hasFormat http://arxiv.org/pdf/astro-ph/0601007
http://arxiv.org/ps/astro-ph/0601007 dcterms:hasFormat http://arxiv.org/ps/astro-ph/0601007?dpi=600&font=bitmapped
http://arxiv.org/ps/astro-ph/0601007 dcterms:hasFormat http://arxiv.org/ps/astro-ph/0601007?dpi=300&font=bitmapped
http://arxiv.org/ps/astro-ph/0601007 dcterms:hasFormat http://arxiv.org/ps/astro-ph/0601007?fname=cm&font=TypeI
http://arxiv.org/ps/astro-ph/0601007 dcterms:hasFormat http://arxiv.org/dvi/astro-ph/0601007
http://arxiv.org/ps/astro-ph/0601007?dpi=600&font=bitmapped dc:title "Parametrization of K-essence and Its Kinetic Term (600 DPI Bitmapped Fonts PostScript)"
http://arxiv.org/ps/astro-ph/0601007?dpi=600&font=bitmapped dc:format "application/postscript"
http://arxiv.org/ps/astro-ph/0601007?dpi=600&font=bitmapped dc:language "en"
http://arxiv.org/ps/astro-ph/0601007?dpi=300&font=bitmapped dc:title "Parametrization of K-essence and Its Kinetic Term (300 DPI Bitmapped Fonts PostScript)"
http://arxiv.org/ps/astro-ph/0601007?dpi=300&font=bitmapped dc:format "application/postscript"
http://arxiv.org/ps/astro-ph/0601007?dpi=300&font=bitmapped dc:language "en"
http://arxiv.org/ps/astro-ph/0601007?fname=cm&font=TypeI dc:title "Parametrization of K-essence and Its Kinetic Term (Type I Fonts PostScript)"
http://arxiv.org/ps/astro-ph/0601007?fname=cm&font=TypeI dc:format "application/postscript"
http://arxiv.org/ps/astro-ph/0601007?fname=cm&font=TypeI dc:language "en"
http://arxiv.org/dvi/astro-ph/0601007 dc:title "Parametrization of K-essence and Its Kinetic Term"
http://arxiv.org/dvi/astro-ph/0601007 dc:format "application/dvi"
http://arxiv.org/dvi/astro-ph/0601007 dc:language "en"
http://export.arxiv.org/oai2?verb=GetRecord
&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007
dc:title "Dublin Core Metadata for Parametrization of K-essence and Its Kinetic Term"
http://export.arxiv.org/oai2?verb=GetRecord
&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007
dc:format "application/xml"
http://export.arxiv.org/oai2?verb=GetRecord
&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007
dcterms:conformsTo http://www.openarchives.org/OAI/2.0/oai_dc/
http://export.arxiv.org/oai2?verb=GetRecord
&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007
rdf:type info:eu-repo/semantics/descriptiveMetadata
http://arxiv.org/cits/astro-ph/0601007 dc:title "Citations for astro-ph/0601007"
http://arxiv.org/cits/astro-ph/0601007 dc:format "text/html"
http://arxiv.org/cits/astro-ph/0601007 dc:language "en"
http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007 dc:title "Citebase - Parametrization of K-essence and Its Kinetic Term"
http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007 dc:format "text/html"
http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007 dc:language "en"
http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007 dcterms:creator _:blank5
_:blank5 foaf:name "The Citebase Project"
_:blank5 foaf:page http://www.citebase.org/
_:blank5 foaf:mbox mailto:tdb01r@ecs.soton.ac.uk

These triples SHOULD be serialized in RDF/XML as follows:

<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:ore="http://www.openarchives.org/ore/terms/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:dcterms="http://purl.org/dc/terms/"
    xmlns:foaf="http://xmlns.com/foaf/0.1/"
    xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
    <rdf:Description rdf:about="http://arxiv.org/rem/rdf/astro-ph/0601007">
        <ore:describes rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/>
        <dcterms:creator rdf:parseType="Resource">
            <foaf:name>arXiv.org e-Print Repository</foaf:name>
            <foaf:page rdf:resource="http://arXiv.org" />
        </dcterms:creator>
        <dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2008-10-01T18:30:02Z</dcterms:created>
        <dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2008-10-03T07:30:34Z</dcterms:modified>
        <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/"/>
    </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"/>
        <ore:isDescribedBy rdf:resource="http://arxiv.org/rem/xhtml/astro-ph/0601007" />
        <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title>
        <dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2005-12-31T04:01:23Z</dcterms:created>
        <dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2006-01-18T06:16:15Z</dcterms:modified>
        <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>
        <ore:aggregates rdf:resource="http://arxiv.org/abs/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=600&amp;font=bitmapped"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=300&amp;font=bitmapped"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?fname=cm&amp;font=TypeI"/>
        <ore:aggregates rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://export.arxiv.org/oai2?verb=GetRecord
&amp;metadataPrefix=oai_dc&amp;identifier=astro-ph/0601007"/> <ore:aggregates rdf:resource="http://arxiv.org/cits/astro-ph/0601007"/> <ore:aggregates rdf:resource="http://www.citebase.org/abstract?id=oai:arXiv.org: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"/> <ore:similarTo rdf:resource="info:arxiv/astro-ph/0601007"/> <ore:similarTo rdf:resource="info:doi/10.1142/S0217732306019475"/> <dcterms:hasVersion rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007v1"/> <dcterms:hasVersion rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007v2"/> <dcterms:isReferencedBy rdf:resource="http://arxiv.org/aggregation/0807.1020"/> <dcterms:isReferencedBy rdf:resource="http://arxiv.org/aggregation/0806.4327"/> <rdf:type rdf:resource="http://purl.org/eprint/type/JournalArticle"/> <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/rem/atom/astro-ph/0601007"> <dc:format>application/atom+xml</dc:format> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/rem/xhtml/astro-ph/0601007"> <dc:format>application/xhtml+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/0807.1020"> <dc:title>Cosmological scalar fields that mimic the $\Lambda CDM$ cosmological model</dc:title> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/abs/astro-ph/0601007"> <dc:title>[astro-ph/0601007] Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>text/html</dc:format> <dc:language>en</dc:language> <rdf:type rdf:resource="info:eu-repo/semantics/humanStartPage"/> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/pdf/astro-ph/0601007"> <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>application/pdf</dc:format> <dc:language>en</dc:language> <dcterms:conformsTo rdf:resource="info:pronom/fmt/18"/> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007"> <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> <dcterms:hasFormat rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=600&amp;font=bitmapped"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=300&amp;font=bitmapped"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007?fname=cm&amp;font=TypeI"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007?dpi=600&amp;font=bitmapped"> <dc:title>Parametrization of K-essence and Its Kinetic Term (600 DPI Bitmapped Fonts PostScript)</dc:title> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007?dpi=300&amp;font=bitmapped"> <dc:title>Parametrization of K-essence and Its Kinetic Term (300 DPI Bitmapped Fonts PostScript)</dc:title> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007?fname=cm&amp;font=TypeI"> <dc:title>Parametrization of K-essence and Its Kinetic Term (Type I Fonts PostScript)</dc:title> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/dvi/astro-ph/0601007"> <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>application/dvi</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://export.arxiv.org/oai2?verb=GetRecord
&amp;metadataPrefix=oai_dc&amp;identifier=astro-ph/0601007"> <dc:title>Dublin Core Metadata for Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>application/xml</dc:format> <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://arxiv.org/cits/astro-ph/0601007"> <dc:title>Citations for astro-ph/0601007</dc:title> <dc:format>text/html</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007"> <dc:title>Citebase - Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>text/html</dc:format> <dc:language>en</dc:language> <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:RDF>

[RDF/XML, NTriples via Triplr]

3.6 Asserting that an Aggregated Resource is a constituent of another Aggregation

A Resource Map MAY include one or more triples with the ore:isAggregatedBy predicate to assert that an Aggregated Resources is a constituent of other Aggregations.

The triple corresponding to the example is:

Subject Predicate Object
Assertions about Aggregated Resource
http://arxiv.org/ps/astro-ph/0601007 ore:isAggregatedBy http://example.org/aggregation-1

These triples SHOULD be serialized in RDF/XML as follows:

<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:ore="http://www.openarchives.org/ore/terms/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:dcterms="http://purl.org/dc/terms/"
    xmlns:foaf="http://xmlns.com/foaf/0.1/"
    xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
    <rdf:Description rdf:about="http://arxiv.org/rem/rdf/astro-ph/0601007">
        <ore:describes rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/>
        <dcterms:creator rdf:parseType="Resource">
            <foaf:name>arXiv.org e-Print Repository</foaf:name>
            <foaf:page rdf:resource="http://arXiv.org" />
        </dcterms:creator>
        <dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2008-10-01T18:30:02Z</dcterms:created>
        <dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2008-10-03T07:30:34Z</dcterms:modified>
        <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/"/>
    </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"/>
        <ore:isDescribedBy rdf:resource="http://arxiv.org/rem/xhtml/astro-ph/0601007" />
        <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title>
        <dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2005-12-31T04:01:23Z</dcterms:created>
        <dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2006-01-18T06:16:15Z</dcterms:modified>
        <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>
        <ore:aggregates rdf:resource="http://arxiv.org/abs/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=600&amp;font=bitmapped"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=300&amp;font=bitmapped"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?fname=cm&amp;font=TypeI"/>
        <ore:aggregates rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://export.arxiv.org/oai2?verb=GetRecord
&amp;metadataPrefix=oai_dc&amp;identifier=astro-ph/0601007"/> <ore:aggregates rdf:resource="http://arxiv.org/cits/astro-ph/0601007"/> <ore:aggregates rdf:resource="http://www.citebase.org/abstract?id=oai:arXiv.org: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"/> <ore:similarTo rdf:resource="info:arxiv/astro-ph/0601007"/> <ore:similarTo rdf:resource="info:doi/10.1142/S0217732306019475"/> <dcterms:hasVersion rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007v1"/> <dcterms:hasVersion rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007v2"/> <dcterms:isReferencedBy rdf:resource="http://arxiv.org/aggregation/0807.1020"/> <dcterms:isReferencedBy rdf:resource="http://arxiv.org/aggregation/0806.4327"/> <rdf:type rdf:resource="http://purl.org/eprint/type/JournalArticle"/> <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/rem/atom/astro-ph/0601007"> <dc:format>application/atom+xml</dc:format> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/rem/xhtml/astro-ph/0601007"> <dc:format>application/xhtml+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/0807.1020"> <dc:title>Cosmological scalar fields that mimic the $\Lambda CDM$ cosmological model</dc:title> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/abs/astro-ph/0601007"> <dc:title>[astro-ph/0601007] Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>text/html</dc:format> <dc:language>en</dc:language> <rdf:type rdf:resource="info:eu-repo/semantics/humanStartPage"/> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/pdf/astro-ph/0601007"> <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>application/pdf</dc:format> <dc:language>en</dc:language> <dcterms:conformsTo rdf:resource="info:pronom/fmt/18"/> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007"> <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> <dcterms:hasFormat rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=600&amp;font=bitmapped"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=300&amp;font=bitmapped"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007?fname=cm&amp;font=TypeI"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/> <ore:isAggregatedBy rdf:resource="http://example.org/aggregation-1"/> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007?dpi=600&amp;font=bitmapped"> <dc:title>Parametrization of K-essence and Its Kinetic Term (600 DPI Bitmapped Fonts PostScript)</dc:title> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007?dpi=300&amp;font=bitmapped"> <dc:title>Parametrization of K-essence and Its Kinetic Term (300 DPI Bitmapped Fonts PostScript)</dc:title> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007?fname=cm&amp;font=TypeI"> <dc:title>Parametrization of K-essence and Its Kinetic Term (Type I Fonts PostScript)</dc:title> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/dvi/astro-ph/0601007"> <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>application/dvi</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://export.arxiv.org/oai2?verb=GetRecord
&amp;metadataPrefix=oai_dc&amp;identifier=astro-ph/0601007"> <dc:title>Dublin Core Metadata for Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>application/xml</dc:format> <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://arxiv.org/cits/astro-ph/0601007"> <dc:title>Citations for astro-ph/0601007</dc:title> <dc:format>text/html</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007"> <dc:title>Citebase - Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>text/html</dc:format> <dc:language>en</dc:language> <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:RDF>

[RDF/XML, NTriples via Triplr]

3.7 Nesting Aggregations

A Resource Map that asserts another Aggregation as an Aggregated Resource MAY assert an ore:isDescribedBy relationship between this Aggregated Resource and a Resource Map describing the other Aggregation.

The triples corresponding to the example are:

Subject Predicate Object
Assertions about Aggregation
http://arxiv.org/aggregation/astro-ph/0601007 ore:aggregates http://example.org/dataSet
Assertions about Aggregated Resource
http://example.org/dataSet ore:isDescribedBy http://example.org/dataSet/rem.rdf

These triples SHOULD be serialized in RDF/XML as follows:

<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:ore="http://www.openarchives.org/ore/terms/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:dcterms="http://purl.org/dc/terms/"
    xmlns:foaf="http://xmlns.com/foaf/0.1/"
    xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
    <rdf:Description rdf:about="http://arxiv.org/rem/rdf/astro-ph/0601007">
        <ore:describes rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/>
        <dcterms:creator rdf:parseType="Resource">
            <foaf:name>arXiv.org e-Print Repository</foaf:name>
            <foaf:page rdf:resource="http://arXiv.org" />
        </dcterms:creator>
        <dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2008-10-01T18:30:02Z</dcterms:created>
        <dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2008-10-03T07:30:34Z</dcterms:modified>
        <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/"/>
    </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"/>
        <ore:isDescribedBy rdf:resource="http://arxiv.org/rem/xhtml/astro-ph/0601007" />
        <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title>
        <dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2005-12-31T04:01:23Z</dcterms:created>
        <dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2006-01-18T06:16:15Z</dcterms:modified>
        <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>
        <ore:aggregates rdf:resource="http://arxiv.org/abs/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=600&amp;font=bitmapped"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=300&amp;font=bitmapped"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?fname=cm&amp;font=TypeI"/>
        <ore:aggregates rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://export.arxiv.org/oai2?verb=GetRecord
&amp;metadataPrefix=oai_dc&amp;identifier=astro-ph/0601007"/> <ore:aggregates rdf:resource="http://arxiv.org/cits/astro-ph/0601007"/> <ore:aggregates rdf:resource="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007"/> <ore:aggregates rdf:resource="http://example.org/dataSet"/> <rdfs:seeAlso rdf:resource="http://arxiv.org/abs/astro-ph/0601007"/> <rdfs:seeAlso rdf:resource="http://jp.arxiv.org/aggregation/astro-ph/0601007"/> <ore:similarTo rdf:resource="info:arxiv/astro-ph/0601007"/> <ore:similarTo rdf:resource="info:doi/10.1142/S0217732306019475"/> <dcterms:hasVersion rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007v1"/> <dcterms:hasVersion rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007v2"/> <dcterms:isReferencedBy rdf:resource="http://arxiv.org/aggregation/0807.1020"/> <dcterms:isReferencedBy rdf:resource="http://arxiv.org/aggregation/0806.4327"/> <rdf:type rdf:resource="http://purl.org/eprint/type/JournalArticle"/> <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/rem/atom/astro-ph/0601007"> <dc:format>application/atom+xml</dc:format> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/rem/xhtml/astro-ph/0601007"> <dc:format>application/xhtml+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/0807.1020"> <dc:title>Cosmological scalar fields that mimic the $\Lambda CDM$ cosmological model</dc:title> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/abs/astro-ph/0601007"> <dc:title>[astro-ph/0601007] Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>text/html</dc:format> <dc:language>en</dc:language> <rdf:type rdf:resource="info:eu-repo/semantics/humanStartPage"/> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/pdf/astro-ph/0601007"> <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>application/pdf</dc:format> <dc:language>en</dc:language> <dcterms:conformsTo rdf:resource="info:pronom/fmt/18"/> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007"> <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> <dcterms:hasFormat rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=600&amp;font=bitmapped"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=300&amp;font=bitmapped"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007?fname=cm&amp;font=TypeI"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/> <ore:isAggregatedBy rdf:resource="http://example.org/aggregation-1"/> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007?dpi=600&amp;font=bitmapped"> <dc:title>Parametrization of K-essence and Its Kinetic Term (600 DPI Bitmapped Fonts PostScript)</dc:title> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007?dpi=300&amp;font=bitmapped"> <dc:title>Parametrization of K-essence and Its Kinetic Term (300 DPI Bitmapped Fonts PostScript)</dc:title> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007?fname=cm&amp;font=TypeI"> <dc:title>Parametrization of K-essence and Its Kinetic Term (Type I Fonts PostScript)</dc:title> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/dvi/astro-ph/0601007"> <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>application/dvi</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://export.arxiv.org/oai2?verb=GetRecord
&amp;metadataPrefix=oai_dc&amp;identifier=astro-ph/0601007"> <dc:title>Dublin Core Metadata for Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>application/xml</dc:format> <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://arxiv.org/cits/astro-ph/0601007"> <dc:title>Citations for astro-ph/0601007</dc:title> <dc:format>text/html</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007"> <dc:title>Citebase - Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>text/html</dc:format> <dc:language>en</dc:language> <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://example.org/dataSet"> <ore:isDescribedBy rdf:resource="http://example.org/dataSet/rem.rdf"/> </rdf:Description> </rdf:RDF>

[RDF/XML, NTriples via Triplr]

3.8 Proxies for Aggregated Resources

A Proxy is a Resource that "stands for" an Aggregated Resource in a manner that is specific to one Aggregation. A Resource Map MAY assert one Proxy for any Aggregated Resource asserted by the Resource Map.

The triples corresponding to the example are:

Subject Predicate Object
Assertions about Proxies
http://oreproxy.org/r?what=http://arxiv.org/abs/astro-ph/0601007
&where=http://arxiv.org/aggregation/astro-ph/0601007
ore:proxyFor http://arxiv.org/abs/astro-ph/0601007
http://oreproxy.org/r?what=http://arxiv.org/abs/astro-ph/0601007
&where=http://arxiv.org/aggregation/astro-ph/0601007
ore:proxyIn http://arxiv.org/aggregation/astro-ph/0601007
http://oreproxy.org/r?what=http://arxiv.org/pdf/astro-ph/0601007
&where=http://arxiv.org/aggregation/astro-ph/0601007
ore:proxyFor http://arxiv.org/pdf/astro-ph/0601007
http://oreproxy.org/r?what=http://arxiv.org/pdf/astro-ph/0601007
&where=http://arxiv.org/aggregation/astro-ph/0601007
ore:proxyIn http://arxiv.org/aggregation/astro-ph/0601007
http://oreproxy.org/r?what=http://arxiv.org/ps/astro-ph/0601007
&where=http://arxiv.org/aggregation/astro-ph/0601007
ore:proxyFor http://arxiv.org/ps/astro-ph/0601007
http://oreproxy.org/r?what=http://arxiv.org/ps/astro-ph/0601007
&where=http://arxiv.org/aggregation/astro-ph/0601007
ore:proxyIn http://arxiv.org/aggregation/astro-ph/0601007
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 http://arxiv.org/ps/astro-ph/0601007?dpi=600&font=bitmapped
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:proxyIn http://arxiv.org/aggregation/astro-ph/0601007
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 http://arxiv.org/ps/astro-ph/0601007?dpi=300&font=bitmapped
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:proxyIn http://arxiv.org/aggregation/astro-ph/0601007
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 http://arxiv.org/ps/astro-ph/0601007?fname=cm&font=TypeI
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:proxyIn http://arxiv.org/aggregation/astro-ph/0601007
http://oreproxy.org/r?what=http://arxiv.org/dvi/astro-ph/0601007
&where=http://arxiv.org/aggregation/astro-ph/0601007
ore:proxyFor http://arxiv.org/dvi/astro-ph/0601007
http://oreproxy.org/r?what=http://arxiv.org/dvi/astro-ph/0601007
&where=http://arxiv.org/aggregation/astro-ph/0601007
ore:proxyIn http://arxiv.org/aggregation/astro-ph/0601007
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 http://export.arxiv.org/oai2?verb=GetRecord
&metadataPrefix=oai_dc&identifier=oai:arXiv.org:astro-ph/0601007
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:proxyIn http://arxiv.org/aggregation/astro-ph/0601007
http://oreproxy.org/r?what=http://arxiv.org/cits/astro-ph/0601007
&where=http://arxiv.org/aggregation/astro-ph/0601007
ore:proxyFor http://arxiv.org/cits/astro-ph/0601007
http://oreproxy.org/r?what=http://arxiv.org/cits/astro-ph/0601007
&where=http://arxiv.org/aggregation/astro-ph/0601007
ore:proxyIn http://arxiv.org/aggregation/astro-ph/0601007
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 http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007
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:proxyIn http://arxiv.org/aggregation/astro-ph/0601007

These triples SHOULD be serialized in RDF/XML as follows:

<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:ore="http://www.openarchives.org/ore/terms/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:dcterms="http://purl.org/dc/terms/"
    xmlns:foaf="http://xmlns.com/foaf/0.1/"
    xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
    <rdf:Description rdf:about="http://arxiv.org/rem/rdf/astro-ph/0601007">
        <ore:describes rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007"/>
        <dcterms:creator rdf:parseType="Resource">
            <foaf:name>arXiv.org e-Print Repository</foaf:name>
            <foaf:page rdf:resource="http://arXiv.org" />
        </dcterms:creator>
        <dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2008-10-01T18:30:02Z</dcterms:created>
        <dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2008-10-03T07:30:34Z</dcterms:modified>
        <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/"/>
    </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"/>
        <ore:isDescribedBy rdf:resource="http://arxiv.org/rem/xhtml/astro-ph/0601007" />
        <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title>
        <dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2005-12-31T04:01:23Z</dcterms:created>
        <dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime"
          >2006-01-18T06:16:15Z</dcterms:modified>
        <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>
        <ore:aggregates rdf:resource="http://arxiv.org/abs/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=600&amp;font=bitmapped"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=300&amp;font=bitmapped"/>
        <ore:aggregates rdf:resource="http://arxiv.org/ps/astro-ph/0601007?fname=cm&amp;font=TypeI"/>
        <ore:aggregates rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/>
        <ore:aggregates rdf:resource="http://export.arxiv.org/oai2?verb=GetRecord
&amp;metadataPrefix=oai_dc&amp;identifier=astro-ph/0601007"/> <ore:aggregates rdf:resource="http://arxiv.org/cits/astro-ph/0601007"/> <ore:aggregates rdf:resource="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007"/> <ore:aggregates rdf:resource="http://example.org/dataSet"/> <rdfs:seeAlso rdf:resource="http://arxiv.org/abs/astro-ph/0601007"/> <rdfs:seeAlso rdf:resource="http://jp.arxiv.org/aggregation/astro-ph/0601007"/> <ore:similarTo rdf:resource="info:arxiv/astro-ph/0601007"/> <ore:similarTo rdf:resource="info:doi/10.1142/S0217732306019475"/> <dcterms:hasVersion rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007v1"/> <dcterms:hasVersion rdf:resource="http://arxiv.org/aggregation/astro-ph/0601007v2"/> <dcterms:isReferencedBy rdf:resource="http://arxiv.org/aggregation/0807.1020"/> <dcterms:isReferencedBy rdf:resource="http://arxiv.org/aggregation/0806.4327"/> <rdf:type rdf:resource="http://purl.org/eprint/type/JournalArticle"/> <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/rem/atom/astro-ph/0601007"> <dc:format>application/atom+xml</dc:format> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/rem/xhtml/astro-ph/0601007"> <dc:format>application/xhtml+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/0807.1020"> <dc:title>Cosmological scalar fields that mimic the $\Lambda CDM$ cosmological model</dc:title> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/abs/astro-ph/0601007"> <dc:title>[astro-ph/0601007] Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>text/html</dc:format> <dc:language>en</dc:language> <rdf:type rdf:resource="info:eu-repo/semantics/humanStartPage"/> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/pdf/astro-ph/0601007"> <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>application/pdf</dc:format> <dc:language>en</dc:language> <dcterms:conformsTo rdf:resource="info:pronom/fmt/18"/> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007"> <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> <dcterms:hasFormat rdf:resource="http://arxiv.org/pdf/astro-ph/0601007"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=600&amp;font=bitmapped"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=300&amp;font=bitmapped"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/ps/astro-ph/0601007?fname=cm&amp;font=TypeI"/> <dcterms:hasFormat rdf:resource="http://arxiv.org/dvi/astro-ph/0601007"/> <ore:isAggregatedBy rdf:resource="http://example.org/aggregation-1"/> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007?dpi=600&amp;font=bitmapped"> <dc:title>Parametrization of K-essence and Its Kinetic Term (600 DPI Bitmapped Fonts PostScript)</dc:title> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007?dpi=300&amp;font=bitmapped"> <dc:title>Parametrization of K-essence and Its Kinetic Term (300 DPI Bitmapped Fonts PostScript)</dc:title> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/ps/astro-ph/0601007?fname=cm&amp;font=TypeI"> <dc:title>Parametrization of K-essence and Its Kinetic Term (Type I Fonts PostScript)</dc:title> <dc:format>application/postscript</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://arxiv.org/dvi/astro-ph/0601007"> <dc:title>Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>application/dvi</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://export.arxiv.org/oai2?verb=GetRecord
&amp;metadataPrefix=oai_dc&amp;identifier=astro-ph/0601007"> <dc:title>Dublin Core Metadata for Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>application/xml</dc:format> <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://arxiv.org/cits/astro-ph/0601007"> <dc:title>Citations for astro-ph/0601007</dc:title> <dc:format>text/html</dc:format> <dc:language>en</dc:language> </rdf:Description> <rdf:Description rdf:about="http://www.citebase.org/abstract?id=oai:arXiv.org:astro-ph/0601007"> <dc:title>Citebase - Parametrization of K-essence and Its Kinetic Term</dc:title> <dc:format>text/html</dc:format> <dc:language>en</dc:language> <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://example.org/dataSet"> <ore:isDescribedBy rdf:resource="http://example.org/dataSet/rem.rdf"/> </rdf:Description> <rdf:Description rdf:about="http://oreproxy.org/r?what=http://arxiv.org/abs/astro-ph/0601007
&amp;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://oreproxy.org/r?what=http://arxiv.org/pdf/astro-ph/0601007
&amp;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
&amp;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://oreproxy.org/r?what=http://arxiv.org/ps/astro-ph/0601007?dpi%3d600%26font%3dbitmapped
&amp;where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=600&amp;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
&amp;where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/ps/astro-ph/0601007?dpi=300&amp;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
&amp;where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://arxiv.org/ps/astro-ph/0601007?fname=cm&amp;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
&amp;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://oreproxy.org/r?what=http://export.arxiv.org/oai2?verb%3dGetRecord
%26metadataPrefix%3doai_dc%26identifier%3dastro-ph/0601007
&amp;where=http://arxiv.org/aggregation/astro-ph/0601007"> <ore:proxyFor rdf:resource="http://export.arxiv.org/oai2?verb=GetRecord
&amp;metadataPrefix=oai_dc&amp;identifier=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
&amp;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://oreproxy.org/r?what=http://www.citebase.org/abstract?id%3doai:arXiv.org:astro-ph/0601007
&amp;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:RDF>

[RDF/XML, NTriples via Triplr]

4. References

[ORE Model]
ORE Specification - Abstract Data Model, C. Lagoze, H. Van de Sompel, P. Johnston, M. Nelson, R. Sanderson, S. Warner, 2008-10-17. Available at http://www.openarchives.org/ore/1.0/datamodel .
[ORE Primer]
ORE User Guide - Primer, C. Lagoze, H. Van de Sompel, P. Johnston, M. Nelson, R. Sanderson, S. Warner, 2008-10-17. Available at http://www.openarchives.org/ore/1.0/primer .
[ORE RDFa]
ORE User Guide - Resource Map Implementation in RDFa, C. Lagoze, H. Van de Sompel, P. Johnston, M. Nelson, R. Sanderson, S. Warner, 2008-10-17. Available at http://www.openarchives.org/ore/1.0/rdfa .
[RDF Concepts]
Resource Description Framework (RDF): Concepts and Abstract Syntax, Graham Klyne and Jeremy J. Carroll, Editors, W3C Recommendation, 10 February 2004, http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/ . Latest version available at http://www.w3.org/TR/rdf-concepts/ .
[RDFa Syntax]
RDFa in XHTML: Syntax and Processing. A collection of attributes and processing rules for extending XHTML to support RDF, Ben Adida, Mark Birbeck, Shane McCarron and Steven Pemberton, Editors, W3C Proposed Recommendation 4 September 2008.
Available at http://www.w3.org/TR/2008/PR-rdfa-syntax-20080904/ .
Latest version available at http://www.w3.org/TR/rdfa-syntax/.
[RDFS]
RDF Vocabulary Description Language 1.0: RDF Schema, Dan Brickley and R.V. Guha, Editors. W3C Recommendation, 10 February 2004,
http://www.w3.org/TR/2004/REC-rdf-schema-20040210/ .
Latest version available at http://www.w3.org/TR/rdf-schema/.
[RDFXML]
RDF/XML Syntax Specification (Revised), Dave Beckett and Brian McBrde, Editors. W3C Recommendation, 10 February 2004,
http://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/ .
Latest version available at http://www.w3.org/TR/rdf-syntax-grammar/.
[RFC2119]
IETF RFC 2119: Key words for use in RFCs to Indicate Requirement Levels, S. Bradner, March 1997. Available at http://www.ietf.org/rfc/rfc2119.txt.
[RFC3986]
Uniform Resource Identifier (URI): Generic Syntax, T. Berners-Lee, R. Fielding, L. Masinter, IETF RFC3986, January 2005.
[RFC3987]
Internationalized Resource Identifiers (IRIs), M. Duerst & M. Suignard, IETF RFC3987, January 2005.
[Web Architecture]
Architecture of the World Wide Web, Volume One, I. Jacobs and N. Walsh, Editors, World Wide Web Consortium, 15 January 2004.

A. Acknowledgements

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).

B. Change Log

Date Editor Description
2008-10-17 johnston public 1.0 release
2008-06-02 johnston/lagoze public beta 0.9 release
2008-02-29 johnston public alpha 0.2 release (then part of rdfsyntax document)

Creative Commons License
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.