rdf-vocab 2.2.9 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -1
  3. data/lib/rdf/vocab.rb +21 -2
  4. data/lib/rdf/vocab/acl.rb +21 -5
  5. data/lib/rdf/vocab/bf2.rb +812 -812
  6. data/lib/rdf/vocab/bibframe.rb +78 -78
  7. data/lib/rdf/vocab/bibo.rb +239 -247
  8. data/lib/rdf/vocab/cc.rb +4 -9
  9. data/lib/rdf/vocab/cert.rb +44 -45
  10. data/lib/rdf/vocab/cnt.rb +5 -5
  11. data/lib/rdf/vocab/crm.rb +344 -344
  12. data/lib/rdf/vocab/datacite.rb +152 -58
  13. data/lib/rdf/vocab/dc.rb +439 -439
  14. data/lib/rdf/vocab/dc11.rb +93 -93
  15. data/lib/rdf/vocab/dcat.rb +152 -101
  16. data/lib/rdf/vocab/dcmitype.rb +75 -75
  17. data/lib/rdf/vocab/disco.rb +169 -101
  18. data/lib/rdf/vocab/doap.rb +179 -159
  19. data/lib/rdf/vocab/dwc.rb +1648 -1648
  20. data/lib/rdf/vocab/ebucore.rb +373 -124
  21. data/lib/rdf/vocab/edm.rb +216 -139
  22. data/lib/rdf/vocab/exif.rb +208 -208
  23. data/lib/rdf/vocab/fcrepo4.rb +57 -134
  24. data/lib/rdf/vocab/foaf.rb +166 -166
  25. data/lib/rdf/vocab/geo.rb +3 -5
  26. data/lib/rdf/vocab/geojson.rb +16 -16
  27. data/lib/rdf/vocab/geonames.rb +2827 -3455
  28. data/lib/rdf/vocab/gr.rb +699 -254
  29. data/lib/rdf/vocab/gs1.rb +1765 -1761
  30. data/lib/rdf/vocab/ht.rb +23 -23
  31. data/lib/rdf/vocab/hydra.rb +104 -104
  32. data/lib/rdf/vocab/ical.rb +674 -127
  33. data/lib/rdf/vocab/identifiers.rb +120 -212
  34. data/lib/rdf/vocab/iiif.rb +25 -37
  35. data/lib/rdf/vocab/jsonld.rb +11 -11
  36. data/lib/rdf/vocab/ldp.rb +79 -69
  37. data/lib/rdf/vocab/lrmi.rb +63 -63
  38. data/lib/rdf/vocab/ma.rb +47 -132
  39. data/lib/rdf/vocab/mads.rb +83 -28
  40. data/lib/rdf/vocab/marc_relators.rb +12 -2201
  41. data/lib/rdf/vocab/mo.rb +920 -836
  42. data/lib/rdf/vocab/mods.rb +6 -13
  43. data/lib/rdf/vocab/oa.rb +82 -72
  44. data/lib/rdf/vocab/og.rb +50 -50
  45. data/lib/rdf/vocab/ogc.rb +9 -8
  46. data/lib/rdf/vocab/ore.rb +22 -19
  47. data/lib/rdf/vocab/org.rb +217 -167
  48. data/lib/rdf/vocab/pplan.rb +45 -45
  49. data/lib/rdf/vocab/premis.rb +855 -582
  50. data/lib/rdf/vocab/premis_event_type.rb +148 -70
  51. data/lib/rdf/vocab/prov.rb +842 -806
  52. data/lib/rdf/vocab/rightsstatements.rb +140 -157
  53. data/lib/rdf/vocab/rsa.rb +16 -13
  54. data/lib/rdf/vocab/rss.rb +10 -10
  55. data/lib/rdf/vocab/schema.rb +1448 -1448
  56. data/lib/rdf/vocab/sioc.rb +158 -159
  57. data/lib/rdf/vocab/sioc_services.rb +14 -14
  58. data/lib/rdf/vocab/sioct.rb +70 -70
  59. data/lib/rdf/vocab/skos.rb +97 -93
  60. data/lib/rdf/vocab/skosxl.rb +29 -24
  61. data/lib/rdf/vocab/v.rb +88 -90
  62. data/lib/rdf/vocab/vcard.rb +340 -196
  63. data/lib/rdf/vocab/vmd.rb +88 -90
  64. data/lib/rdf/vocab/vs.rb +15 -15
  65. data/lib/rdf/vocab/wdrs.rb +30 -30
  66. data/lib/rdf/vocab/wot.rb +47 -47
  67. data/lib/rdf/vocab/xhtml.rb +3 -3
  68. data/lib/rdf/vocab/xhv.rb +37 -123
  69. data/lib/rdf/vocab/xkos.rb +110 -107
  70. data/spec/vocab_spec.rb +6 -6
  71. metadata +19 -31
