Class: RDF::Vocab::ORE

Inherits:
StrictVocabulary
  • Object
show all
Defined in:
lib/rdf/vocab/ore.rb

Overview

Vocabulary for <www.openarchives.org/ore/terms/>

The OAI ORE terms vocabulary

The OAI ORE terms vocabulary

The set of terms provided by the OAI ORE initiative

Instance Attribute Summary collapse

Instance Attribute Details

#AggregatedResourceRDF::Vocabulary::Term (readonly)

A resource which is included in an Aggregation. Note that asserting that a resource is a member of the class of Aggregated Resources does not imply anything other than that it is aggregated by at least one Aggregation.

Returns:

  • (RDF::Vocabulary::Term)


12
13
14
# File 'lib/rdf/vocab/ore.rb', line 12

def AggregatedResource
  @AggregatedResource
end

#aggregatesRDF::Vocabulary::Term (readonly)

Aggregations, by definition, aggregate resources. The ore:aggregates relationship expresses that the object resource is a member of the set of Aggregated Resources of the subject (the Aggregation). This relationship between the Aggregation and its Aggregated Resources is thus more specific than a simple part/whole relationship, as expressed by dcterms:hasPart for example.

Returns:

  • (RDF::Vocabulary::Term)


28
29
30
# File 'lib/rdf/vocab/ore.rb', line 28

def aggregates
  @aggregates
end

#AggregationRDF::Vocabulary::Term (readonly)

A set of related resources (Aggregated Resources), grouped together such that the set can be treated as a single resource. This is the entity described within the ORE interoperability framework by a Resource Map.

Returns:

  • (RDF::Vocabulary::Term)


16
17
18
# File 'lib/rdf/vocab/ore.rb', line 16

def Aggregation
  @Aggregation
end

#describesRDF::Vocabulary::Term (readonly)

This relationship asserts that the subject (a Resource Map) describes the object (an Aggregation).

Returns:

  • (RDF::Vocabulary::Term)


32
33
34
# File 'lib/rdf/vocab/ore.rb', line 32

def describes
  @describes
end

#isAggregatedByRDF::Vocabulary::Term (readonly)

The inverse relationship of ore:aggregates, ore:isAggregatedBy asserts that an Aggregated Resource is aggregated by an Aggregation.

Returns:

  • (RDF::Vocabulary::Term)


36
37
38
# File 'lib/rdf/vocab/ore.rb', line 36

def isAggregatedBy
  @isAggregatedBy
end

#isDescribedByRDF::Vocabulary::Term (readonly)

The inverse relationship of ore:describes, in this case the object of the relationship is the Resource Map and the subject is the Aggregation which it describes.

Returns:

  • (RDF::Vocabulary::Term)


40
41
42
# File 'lib/rdf/vocab/ore.rb', line 40

def isDescribedBy
  @isDescribedBy
end

#lineageRDF::Vocabulary::Term (readonly)

ore:lineage is a relationship between two Proxy objects, both of which MUST have the same Resource for which they are proxies. The meaning is that the Resource for which the subject of the relationship is a Proxy was discovered in the Aggregation in which the object Proxy’s resource is aggregated.

Returns:

  • (RDF::Vocabulary::Term)


44
45
46
# File 'lib/rdf/vocab/ore.rb', line 44

def lineage
  @lineage
end

#ProxyRDF::Vocabulary::Term (readonly)

A Proxy represents an Aggregated Resource as it exists in a specific Aggregation. All assertions made about an entity are globally true, not only within the context of the Aggregation. As such, in order to make assertions which are only true of a resource as it exists in an Aggregation, a Proxy object is required. For example, one might want to cite an article as it appears in a specific journal, or assign aggregation-specific metadata to a Resource.

Returns:

  • (RDF::Vocabulary::Term)


20
21
22
# File 'lib/rdf/vocab/ore.rb', line 20

def Proxy
  @Proxy
end

#proxyForRDF::Vocabulary::Term (readonly)

Proxy objects are used to represent a Resource as it is aggregated in a particular Aggregation. The ore:proxyFor relationship is used to link the proxy to the Aggregated Resource it is a proxy for. The subject of the relationship is a Proxy object, and the object of the relationship is the Aggregated Resource.

Returns:

  • (RDF::Vocabulary::Term)


48
49
50
# File 'lib/rdf/vocab/ore.rb', line 48

def proxyFor
  @proxyFor
end

#proxyInRDF::Vocabulary::Term (readonly)

Proxy objects must link to the Aggregation in which the resource being proxied is aggregated. The ore:proxyIn relationship is used for this purpose. The subject of the relationship is a Proxy object, and the object of the relationship is the Aggregation.

Returns:

  • (RDF::Vocabulary::Term)


52
53
54
# File 'lib/rdf/vocab/ore.rb', line 52

def proxyIn
  @proxyIn
end

#ResourceMapRDF::Vocabulary::Term (readonly)

A description of an Aggregation according to the OAI-ORE data model. Resource Maps are serialised to a machine readable format according to the implementation guidelines.

Returns:

  • (RDF::Vocabulary::Term)


24
25
26
# File 'lib/rdf/vocab/ore.rb', line 24

def ResourceMap
  @ResourceMap
end

#similarToRDF::Vocabulary::Term (readonly)

The subject of this relationship MUST be an Aggregation. This Aggregation should be considered an expression within the ORE context of the object of the relationship, as it is broadly equivalent to the resource. For example, the Aggregation may consist of the resources which, together, make up a journal article which has a DOI assigned to it. The Aggregation is not the article to which the DOI was assigned, but is a representation of it in some manner.

Returns:

  • (RDF::Vocabulary::Term)


56
57
58
# File 'lib/rdf/vocab/ore.rb', line 56

def similarTo
  @similarTo
end