rdf-vocab 3.1.14 → 3.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/VERSION +1 -1
- data/lib/rdf/vocab/as.rb +54 -10
- data/lib/rdf/vocab/bibo.rb +4 -1
- data/lib/rdf/vocab/dbo.rb +1099 -3
- data/lib/rdf/vocab/dcat.rb +34 -32
- data/lib/rdf/vocab/edm.rb +44 -5
- data/lib/rdf/vocab/extensions.rb +6 -6
- data/lib/rdf/vocab/gr.rb +256 -55
- data/lib/rdf/vocab/hydra.rb +1 -1
- data/lib/rdf/vocab/ma.rb +8 -2
- data/lib/rdf/vocab/org.rb +5 -1
- data/lib/rdf/vocab/pplan.rb +114 -16
- data/lib/rdf/vocab/premis.rb +142 -14
- data/lib/rdf/vocab/rdau.rb +272 -124
- data/lib/rdf/vocab/vcard.rb +122 -3
- data/lib/rdf/vocab/void.rb +16 -16
- data/lib/rdf/vocab.rb +5 -2
- data/spec/spec_helper.rb +11 -3
- metadata +24 -48
data/lib/rdf/vocab/hydra.rb
CHANGED
@@ -493,7 +493,7 @@ module RDF::Vocab
|
|
493
493
|
range: "http://www.w3.org/2000/01/rdf-schema#Class".freeze,
|
494
494
|
type: "http://www.w3.org/ns/hydra/core#Link".freeze
|
495
495
|
term :supportedOperation,
|
496
|
-
comment: "An operation supported by instances of the specific Hydra class or the target of the Hydra link".freeze,
|
496
|
+
comment: "An operation supported by instances of the specific Hydra class, or the target of the Hydra link, or IRI template.".freeze,
|
497
497
|
domainIncludes: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/ns/hydra/core#Class".freeze, "http://www.w3.org/ns/hydra/core#Link".freeze, "http://www.w3.org/ns/hydra/core#SupportedProperty".freeze, "http://www.w3.org/ns/hydra/core#TemplatedLink".freeze],
|
498
498
|
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
|
499
499
|
isDefinedBy: "http://www.w3.org/ns/hydra/core".freeze,
|
data/lib/rdf/vocab/ma.rb
CHANGED
@@ -81,7 +81,10 @@ module RDF::Vocab
|
|
81
81
|
property :averageBitRate,
|
82
82
|
comment: "Corresponds to 'averageBitRate' in the Ontology for Media Resources, expressed in kilobits/second.".freeze,
|
83
83
|
domain: term(
|
84
|
-
intersectionOf: list("http://www.w3.org/ns/ma-ont#MediaResource".freeze,
|
84
|
+
intersectionOf: list("http://www.w3.org/ns/ma-ont#MediaResource".freeze, term(
|
85
|
+
"http://www.w3.org/2002/07/owl#complementOf": "http://www.w3.org/ns/ma-ont#Image".freeze,
|
86
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
87
|
+
)),
|
85
88
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
86
89
|
),
|
87
90
|
range: "http://www.w3.org/2001/XMLSchema#decimal".freeze,
|
@@ -119,7 +122,10 @@ module RDF::Vocab
|
|
119
122
|
property :duration,
|
120
123
|
comment: "Corresponds to 'duration' in the Ontology for Media Resources.".freeze,
|
121
124
|
domain: term(
|
122
|
-
intersectionOf: list("http://www.w3.org/ns/ma-ont#MediaResource".freeze,
|
125
|
+
intersectionOf: list("http://www.w3.org/ns/ma-ont#MediaResource".freeze, term(
|
126
|
+
"http://www.w3.org/2002/07/owl#complementOf": "http://www.w3.org/ns/ma-ont#Image".freeze,
|
127
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
128
|
+
)),
|
123
129
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
124
130
|
),
|
125
131
|
range: "http://www.w3.org/2001/XMLSchema#decimal".freeze,
|
data/lib/rdf/vocab/org.rb
CHANGED
@@ -76,7 +76,11 @@ module RDF::Vocab
|
|
76
76
|
term :OrganizationalCollaboration,
|
77
77
|
comment: "A collaboration between two or more Organizations such as a project. It meets the criteria for being an Organization in that it has an identity and defining purpose independent of its particular members but is neither a formally recognized legal entity nor a sub-unit within some larger organization. Might typically have a shorter lifetime than the Organizations within it, but not necessarily. All members are `org:Organization`s rather than individuals and those Organizations can play particular roles within the venture. Alternative names: _Project_ _Venture_ _Endeavour_ _Consortium_ _Endeavour_".freeze,
|
78
78
|
equivalentClass: term(
|
79
|
-
intersectionOf: list("http://www.w3.org/ns/org#Organization".freeze,
|
79
|
+
intersectionOf: list("http://www.w3.org/ns/org#Organization".freeze, term(
|
80
|
+
allValuesFrom: "http://www.w3.org/ns/org#Organization".freeze,
|
81
|
+
onProperty: "http://www.w3.org/ns/org#hasMember".freeze,
|
82
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
83
|
+
)),
|
80
84
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
81
85
|
),
|
82
86
|
isDefinedBy: "http://www.w3.org/ns/org".freeze,
|
data/lib/rdf/vocab/pplan.rb
CHANGED
@@ -7,21 +7,119 @@ module RDF::Vocab
|
|
7
7
|
|
8
8
|
# Ontology definition
|
9
9
|
ontology :"http://purl.org/net/p-plan#",
|
10
|
-
|
11
|
-
"http://purl.org/dc/terms/
|
12
|
-
"http://purl.org/dc/terms/
|
13
|
-
"http://purl.org/dc/terms/
|
14
|
-
"http://purl.org/dc/terms/
|
15
|
-
"http://purl.org/dc/terms/
|
16
|
-
"http://
|
17
|
-
"http://
|
18
|
-
"http://
|
19
|
-
"http://
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
10
|
+
comment: "PROV extension for linking Plans and parts of plans to their respective executions. Created by Daniel Garijo and Yolanda Gil".freeze,
|
11
|
+
"http://purl.org/dc/terms/created": "2012-11-10".freeze,
|
12
|
+
"http://purl.org/dc/terms/creator": ["http://delicias.dia.fi.upm.es/members/DGarijo#me".freeze, "http://www.isi.edu/~gil/".freeze],
|
13
|
+
"http://purl.org/dc/terms/description": "PROV extension for linking Plans and parts of plans to their respective executions.".freeze,
|
14
|
+
"http://purl.org/dc/terms/license": "http://creativecommons.org/licenses/by-nc-sa/2.0/".freeze,
|
15
|
+
"http://purl.org/dc/terms/modified": "2013-05-17".freeze,
|
16
|
+
"http://purl.org/dc/terms/title": "The P-Plan ontology".freeze,
|
17
|
+
"http://purl.org/vocab/vann/preferredNamespacePrefix": "p-plan".freeze,
|
18
|
+
"http://purl.org/vocab/vann/preferredNamespaceUri": "http://purl.org/net/p-plan#".freeze,
|
19
|
+
"http://www.w3.org/2002/07/owl#versionInfo": "1.2".freeze,
|
20
|
+
type: ["http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "http://www.w3.org/2002/07/owl#Ontology".freeze, "http://www.w3.org/2002/07/owl#Thing".freeze]
|
21
|
+
|
22
|
+
# Class definitions
|
23
|
+
term :Activity,
|
24
|
+
comment: "A p-plan:Activity represents the execution process planned in a p-plan:Step".freeze,
|
25
|
+
isDefinedBy: "http://purl.org/net/p-plan#".freeze,
|
26
|
+
label: "Activity".freeze,
|
27
|
+
subClassOf: "http://www.w3.org/ns/prov#Activity".freeze,
|
28
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
29
|
+
term :Bundle,
|
30
|
+
"http://www.w3.org/ns/prov#definition": "A p-plan:Bundle is a specific type of prov:Bundle that contains the provenance assertions of the execution of a p-plan:Plan".freeze,
|
31
|
+
isDefinedBy: "http://purl.org/net/p-plan#".freeze,
|
32
|
+
label: "Bundle".freeze,
|
33
|
+
subClassOf: "http://www.w3.org/ns/prov#Bundle".freeze,
|
34
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
35
|
+
term :Entity,
|
36
|
+
"http://www.w3.org/ns/prov#definition": "a p-plan:Entity represents the input of the execution of a p-plan:Activity. It corresponds to a p-plan:Variable.".freeze,
|
37
|
+
isDefinedBy: "http://purl.org/net/p-plan#".freeze,
|
38
|
+
label: "Entity".freeze,
|
39
|
+
subClassOf: "http://www.w3.org/ns/prov#Entity".freeze,
|
40
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
41
|
+
term :Plan,
|
42
|
+
"http://www.w3.org/ns/prov#definition": "A p-plan:Plan is a specific type of prov:Plan. It is composed of smaller steps that use and produce Variables.".freeze,
|
43
|
+
isDefinedBy: "http://purl.org/net/p-plan#".freeze,
|
44
|
+
label: "Plan".freeze,
|
45
|
+
subClassOf: "http://www.w3.org/ns/prov#Plan".freeze,
|
46
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
47
|
+
term :Step,
|
48
|
+
"http://www.w3.org/ns/prov#definition": "A p-plan:Step represents the planned execution activity".freeze,
|
49
|
+
isDefinedBy: "http://purl.org/net/p-plan#".freeze,
|
50
|
+
label: "Step".freeze,
|
51
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
52
|
+
term :Variable,
|
53
|
+
"http://www.w3.org/ns/prov#definition": "A p-plan:Variable represents a description of the input of the planned Activity (p-plan:Step)".freeze,
|
54
|
+
isDefinedBy: "http://purl.org/net/p-plan#".freeze,
|
55
|
+
label: "Variable".freeze,
|
56
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
57
|
+
|
58
|
+
# Property definitions
|
59
|
+
property :correspondsToStep,
|
60
|
+
domain: "http://purl.org/net/p-plan#Activity".freeze,
|
61
|
+
"http://www.w3.org/ns/prov#definition": "p-plan:correspondsToStep links a p-plan:Activity to its planned p-plan:Step".freeze,
|
62
|
+
isDefinedBy: "http://purl.org/net/p-plan#".freeze,
|
63
|
+
label: "correspondsToStep".freeze,
|
64
|
+
range: "http://purl.org/net/p-plan#Step".freeze,
|
65
|
+
type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
|
66
|
+
property :correspondsToVariable,
|
67
|
+
domain: "http://purl.org/net/p-plan#Entity".freeze,
|
68
|
+
"http://www.w3.org/ns/prov#definition": "p-plan:correspondsToVariable binds a p-plan:Entity (used by a p-plan:Activity in the execution of a plan) to the p-plan:Variable it represented it in the p-plan:Plan.".freeze,
|
69
|
+
isDefinedBy: "http://purl.org/net/p-plan#".freeze,
|
70
|
+
label: "correspondsToVariable".freeze,
|
71
|
+
range: "http://purl.org/net/p-plan#Variable".freeze,
|
72
|
+
type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
|
73
|
+
property :hasInputVar,
|
74
|
+
domain: "http://purl.org/net/p-plan#Step".freeze,
|
75
|
+
"http://www.w3.org/ns/prov#definition": "p-plan:hasInputVar binds a p-plan:Step to the p-plan:Variable that takes as input for the planned execution".freeze,
|
76
|
+
isDefinedBy: "http://purl.org/net/p-plan#".freeze,
|
77
|
+
label: "hasInputVar".freeze,
|
78
|
+
range: "http://purl.org/net/p-plan#Variable".freeze,
|
79
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
80
|
+
property :hasOutputVar,
|
81
|
+
domain: "http://purl.org/net/p-plan#Step".freeze,
|
82
|
+
"http://www.w3.org/ns/prov#definition": "p-plan:hasOutputVar binds a p-plan:Step to the p-plan:Variable that will be produced as output in the planned execution".freeze,
|
83
|
+
inverseOf: "http://purl.org/net/p-plan#isOutputVarOf".freeze,
|
84
|
+
isDefinedBy: "http://purl.org/net/p-plan#".freeze,
|
85
|
+
label: "hasOutputVar".freeze,
|
86
|
+
range: "http://purl.org/net/p-plan#Variable".freeze,
|
87
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
88
|
+
property :isInputVarOf,
|
89
|
+
domain: "http://purl.org/net/p-plan#Variable".freeze,
|
90
|
+
"http://www.w3.org/ns/prov#definition": "p-plan:isInputVarOf links an input variable of a step to the step.".freeze,
|
91
|
+
inverseOf: "http://purl.org/net/p-plan#hasInputVar".freeze,
|
92
|
+
isDefinedBy: "http://purl.org/net/p-plan#".freeze,
|
93
|
+
label: "isInputVarOf".freeze,
|
94
|
+
range: "http://purl.org/net/p-plan#Step".freeze,
|
95
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
96
|
+
property :isOutputVarOf,
|
97
|
+
domain: "http://purl.org/net/p-plan#Variable".freeze,
|
98
|
+
"http://www.w3.org/ns/prov#definition": "p-plan:isOutputVarOf is intended to link an output variable of a step to the step.".freeze,
|
99
|
+
isDefinedBy: "http://purl.org/net/p-plan#".freeze,
|
100
|
+
label: "isOutputVarOf".freeze,
|
101
|
+
range: "http://purl.org/net/p-plan#Step".freeze,
|
102
|
+
type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
|
103
|
+
property :isPreceededBy,
|
104
|
+
comment: "http://purl.org/net/p-plan#".freeze,
|
105
|
+
domain: "http://purl.org/net/p-plan#Step".freeze,
|
106
|
+
isDefinedBy: "Property that asserts which Step preceeds the current one. ".freeze,
|
107
|
+
label: "isPreceededBy".freeze,
|
108
|
+
range: "http://purl.org/net/p-plan#Step".freeze,
|
109
|
+
type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze]
|
110
|
+
property :isStepOfPlan,
|
111
|
+
domain: "http://purl.org/net/p-plan#Step".freeze,
|
112
|
+
"http://www.w3.org/ns/prov#definition": "p-plan:isStepOfPlan links a p-plan:Step to the p-plan:Plan which it corresponds to.".freeze,
|
113
|
+
isDefinedBy: "http://purl.org/net/p-plan#".freeze,
|
114
|
+
label: "isStepOfPlan".freeze,
|
115
|
+
range: "http://purl.org/net/p-plan#Plan".freeze,
|
116
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
117
|
+
property :isVariableOfPlan,
|
118
|
+
domain: "http://purl.org/net/p-plan#Variable".freeze,
|
119
|
+
"http://www.w3.org/ns/prov#definition": "p-plan:IsVariableOfPlan binds a p-plan:Variable to the p-plan:Plan it corresponds to.".freeze,
|
120
|
+
isDefinedBy: "http://purl.org/net/p-plan#".freeze,
|
121
|
+
label: "isVariableofPlan".freeze,
|
122
|
+
range: "http://purl.org/net/p-plan#Plan".freeze,
|
123
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
26
124
|
end
|
27
125
|
end
|
data/lib/rdf/vocab/premis.rb
CHANGED
@@ -49,7 +49,15 @@ module RDF::Vocab
|
|
49
49
|
comment: ["Creation / Maintenance Notes: A preservation repository should never refer to content that it does not control. Therefore, the PREMIS working group assumed that the repository will always assign the contentLocation, probably by program.".freeze, "Definition: Information needed to retrieve a file from the storage system, or to access a bitstream within a file.".freeze, "Usage Notes: If the preservation repository uses the objectIdentifier as a handle for retrieving data, contentLocation is implicit and does not need to be recorded.".freeze],
|
50
50
|
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
|
51
51
|
subClassOf: term(
|
52
|
-
intersectionOf: list(
|
52
|
+
intersectionOf: list(term(
|
53
|
+
cardinality: "1".freeze,
|
54
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasContentLocationType".freeze,
|
55
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
56
|
+
), term(
|
57
|
+
cardinality: "1".freeze,
|
58
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasContentLocationValue".freeze,
|
59
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
60
|
+
)),
|
53
61
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
54
62
|
),
|
55
63
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
@@ -57,7 +65,15 @@ module RDF::Vocab
|
|
57
65
|
comment: ["Definition: Information about the copyright status of the object(s).".freeze, "Usage Notes: When rights basis is a copyright, copyrightInformation should be provided.\nRepositories may need to extend this with more detailed information. See the California Digital Library's copyrightMD schema (www.cdlib.org/inside/projects/rights/schema/) for an example of a more detailed scheme.".freeze],
|
58
66
|
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
|
59
67
|
subClassOf: ["http://www.loc.gov/premis/rdf/v1#RightsStatement".freeze, term(
|
60
|
-
intersectionOf: list(
|
68
|
+
intersectionOf: list(term(
|
69
|
+
cardinality: "1".freeze,
|
70
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasCopyrightStatus".freeze,
|
71
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
72
|
+
), term(
|
73
|
+
cardinality: "1".freeze,
|
74
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasCopyrightJurisdiction".freeze,
|
75
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
76
|
+
)),
|
61
77
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
62
78
|
)],
|
63
79
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
@@ -66,7 +82,19 @@ module RDF::Vocab
|
|
66
82
|
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
|
67
83
|
subClassOf: term(
|
68
84
|
type: "http://www.w3.org/2002/07/owl#Class".freeze,
|
69
|
-
unionOf: list(
|
85
|
+
unionOf: list(term(
|
86
|
+
cardinality: "1".freeze,
|
87
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasCreatingApplicationName".freeze,
|
88
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
89
|
+
), term(
|
90
|
+
maxCardinality: "1".freeze,
|
91
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasCreatingApplicationVersion".freeze,
|
92
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
93
|
+
), term(
|
94
|
+
maxCardinality: "1".freeze,
|
95
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasDateCreatedByApplication".freeze,
|
96
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
97
|
+
))
|
70
98
|
),
|
71
99
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
72
100
|
term :Dependency,
|
@@ -74,7 +102,15 @@ module RDF::Vocab
|
|
74
102
|
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
|
75
103
|
subClassOf: term(
|
76
104
|
type: "http://www.w3.org/2002/07/owl#Class".freeze,
|
77
|
-
unionOf: list(
|
105
|
+
unionOf: list(term(
|
106
|
+
maxCardinality: "1".freeze,
|
107
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasIdentifier".freeze,
|
108
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
109
|
+
), term(
|
110
|
+
minCardinality: "1".freeze,
|
111
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasDependencyName".freeze,
|
112
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
113
|
+
))
|
78
114
|
),
|
79
115
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
80
116
|
term :Environment,
|
@@ -90,7 +126,19 @@ module RDF::Vocab
|
|
90
126
|
comment: ["Entity properties:\nMust be related to one or more objects.\nCan be related to one or more agents.\nLinks between entities may be recorded from either direction and need not be bi-directional.".freeze, "The Event entity aggregates information about an action that involves one or more Object entities. Metadata about an Event would normally be recorded and stored separately from the digital object.\nWhether or not a preservation repository records an Event depends upon the importance of the event. Actions that modify objects should always be recorded. Other actions such as copying an object for backup purposes may be recorded in system logs or an audit trail but not necessarily in\nan Event entity.\nMandatory semantic units are: eventIdentifier, eventType, and eventDateTime.".freeze],
|
91
127
|
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
|
92
128
|
subClassOf: ["http://www.loc.gov/premis/rdf/v1#PremisEntity".freeze, term(
|
93
|
-
intersectionOf: list(
|
129
|
+
intersectionOf: list(term(
|
130
|
+
cardinality: "1".freeze,
|
131
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasEventType".freeze,
|
132
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
133
|
+
), term(
|
134
|
+
maxCardinality: "1".freeze,
|
135
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasIdentifier".freeze,
|
136
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
137
|
+
), term(
|
138
|
+
cardinality: "1".freeze,
|
139
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasEventDateTime".freeze,
|
140
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
141
|
+
)),
|
94
142
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
95
143
|
)],
|
96
144
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
@@ -126,7 +174,15 @@ module RDF::Vocab
|
|
126
174
|
comment: ["Creation / Maintenance Notes: Automatically calculated and recorded by repository.".freeze, "Definition: Information used to verify whether an object has been altered in an undocumented or unauthorized way.".freeze, "Usage Notes: To perform a fixity check, a message digest calculated at some earlier time is compared with a message digest calculated at a later time. If the digests are the same, the object was not altered in the interim. Recommended practice is to use two or more message digests calculated by different algorithms. (Note that the terms “message digest” and “checksum” are commonly used interchangeably. However, the term “checksum” is more correctly used for the product of a cyclical redundancy check (CRC), whereas the term “message digest” refers to the result of a cryptographic hash function, which is what is referred to here.)\nThe act of performing a fixity check and the date it occurred would be recorded as an Event. The result of the check would be recorded as the eventOutcome. Therefore, only the messageDigestAlgorithm and messageDigest need to be recorded as objectCharacteristics for future comparison.\nRepresentation level: It could be argued that if a representation consists of a single file or if all the files comprised by a representation are combined (e.g., zipped) into a single file, then a fixity check could be performed on the representation. However, in both cases the fixity check is actually being performed on a file, which in this case happens to be coincidental with a representation.\nBitstream level: Message digests can be computed for bitstreams although they are not as common as with files. For example, the JPX format, which is a JPEG2000 format, supports the inclusion of MD5 or SHA-1 message digests in internal metadata that was calculated on any range of bytes of the file.".freeze],
|
127
175
|
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
|
128
176
|
subClassOf: term(
|
129
|
-
intersectionOf: list(
|
177
|
+
intersectionOf: list(term(
|
178
|
+
cardinality: "1".freeze,
|
179
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasMessageDigestAlgorithm".freeze,
|
180
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
181
|
+
), term(
|
182
|
+
cardinality: "1".freeze,
|
183
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasMessageDigest".freeze,
|
184
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
185
|
+
)),
|
130
186
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
131
187
|
),
|
132
188
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
@@ -135,7 +191,15 @@ module RDF::Vocab
|
|
135
191
|
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
|
136
192
|
subClassOf: term(
|
137
193
|
type: "http://www.w3.org/2002/07/owl#Class".freeze,
|
138
|
-
unionOf: list(
|
194
|
+
unionOf: list(term(
|
195
|
+
maxCardinality: "1".freeze,
|
196
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasFormatDesignation".freeze,
|
197
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
198
|
+
), term(
|
199
|
+
maxCardinality: "1".freeze,
|
200
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasFormatRegistry".freeze,
|
201
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
202
|
+
))
|
139
203
|
),
|
140
204
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
141
205
|
term :FormatDesignation,
|
@@ -164,7 +228,15 @@ module RDF::Vocab
|
|
164
228
|
comment: ["Creation / Maintenance Notes: Hardware environment information can be very difficult to provide. Many different hardware environments may apply; there are a huge number of combinations of maker and type of CPU, memory, video drivers, and so on. Although at least one hardware environment should be recorded, it is not necessary to record them all and each repository will have to make its own decisions about which hardware environments to record.\nBecause of the difficulty recording this information comprehensively, it would be optimal if central registries of environment information existed. In many cases the environment of a file object is directly associated with the format, making registry lookup by format feasible. In the absence of a global mechanism, repositories may be forced to develop their own local “registries” relating format to hwEnvironment.".freeze, "Definition: Hardware components needed by the software referenced in swName or the human user of the referenced software.".freeze],
|
165
229
|
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
|
166
230
|
subClassOf: term(
|
167
|
-
intersectionOf: list(
|
231
|
+
intersectionOf: list(term(
|
232
|
+
cardinality: "1".freeze,
|
233
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasHardwareType".freeze,
|
234
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
235
|
+
), term(
|
236
|
+
cardinality: "1".freeze,
|
237
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasHardwareName".freeze,
|
238
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
239
|
+
)),
|
168
240
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
169
241
|
),
|
170
242
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
@@ -245,7 +317,15 @@ module RDF::Vocab
|
|
245
317
|
comment: [" Definition: The identifier and sequential context of the related resource".freeze, "Usage Notes: The related object may or may not be held within the preservation repository. Recommended practice is that objects reside within the repository unless there is a good reason to reference an object outside. Internal and external references should be clear.".freeze],
|
246
318
|
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
|
247
319
|
subClassOf: term(
|
248
|
-
intersectionOf: list(
|
320
|
+
intersectionOf: list(term(
|
321
|
+
cardinality: "1".freeze,
|
322
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasRelatedObject".freeze,
|
323
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
324
|
+
), term(
|
325
|
+
cardinality: "1".freeze,
|
326
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasRelatedObjectSequence".freeze,
|
327
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
328
|
+
)),
|
249
329
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
250
330
|
),
|
251
331
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
@@ -268,7 +348,15 @@ module RDF::Vocab
|
|
268
348
|
comment: "Definition: The action(s) that the granting agency has allowed the repository.".freeze,
|
269
349
|
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
|
270
350
|
subClassOf: [term(
|
271
|
-
intersectionOf: list(
|
351
|
+
intersectionOf: list(term(
|
352
|
+
cardinality: "1".freeze,
|
353
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasAct".freeze,
|
354
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
355
|
+
), term(
|
356
|
+
maxCardinality: "1".freeze,
|
357
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasTermOfGrant".freeze,
|
358
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
359
|
+
)),
|
272
360
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
273
361
|
), term(
|
274
362
|
maxCardinality: "1".freeze,
|
@@ -293,7 +381,23 @@ module RDF::Vocab
|
|
293
381
|
comment: ["Definition: Information needed to use a digital signature to authenticate the signer of an object and/or the information contained in the object.".freeze, "Rationale: A repository may have a policy of generating digital signatures for files on ingest, or may have a need to store and later validate incoming digital signatures.".freeze, "Usage Notes: Several of the semantic components of signatureInformation are taken from the W3C’s XML-Signature Syntax and Processing; see www.w3.org/TR/2002/REC-xmldsig-core-20020212/ for more information on the structure and application of these semantic units.".freeze],
|
294
382
|
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
|
295
383
|
subClassOf: term(
|
296
|
-
intersectionOf: list(
|
384
|
+
intersectionOf: list(term(
|
385
|
+
cardinality: "1".freeze,
|
386
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasSignatureEncoding".freeze,
|
387
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
388
|
+
), term(
|
389
|
+
cardinality: "1".freeze,
|
390
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasSignatureMethod".freeze,
|
391
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
392
|
+
), term(
|
393
|
+
cardinality: "1".freeze,
|
394
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasSignatureValidationRules".freeze,
|
395
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
396
|
+
), term(
|
397
|
+
cardinality: "1".freeze,
|
398
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasSignatureValue".freeze,
|
399
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
400
|
+
)),
|
297
401
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
298
402
|
),
|
299
403
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
@@ -305,7 +409,15 @@ module RDF::Vocab
|
|
305
409
|
comment: ["Creation / Maintenance Notes: If recording this explicitly, many different software environments may apply; for example, a particular object such as a PDF file may be viewable by several versions of several applications running under several operating systems and operating system versions. Although at least one software environment should be recorded, it is not necessary to record them all and each repository will have to make its own decisions about which software environments to record.\nAlso, what appears to the user as a single rendering program can have many dependencies, including system utilities, runtime libraries, and so on, which each might have their own dependencies in turn.\nAs with environment, metadata may be more efficiently managed in conjunction with a format registry either internal or external to a repository. In the absence of a global mechanism, repositories may be forced to develop their own local “registries” relating format to software environment.".freeze, "Definition: Software required to render or use the object.".freeze],
|
306
410
|
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
|
307
411
|
subClassOf: term(
|
308
|
-
intersectionOf: list(
|
412
|
+
intersectionOf: list(term(
|
413
|
+
cardinality: "1".freeze,
|
414
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasSoftwareType".freeze,
|
415
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
416
|
+
), term(
|
417
|
+
cardinality: "1".freeze,
|
418
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasSoftwareName".freeze,
|
419
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
420
|
+
)),
|
309
421
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
310
422
|
),
|
311
423
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
@@ -313,7 +425,15 @@ module RDF::Vocab
|
|
313
425
|
comment: ["Definition: Information about the statute allowing use of the object.".freeze, "Usage Notes: When rights basis is a statute, statuteInformation should be provided.".freeze],
|
314
426
|
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
|
315
427
|
subClassOf: ["http://www.loc.gov/premis/rdf/v1#RightsStatement".freeze, term(
|
316
|
-
intersectionOf: list(
|
428
|
+
intersectionOf: list(term(
|
429
|
+
cardinality: "1".freeze,
|
430
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasStatuteCitation".freeze,
|
431
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
432
|
+
), term(
|
433
|
+
cardinality: "1".freeze,
|
434
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasStatuteJurisdiction".freeze,
|
435
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
436
|
+
)),
|
317
437
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
318
438
|
)],
|
319
439
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
@@ -322,7 +442,15 @@ module RDF::Vocab
|
|
322
442
|
"http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
|
323
443
|
subClassOf: term(
|
324
444
|
type: "http://www.w3.org/2002/07/owl#Class".freeze,
|
325
|
-
unionOf: list(
|
445
|
+
unionOf: list(term(
|
446
|
+
maxCardinality: "1".freeze,
|
447
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasContentLocation".freeze,
|
448
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
449
|
+
), term(
|
450
|
+
maxCardinality: "1".freeze,
|
451
|
+
onProperty: "http://www.loc.gov/premis/rdf/v1#hasStorageMedium".freeze,
|
452
|
+
type: "http://www.w3.org/2002/07/owl#Restriction".freeze
|
453
|
+
))
|
326
454
|
),
|
327
455
|
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
328
456
|
term :TermOfGrant,
|