@@ -11,189 +11,177 @@ module RDF::Vocab
11
11
 
12
12
  # Ontology definition
13
13
  ontology :"http://iiif.io/api/presentation/2#",
14
- :"owl:versionInfo" => %(2015-12-13 23:00:00Z).freeze,
14
+ "owl:versionInfo": "2015-12-13 23:00:00Z".freeze,
15
15
  type: "owl:Ontology".freeze
16
16
 
17
17
  # Class definitions
18
18
  term :AnnotationList,
19
19
  comment: %(AnnotationLists are an ordered list of Annotation objects. Typically all Annnotations in a list target the same Canvas).freeze,
20
+ isDefinedBy: "iiif:".freeze,
20
21
  label: "AnnotationList".freeze,
21
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
22
22
  type: "rdfs:Class".freeze
23
23
  term :Canvas,
24
24
  comment: %(The canvas represents an individual page or view and acts as a central point for laying out the different content resources that make up the display.).freeze,
25
+ isDefinedBy: "iiif:".freeze,
25
26
  label: "Canvas".freeze,
26
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
27
27
  type: "rdfs:Class".freeze
28
28
  term :Collection,
29
29
  comment: %(Collections are used to list the manifests available for viewing, and to describe the structures, hierarchies or collections that the physical objects are part of.).freeze,
30
+ isDefinedBy: "iiif:".freeze,
30
31
  label: "Collection".freeze,
31
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
32
32
  type: "rdfs:Class".freeze
33
33
  term :Layer,
34
34
  comment: %(Layers are lists of AnnotationLists to group them together, for example to create the set of lists that make up a particular translation/edition of a text).freeze,
35
+ isDefinedBy: "iiif:".freeze,
35
36
  label: "Layer".freeze,
36
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
37
37
  type: "rdfs:Class".freeze
38
38
  term :Manifest,
39
39
  comment: %(The manifest resource represents a single object and any intellectual work or works embodied within that object).freeze,
40
+ isDefinedBy: "iiif:".freeze,
40
41
  label: "Manifest".freeze,
41
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
42
42
  type: "rdfs:Class".freeze
43
43
  term :Range,
44
44
  comment: %(Ranges describe additional structure within an object, such as newspaper articles that span pages, the range of non-content-bearing pages at the beginning of a work, or chapters within a book).freeze,
45
+ isDefinedBy: "iiif:".freeze,
45
46
  label: "Range".freeze,
46
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
47
47
  type: "rdfs:Class".freeze
48
48
  term :Sequence,
49
49
  comment: %(The sequence conveys the ordering of the views of the object.).freeze,
50
+ isDefinedBy: "iiif:".freeze,
50
51
  label: "Sequence".freeze,
51
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
52
52
  type: "rdfs:Class".freeze
53
53
  term :ViewingDirection,
54
+ isDefinedBy: "iiif:".freeze,
54
55
  label: "ViewingDirection".freeze,
55
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
56
56
  type: "rdfs:Class".freeze
57
57
  term :ViewingHint,
58
+ isDefinedBy: "iiif:".freeze,
58
59
  label: "ViewingHint".freeze,
59
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
60
60
  type: "rdfs:Class".freeze
61
61
  term :Zone,
62
62
  comment: %(Used to group annotations together in an area of a Canvas, for example to model columns, foldouts or palimpsests; Note that Zones are not currently used in the IIIF Presentation API.).freeze,
63
+ isDefinedBy: "iiif:".freeze,
63
64
  label: "Zone".freeze,
64
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
65
65
  subClassOf: "iiif:Canvas".freeze,
66
66
  type: "rdfs:Class".freeze
67
67
 
68
68
  # Property definitions
69
69
  property :attributionLabel,
70
70
  comment: %(A string containing an attribution description that must be displayed when using the resource).freeze,
71
+ isDefinedBy: "iiif:".freeze,
71
72
  label: "attributionLabel".freeze,
72
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
73
73
  type: "rdf:Property".freeze
74
74
  property :hasAnnotations,
75
+ isDefinedBy: "iiif:".freeze,
75
76
  label: "hasAnnotations".freeze,
76
77
  range: "rdf:List".freeze,
77
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
78
78
  type: "rdf:Property".freeze
79
79
  property :hasCanvases,
80
+ isDefinedBy: "iiif:".freeze,
80
81
  label: "hasCanvases".freeze,
81
82
  range: "rdf:List".freeze,
82
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
83
83
  type: "rdf:Property".freeze
84
84
  property :hasCollections,
85
85
  domain: "iiif:Collection".freeze,
86
+ isDefinedBy: "iiif:".freeze,
86
87
  label: "hasCollections".freeze,
87
88
  range: "rdf:List".freeze,
88
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
89
89
  type: "rdf:Property".freeze
90
90
  property :hasContentLayer,
91
91
  comment: %(A link from a Range to a Layer that provides the content resources of that Range).freeze,
92
92
  domain: "iiif:Range".freeze,
93
+ isDefinedBy: "iiif:".freeze,
93
94
  label: "hasContentLayer".freeze,
94
95
  range: "iiif:Layer".freeze,
95
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
96
96
  type: "rdf:Property".freeze
97
97
  property :hasImageAnnotations,
98
+ isDefinedBy: "iiif:".freeze,
98
99
  label: "hasImageAnnotations".freeze,
99
100
  range: "rdf:List".freeze,
100
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
101
101
  subPropertyOf: "iiif:hasAnnotations".freeze,
102
102
  type: "rdf:Property".freeze
103
103
  property :hasLists,
104
+ isDefinedBy: "iiif:".freeze,
104
105
  label: "hasLists".freeze,
105
106
  range: "rdf:List".freeze,
106
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
107
107
  type: "rdf:Property".freeze
108
108
  property :hasManifests,
109
109
  domain: "iiif:Collection".freeze,
110
+ isDefinedBy: "iiif:".freeze,
110
111
  label: "hasManifests".freeze,
111
112
  range: "rdf:List".freeze,
112
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
113
113
  type: "rdf:Property".freeze
114
114
  property :hasRanges,
115
+ isDefinedBy: "iiif:".freeze,
115
116
  label: "hasRanges".freeze,
116
117
  range: "rdf:List".freeze,
117
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
118
118
  type: "rdf:Property".freeze
119
119
  property :hasSequences,
120
120
  domain: "iiif:Manifest".freeze,
121
+ isDefinedBy: "iiif:".freeze,
121
122
  label: "hasSequences".freeze,
122
123
  range: "rdf:List".freeze,
123
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
124
124
  type: "rdf:Property".freeze
125
125
  property :hasStartCanvas,
126
126
  comment: %(A link from a Manifest or Sequence to the Canvas that the rendering agent should initialize their view with.).freeze,
127
+ isDefinedBy: "iiif:".freeze,
127
128
  label: "hasStartCanvas".freeze,
128
129
  range: "iiif:Canvas".freeze,
129
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
130
130
  type: "rdf:Property".freeze
131
131
  property :metadataLabels,
132
132
  comment: %(An rdf:List of label/value pairs providing descriptive metadata about the resource, intended for human audience).freeze,
133
+ isDefinedBy: "iiif:".freeze,
133
134
  label: "metadataLabels".freeze,
134
135
  range: "rdf:List".freeze,
135
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
136
136
  type: "rdf:Property".freeze
137
137
  property :viewingDirection,
138
138
  comment: %(References the sc:ViewingDirection that defines the direction that the resource should be viewed in).freeze,
139
+ isDefinedBy: "iiif:".freeze,
139
140
  label: "viewingDirection".freeze,
140
141
  range: "iiif:ViewingDirection".freeze,
141
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
142
142
  type: "rdf:Property".freeze
143
143
  property :viewingHint,
144
144
  comment: %(A hint to a user agent as to how to render the resource).freeze,
145
+ isDefinedBy: "iiif:".freeze,
145
146
  label: "viewingHint".freeze,
146
147
  range: "iiif:ViewingHint".freeze,
147
- :"rdfs:isDefinedBy" => %(iiif:).freeze,
148
148
  type: "rdf:Property".freeze
149
149
 
150
150
  # Extra definitions
151
151
  term :bottomToTopDirection,
152
152
  comment: %(Bottom-to-Top Viewing Direction).freeze,
153
- label: "bottomToTopDirection".freeze,
154
153
  type: "iiif:ViewingDirection".freeze
155
154
  term :continuousHint,
156
155
  comment: %(Each canvas represents a segment of a continuous object such as a long scroll).freeze,
157
- label: "continuousHint".freeze,
158
156
  type: "iiif:ViewingHint".freeze
159
157
  term :facingPagesHint,
160
158
  comment: %(Canvases with this hint depict both parts of an opening.).freeze,
161
- label: "facingPagesHint".freeze,
162
159
  type: "iiif:ViewingHint".freeze
163
160
  term :individualsHint,
164
161
  comment: %(Each canvas represents a separate individual object, and should not have transitions).freeze,
165
- label: "individualsHint".freeze,
166
162
  type: "iiif:ViewingHint".freeze
167
163
  term :leftToRightDirection,
168
164
  comment: %(Left-to-Right Viewing Direction).freeze,
169
- label: "leftToRightDirection".freeze,
170
165
  type: "iiif:ViewingDirection".freeze
171
166
  term :multiPartHint,
172
167
  comment: %(Collections with this hint consist of multiple manifests that each form part of a logical whole.).freeze,
173
- label: "multiPartHint".freeze,
174
168
  type: "iiif:ViewingHint".freeze
175
169
  term :nonPagedHint,
176
170
  comment: %(Viewing Hint that the Canvas MUST NOT be presented in a page turner).freeze,
177
- label: "nonPagedHint".freeze,
178
171
  type: "iiif:ViewingHint".freeze
179
172
  term :pagedHint,
180
173
  comment: %(Viewing Hint that object has canvases that represent pages that can be turned).freeze,
181
- label: "pagedHint".freeze,
182
174
  type: "iiif:ViewingHint".freeze
183
175
  term :painting,
184
- label: "painting".freeze,
185
176
  type: "oa:Motivation".freeze
186
177
  term :rightToLeftDirection,
187
178
  comment: %(Right-to-Left Viewing Direction).freeze,
188
- label: "rightToLeftDirection".freeze,
189
179
  type: "iiif:ViewingDirection".freeze
190
180
  term :topHint,
191
181
  comment: %(The topmost range in a nested hierarchy, such as a table of contents).freeze,
192
- label: "topHint".freeze,
193
182
  type: "iiif:ViewingHint".freeze
194
183
  term :topToBottomDirection,
195
184
  comment: %(Top-to-Bottom Viewing Direction).freeze,
196
- label: "topToBottomDirection".freeze,
197
185
  type: "iiif:ViewingDirection".freeze
198
186
  end
199
187
  end
@@ -10,7 +10,7 @@ module RDF::Vocab
10
10
  class JSONLD < RDF::StrictVocabulary("http://www.w3.org/ns/json-ld#")
11
11
 
12
12
  # Ontology definition
13
- ontology :"http://www.w3.org/ns/json-ld",
13
+ ontology :"http://www.w3.org/ns/json-ld#",
14
14
  comment: %(This is a vocabulary document and is used to achieve certain features of the JSON-LD language.).freeze,
15
15
  label: "The JSON-LD Vocabulary".freeze,
16
16
  type: "owl:Ontology".freeze
@@ -18,31 +18,31 @@ module RDF::Vocab
18
18
  # Property definitions
19
19
  property :context,
20
20
  comment: %(This link relation is used to reference a JSON-LD context from a JSON document so that it can be interpreted as JSON-LD.).freeze,
21
+ isDefinedBy: "http://www.w3.org/ns/json-ld".freeze,
21
22
  label: "JSON-LD context".freeze,
22
- :"rdfs:isDefinedBy" => %(http://www.w3.org/ns/json-ld).freeze,
23
- :"rdfs:seeAlso" => %(http://www.w3.org/TR/json-ld-syntax/#referencing-contexts-from-json-documents).freeze,
23
+ "rdfs:seeAlso": "http://www.w3.org/TR/json-ld-syntax/#referencing-contexts-from-json-documents".freeze,
24
24
  type: "rdf:Property".freeze
25
25
 
26
26
  # Extra definitions
27
27
  term :compacted,
28
28
  comment: %(This profile IRI is used to request or specify compacted JSON-LD document form.).freeze,
29
+ isDefinedBy: "http://www.w3.org/ns/json-ld".freeze,
29
30
  label: "Compacted JSON-LD document form".freeze,
30
- :"rdfs:isDefinedBy" => %(http://www.w3.org/ns/json-ld).freeze,
31
- :"rdfs:seeAlso" => %(http://www.w3.org/TR/json-ld-syntax/#iana-considerations).freeze
31
+ "rdfs:seeAlso": "http://www.w3.org/TR/json-ld-syntax/#iana-considerations".freeze
32
32
  term :"compacted-flattened",
33
33
  comment: %(This profile IRI is used to request or specify compacted, flattened JSON-LD document form.).freeze,
34
+ isDefinedBy: "http://www.w3.org/ns/json-ld".freeze,
34
35
  label: "Compacted, flattened JSON-LD document form".freeze,
35
- :"rdfs:isDefinedBy" => %(http://www.w3.org/ns/json-ld).freeze,
36
- :"rdfs:seeAlso" => %(http://www.w3.org/TR/json-ld-syntax/#iana-considerations).freeze
36
+ "rdfs:seeAlso": "http://www.w3.org/TR/json-ld-syntax/#iana-considerations".freeze
37
37
  term :expanded,
38
38
  comment: %(This profile IRI is used to request or specify expanded JSON-LD document form.).freeze,
39
+ isDefinedBy: "http://www.w3.org/ns/json-ld".freeze,
39
40
  label: "Expanded JSON-LD document form".freeze,
40
- :"rdfs:isDefinedBy" => %(http://www.w3.org/ns/json-ld).freeze,
41
- :"rdfs:seeAlso" => %(http://www.w3.org/TR/json-ld-syntax/#iana-considerations).freeze
41
+ "rdfs:seeAlso": "http://www.w3.org/TR/json-ld-syntax/#iana-considerations".freeze
42
42
  term :"expanded-flattened",
43
43
  comment: %(This profile IRI is used to request or specify expanded, flattened JSON-LD document form.).freeze,
44
+ isDefinedBy: "http://www.w3.org/ns/json-ld".freeze,
44
45
  label: "Expanded, flattened JSON-LD document form".freeze,
45
- :"rdfs:isDefinedBy" => %(http://www.w3.org/ns/json-ld).freeze,
46
- :"rdfs:seeAlso" => %(http://www.w3.org/TR/json-ld-syntax/#iana-considerations).freeze
46
+ "rdfs:seeAlso": "http://www.w3.org/TR/json-ld-syntax/#iana-considerations".freeze
47
47
  end
48
48
  end
data/lib/rdf/vocab/ldp.rb CHANGED
@@ -12,226 +12,236 @@ module RDF::Vocab
12
12
  # Ontology definition
13
13
  ontology :"http://www.w3.org/ns/ldp#",
14
14
  comment: %(This ontology provides an informal representation of the concepts and terms as defined in the LDP specification. Consult the LDP specification for normative reference.).freeze,
15
- :"dc:created" => %(2015-02-26).freeze,
16
- :"dc:description" => %(Vocabulary URIs defined in the Linked Data Platform \(LDP\) namespace.).freeze,
17
- :"dc:publisher" => %(http://www.w3.org/data#W3C).freeze,
18
- :"dc:title" => %(The W3C Linked Data Platform \(LDP\) Vocabulary).freeze,
19
- :"http://purl.org/vocab/vann/preferredNamespacePrefix" => %(ldp).freeze,
20
- :"http://purl.org/vocab/vann/preferredNamespaceUri" => %(http://www.w3.org/ns/ldp#).freeze,
15
+ "dc:created": "2015-02-26".freeze,
16
+ "dc:creator": [term(
17
+ "foaf:name": "Ashok Malhotra".freeze
18
+ ), term(
19
+ "foaf:name": "John Arwe".freeze
20
+ ), term(
21
+ "foaf:name": "Steve Speicher".freeze
22
+ )],
23
+ "dc:description": "Vocabulary URIs defined in the Linked Data Platform (LDP) namespace.".freeze,
24
+ "dc:publisher": "http://www.w3.org/data#W3C".freeze,
25
+ "dc:title": "The W3C Linked Data Platform (LDP) Vocabulary".freeze,
26
+ "foaf:maker": term(
27
+ "foaf:homepage": "http://www.w3.org/2012/ldp".freeze
28
+ ),
29
+ "http://purl.org/vocab/vann/preferredNamespacePrefix": "ldp".freeze,
30
+ "http://purl.org/vocab/vann/preferredNamespaceUri": "http://www.w3.org/ns/ldp#".freeze,
21
31
  label: "W3C Linked Data Platform (LDP)".freeze,
22
- :"rdfs:seeAlso" => [%(http://www.w3.org/2011/09/LinkedData/).freeze, %(http://www.w3.org/2012/ldp).freeze, %(http://www.w3.org/TR/ldp-paging/).freeze, %(http://www.w3.org/TR/ldp-ucr/).freeze, %(http://www.w3.org/TR/ldp/).freeze],
32
+ "rdfs:seeAlso": ["http://www.w3.org/2011/09/LinkedData/".freeze, "http://www.w3.org/2012/ldp".freeze, "http://www.w3.org/TR/ldp-paging/".freeze, "http://www.w3.org/TR/ldp-ucr/".freeze, "http://www.w3.org/TR/ldp/".freeze],
23
33
  type: "owl:Ontology".freeze
24
34
 
25
35
  # Class definitions
26
36
  term :BasicContainer,
27
37
  comment: %(An LDPC that uses a predefined predicate to simply link to its contained resources.).freeze,
38
+ isDefinedBy: "ldp:".freeze,
28
39
  label: "BasicContainer".freeze,
29
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
30
40
  subClassOf: "ldp:Container".freeze,
31
41
  type: "rdfs:Class".freeze,
32
- :"vs:term_status" => %(stable).freeze
42
+ "vs:term_status": "stable".freeze
33
43
  term :Container,
34
44
  comment: %(A Linked Data Platform RDF Source \(LDP-RS\) that also conforms to additional patterns and conventions for managing membership. Readers should refer to the specification defining this ontology for the list of behaviors associated with it.).freeze,
45
+ isDefinedBy: "ldp:".freeze,
35
46
  label: "Container".freeze,
36
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
37
47
  subClassOf: "ldp:RDFSource".freeze,
38
48
  type: "rdfs:Class".freeze,
39
- :"vs:term_status" => %(stable).freeze
49
+ "vs:term_status": "stable".freeze
40
50
  term :DirectContainer,
41
51
  comment: %(An LDPC that is similar to a LDP-DC but it allows an indirection with the ability to list as member a resource, such as a URI representing a real-world object, that is different from the resource that is created.).freeze,
52
+ isDefinedBy: "ldp:".freeze,
42
53
  label: "DirectContainer".freeze,
43
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
44
54
  subClassOf: "ldp:Container".freeze,
45
55
  type: "rdfs:Class".freeze,
46
- :"vs:term_status" => %(stable).freeze
56
+ "vs:term_status": "stable".freeze
47
57
  term :IndirectContainer,
48
58
  comment: %(An LDPC that has the flexibility of choosing what form the membership triples take.).freeze,
59
+ isDefinedBy: "ldp:".freeze,
49
60
  label: "IndirectContainer".freeze,
50
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
51
61
  subClassOf: "ldp:Container".freeze,
52
62
  type: "rdfs:Class".freeze,
53
- :"vs:term_status" => %(stable).freeze
63
+ "vs:term_status": "stable".freeze
54
64
  term :NonRDFSource,
55
65
  comment: %(A Linked Data Platform Resource \(LDPR\) whose state is NOT represented as RDF.).freeze,
66
+ isDefinedBy: "ldp:".freeze,
56
67
  label: "NonRDFSource".freeze,
57
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
58
68
  subClassOf: "ldp:Resource".freeze,
59
69
  type: "rdfs:Class".freeze,
60
- :"vs:term_status" => %(stable).freeze
70
+ "vs:term_status": "stable".freeze
61
71
  term :Page,
62
72
  comment: %(URI signifying that the resource is an in-sequence page resource, as defined by LDP Paging. Typically used on Link rel='type' response headers.).freeze,
73
+ isDefinedBy: "ldp:".freeze,
63
74
  label: "Page".freeze,
64
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
65
75
  type: "rdfs:Class".freeze,
66
- :"vs:term_status" => %(testing).freeze
76
+ "vs:term_status": "testing".freeze
67
77
  term :PageSortCriterion,
68
78
  comment: %(Element in the list of sorting criteria used by the server to assign container members to pages.).freeze,
79
+ isDefinedBy: "ldp:".freeze,
69
80
  label: "PageSortCriterion".freeze,
70
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
71
81
  type: "rdfs:Class".freeze,
72
- :"vs:term_status" => %(testing).freeze
82
+ "vs:term_status": "testing".freeze
73
83
  term :RDFSource,
74
84
  comment: %(A Linked Data Platform Resource \(LDPR\) whose state is represented as RDF.).freeze,
85
+ isDefinedBy: "ldp:".freeze,
75
86
  label: "RDFSource".freeze,
76
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
77
87
  subClassOf: "ldp:Resource".freeze,
78
88
  type: "rdfs:Class".freeze,
79
- :"vs:term_status" => %(stable).freeze
89
+ "vs:term_status": "stable".freeze
80
90
  term :Resource,
81
91
  comment: %(A HTTP-addressable resource whose lifecycle is managed by a LDP server.).freeze,
92
+ isDefinedBy: "ldp:".freeze,
82
93
  label: "Resource".freeze,
83
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
84
94
  type: "rdfs:Class".freeze,
85
- :"vs:term_status" => %(stable).freeze
95
+ "vs:term_status": "stable".freeze
86
96
 
87
97
  # Property definitions
88
98
  property :constrainedBy,
89
99
  comment: %(Links a resource with constraints that the server requires requests like creation and update to conform to.).freeze,
90
100
  domain: "ldp:Resource".freeze,
101
+ isDefinedBy: "ldp:".freeze,
91
102
  label: "constrainedBy".freeze,
92
103
  range: "rdfs:Resource".freeze,
93
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
94
104
  type: "rdf:Property".freeze,
95
- :"vs:term_status" => %(stable).freeze
105
+ "vs:term_status": "stable".freeze
96
106
  property :contains,
97
107
  comment: %(Links a container with resources created through the container.).freeze,
98
108
  domain: "ldp:Container".freeze,
109
+ isDefinedBy: "ldp:".freeze,
99
110
  label: "contains".freeze,
100
111
  range: "rdfs:Resource".freeze,
101
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
102
112
  type: "rdf:Property".freeze,
103
- :"vs:term_status" => %(stable).freeze
113
+ "vs:term_status": "stable".freeze
104
114
  property :hasMemberRelation,
105
115
  comment: %(Indicates which predicate is used in membership triples, and that the membership triple pattern is < membership-constant-URI , object-of-hasMemberRelation, member-URI >.).freeze,
106
116
  domain: "ldp:Container".freeze,
117
+ isDefinedBy: "ldp:".freeze,
107
118
  label: "hasMemberRelation".freeze,
108
119
  range: "rdf:Property".freeze,
109
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
110
120
  type: "rdf:Property".freeze,
111
- :"vs:term_status" => %(stable).freeze
121
+ "vs:term_status": "stable".freeze
112
122
  property :inbox,
113
123
  comment: %(Links a resource to a container where notifications for the resource can be created and discovered.).freeze,
114
- :"dc:creator" => [%(http://csarven.ca/#i).freeze, %(https://rhiaro.co.uk/#me).freeze],
115
- :"dc:issued" => %(2016-09-29).freeze,
124
+ "dc:creator": ["http://csarven.ca/#i".freeze, "https://rhiaro.co.uk/#me".freeze],
125
+ "dc:issued": "2016-09-29".freeze,
126
+ isDefinedBy: "https://www.w3.org/TR/ldn/".freeze,
116
127
  label: "inbox".freeze,
117
- :"rdfs:isDefinedBy" => %(https://www.w3.org/TR/ldn/).freeze,
118
128
  type: "rdf:Property".freeze,
119
- :"vs:term_status" => %(stable).freeze
129
+ "vs:term_status": "stable".freeze
120
130
  property :insertedContentRelation,
121
131
  comment: %(Indicates which triple in a creation request should be used as the member-URI value in the membership triple added when the creation request is successful.).freeze,
122
132
  domain: "ldp:Container".freeze,
133
+ isDefinedBy: "ldp:".freeze,
123
134
  label: "insertedContentRelation".freeze,
124
135
  range: "rdf:Property".freeze,
125
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
126
136
  type: "rdf:Property".freeze,
127
- :"vs:term_status" => %(stable).freeze
137
+ "vs:term_status": "stable".freeze
128
138
  property :isMemberOfRelation,
129
139
  comment: %(Indicates which predicate is used in membership triples, and that the membership triple pattern is < member-URI , object-of-isMemberOfRelation, membership-constant-URI >.).freeze,
130
140
  domain: "ldp:Container".freeze,
141
+ isDefinedBy: "ldp:".freeze,
131
142
  label: "isMemmberOfRelation".freeze,
132
143
  range: "rdf:Property".freeze,
133
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
134
144
  type: "rdf:Property".freeze,
135
- :"vs:term_status" => %(stable).freeze
145
+ "vs:term_status": "stable".freeze
136
146
  property :member,
137
147
  comment: %(LDP servers should use this predicate as the membership predicate if there is no obvious predicate from an application vocabulary to use.).freeze,
138
148
  domain: "ldp:Resource".freeze,
149
+ isDefinedBy: "ldp:".freeze,
139
150
  label: "member".freeze,
140
151
  range: "rdfs:Resource".freeze,
141
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
142
152
  type: "rdf:Property".freeze,
143
- :"vs:term_status" => %(stable).freeze
153
+ "vs:term_status": "stable".freeze
144
154
  property :membershipResource,
145
155
  comment: %(Indicates the membership-constant-URI in a membership triple. Depending upon the membership triple pattern a container uses, as indicated by the presence of ldp:hasMemberRelation or ldp:isMemberOfRelation, the membership-constant-URI might occupy either the subject or object position in membership triples.).freeze,
146
156
  domain: "ldp:Container".freeze,
157
+ isDefinedBy: "ldp:".freeze,
147
158
  label: "membershipResource".freeze,
148
159
  range: "rdfs:Resource".freeze,
149
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
150
160
  type: "rdf:Property".freeze,
151
- :"vs:term_status" => %(stable).freeze
161
+ "vs:term_status": "stable".freeze
152
162
  property :pageSequence,
153
163
  comment: %(Link to a page sequence resource, as defined by LDP Paging. Typically used to communicate the sorting criteria used to allocate LDPC members to pages.).freeze,
164
+ isDefinedBy: "ldp:".freeze,
154
165
  label: "Page".freeze,
155
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
156
166
  type: "rdf:Property".freeze,
157
- :"vs:term_status" => %(testing).freeze
167
+ "vs:term_status": "testing".freeze
158
168
  property :pageSortCollation,
159
169
  comment: %(The collation used to order the members across pages in a page sequence when comparing strings.).freeze,
160
170
  domain: "ldp:PageSortCriterion".freeze,
171
+ isDefinedBy: "ldp:".freeze,
161
172
  label: "pageSortCollation".freeze,
162
173
  range: "rdf:Property".freeze,
163
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
164
174
  type: "rdf:Property".freeze,
165
- :"vs:term_status" => %(testing).freeze
175
+ "vs:term_status": "testing".freeze
166
176
  property :pageSortCriteria,
167
177
  comment: %(Link to the list of sorting criteria used by the server in a representation. Typically used on Link response headers as an extension link relation URI in the rel= parameter.).freeze,
168
178
  domain: "ldp:Page".freeze,
179
+ isDefinedBy: "ldp:".freeze,
169
180
  label: "pageSortCriteria".freeze,
170
181
  range: "rdf:List".freeze,
171
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
172
182
  type: "rdf:Property".freeze,
173
- :"vs:term_status" => %(testing).freeze
183
+ "vs:term_status": "testing".freeze
174
184
  property :pageSortOrder,
175
185
  comment: %(The ascending/descending/etc order used to order the members across pages in a page sequence.).freeze,
176
186
  domain: "ldp:PageSortCriterion".freeze,
187
+ isDefinedBy: "ldp:".freeze,
177
188
  label: "pageSortOrder".freeze,
178
189
  range: "rdfs:Resource".freeze,
179
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
180
190
  type: "rdf:Property".freeze,
181
- :"vs:term_status" => %(testing).freeze
191
+ "vs:term_status": "testing".freeze
182
192
  property :pageSortPredicate,
183
193
  comment: %(Predicate used to specify the order of the members across a page sequence's in-sequence page resources; it asserts nothing about the order of members in the representation of a single page.).freeze,
184
194
  domain: "ldp:PageSortCriterion".freeze,
195
+ isDefinedBy: "ldp:".freeze,
185
196
  label: "pageSortPredicate".freeze,
186
197
  range: "rdf:Property".freeze,
187
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
188
198
  type: "rdf:Property".freeze,
189
- :"vs:term_status" => %(testing).freeze
199
+ "vs:term_status": "testing".freeze
190
200
 
191
201
  # Extra definitions
192
202
  term :Ascending,
193
203
  comment: %(Ascending order.).freeze,
204
+ isDefinedBy: "ldp:".freeze,
194
205
  label: "Ascending".freeze,
195
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
196
206
  type: "owl:NamedIndividual".freeze,
197
- :"vs:term_status" => %(testing).freeze
207
+ "vs:term_status": "testing".freeze
198
208
  term :Descending,
199
209
  comment: %(Descending order.).freeze,
210
+ isDefinedBy: "ldp:".freeze,
200
211
  label: "Descending".freeze,
201
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
202
212
  type: "owl:NamedIndividual".freeze,
203
- :"vs:term_status" => %(testing).freeze
213
+ "vs:term_status": "testing".freeze
204
214
  term :MemberSubject,
205
215
  comment: %(Used to indicate default and typical behavior for ldp:insertedContentRelation, where the member-URI value in the membership triple added when a creation request is successful is the URI assigned to the newly created resource.).freeze,
216
+ isDefinedBy: "ldp:".freeze,
206
217
  label: "MemberSubject".freeze,
207
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
208
218
  type: "owl:NamedIndividual".freeze,
209
- :"vs:term_status" => %(stable).freeze
219
+ "vs:term_status": "stable".freeze
210
220
  term :PreferContainment,
211
221
  comment: %(URI identifying a LDPC's containment triples, for example to allow clients to express interest in receiving them.).freeze,
222
+ isDefinedBy: "ldp:".freeze,
212
223
  label: "PreferContainment".freeze,
213
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
214
224
  type: "owl:NamedIndividual".freeze,
215
- :"vs:term_status" => %(stable).freeze
225
+ "vs:term_status": "stable".freeze
216
226
  term :PreferEmptyContainer,
217
227
  comment: %(Archaic alias for ldp:PreferMinimalContainer).freeze,
228
+ equivalentProperty: "ldp:PreferMinimalContainer".freeze,
229
+ isDefinedBy: "ldp:".freeze,
218
230
  label: "PreferEmptyContainer".freeze,
219
- :"owl:equivalentProperty" => %(ldp:PreferMinimalContainer).freeze,
220
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
221
- :"rdfs:seeAlso" => %(ldp:PreferMinimalContainer).freeze,
231
+ "rdfs:seeAlso": "ldp:PreferMinimalContainer".freeze,
222
232
  type: "owl:NamedIndividual".freeze,
223
- :"vs:term_status" => %(archaic).freeze
233
+ "vs:term_status": "archaic".freeze
224
234
  term :PreferMembership,
225
235
  comment: %(URI identifying a LDPC's membership triples, for example to allow clients to express interest in receiving them.).freeze,
236
+ isDefinedBy: "ldp:".freeze,
226
237
  label: "PreferMembership".freeze,
227
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
228
238
  type: "owl:NamedIndividual".freeze,
229
- :"vs:term_status" => %(stable).freeze
239
+ "vs:term_status": "stable".freeze
230
240
  term :PreferMinimalContainer,
231
241
  comment: %(URI identifying the subset of a LDPC's triples present in an empty LDPC, for example to allow clients to express interest in receiving them. Currently this excludes containment and membership triples, but in the future other exclusions might be added. This definition is written to automatically exclude those new classes of triples.).freeze,
242
+ isDefinedBy: "ldp:".freeze,
232
243
  label: "PreferMinimalContainer".freeze,
233
- :"rdfs:isDefinedBy" => %(ldp:).freeze,
234
244
  type: "owl:NamedIndividual".freeze,
235
- :"vs:term_status" => %(stable).freeze
245
+ "vs:term_status": "stable".freeze
236
246
  end
237
247
  end