rdf-vocab 3.1.2 → 3.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +69 -45
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +60 -40
- data/lib/rdf/vocab/acl.rb +104 -61
- data/lib/rdf/vocab/as.rb +556 -91
- data/lib/rdf/vocab/bf2.rb +1791 -475
- data/lib/rdf/vocab/bibframe.rb +1 -2
- data/lib/rdf/vocab/bibo.rb +616 -124
- data/lib/rdf/vocab/cc.rb +125 -48
- data/lib/rdf/vocab/cert.rb +68 -1
- data/lib/rdf/vocab/cnt.rb +79 -1
- data/lib/rdf/vocab/crm.rb +1543 -776
- data/lib/rdf/vocab/datacite.rb +1 -1
- data/lib/rdf/vocab/dbo.rb +10463 -1
- data/lib/rdf/vocab/dc.rb +485 -99
- data/lib/rdf/vocab/dc11.rb +93 -31
- data/lib/rdf/vocab/dcat.rb +236 -88
- data/lib/rdf/vocab/dcmitype.rb +63 -13
- data/lib/rdf/vocab/disco.rb +286 -59
- data/lib/rdf/vocab/doap.rb +175 -1
- data/lib/rdf/vocab/dwc.rb +941 -189
- data/lib/rdf/vocab/earl.rb +324 -0
- data/lib/rdf/vocab/ebucore.rb +7255 -2184
- data/lib/rdf/vocab/edm.rb +202 -76
- data/lib/rdf/vocab/exif.rb +650 -1
- data/lib/rdf/vocab/extensions.rb +257 -203
- data/lib/rdf/vocab/fcrepo4.rb +398 -22
- data/lib/rdf/vocab/foaf.rb +380 -76
- data/lib/rdf/vocab/geo.rb +47 -110
- data/lib/rdf/vocab/geojson.rb +82 -17
- data/lib/rdf/vocab/geonames.rb +1508 -1351
- data/lib/rdf/vocab/gr.rb +861 -565
- data/lib/rdf/vocab/gs1.rb +1597 -1
- data/lib/rdf/vocab/ht.rb +204 -41
- data/lib/rdf/vocab/hydra.rb +335 -60
- data/lib/rdf/vocab/iana.rb +301 -114
- data/lib/rdf/vocab/ical.rb +534 -121
- data/lib/rdf/vocab/identifiers.rb +459 -499
- data/lib/rdf/vocab/iiif.rb +161 -26
- data/lib/rdf/vocab/jsonld.rb +179 -53
- data/lib/rdf/vocab/ldp.rb +130 -1
- data/lib/rdf/vocab/lrmi.rb +85 -17
- data/lib/rdf/vocab/ma.rb +460 -80
- data/lib/rdf/vocab/mads.rb +610 -22
- data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +813 -4
- data/lib/rdf/vocab/mo.rb +1115 -540
- data/lib/rdf/vocab/mods.rb +635 -124
- data/lib/rdf/vocab/nfo.rb +1 -1
- data/lib/rdf/vocab/oa.rb +343 -73
- data/lib/rdf/vocab/og.rb +100 -1
- data/lib/rdf/vocab/ogc.rb +42 -9
- data/lib/rdf/vocab/ore.rb +69 -14
- data/lib/rdf/vocab/org.rb +235 -47
- data/lib/rdf/vocab/pcdm.rb +58 -34
- data/lib/rdf/vocab/pplan.rb +21 -136
- data/lib/rdf/vocab/premis.rb +1171 -779
- data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +156 -2
- data/lib/rdf/vocab/prov.rb +700 -107
- data/lib/rdf/vocab/ptr.rb +172 -37
- data/lib/rdf/vocab/rightsstatements.rb +17 -13
- data/lib/rdf/vocab/rsa.rb +30 -1
- data/lib/rdf/vocab/rss.rb +52 -11
- data/lib/rdf/vocab/schema.rb +14970 -3993
- data/lib/rdf/vocab/schemas.rb +27066 -0
- data/lib/rdf/vocab/sd.rb +372 -0
- data/lib/rdf/vocab/sh.rb +919 -184
- data/lib/rdf/vocab/sioc.rb +498 -98
- data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +46 -9
- data/lib/rdf/vocab/sioctypes.rb +434 -0
- data/lib/rdf/vocab/skos.rb +160 -44
- data/lib/rdf/vocab/skosxl.rb +40 -11
- data/lib/rdf/vocab/v.rb +323 -37
- data/lib/rdf/vocab/vcard.rb +625 -119
- data/lib/rdf/vocab/vmd.rb +323 -37
- data/lib/rdf/vocab/void.rb +147 -27
- data/lib/rdf/vocab/vs.rb +23 -5
- data/lib/rdf/vocab/wdrs.rb +112 -23
- data/lib/rdf/vocab/wot.rb +96 -19
- data/lib/rdf/vocab/xhtml.rb +2 -1
- data/lib/rdf/vocab/xhv.rb +422 -201
- data/lib/rdf/vocab/xkos.rb +156 -7
- data/spec/extensions_spec.rb +68 -0
- data/spec/vocab_spec.rb +10 -0
- metadata +20 -11
- data/lib/rdf/vocab/sioct.rb +0 -277
data/lib/rdf/vocab/nfo.rb
CHANGED
@@ -7,7 +7,7 @@ module RDF::Vocab
|
|
7
7
|
# # Vocabulary for <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#>
|
8
8
|
# class NFO < RDF::StrictVocabulary
|
9
9
|
# end
|
10
|
-
|
10
|
+
NFO = Class.new(RDF::StrictVocabulary("http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#")) do
|
11
11
|
|
12
12
|
# Class definitions
|
13
13
|
term :Application,
|
data/lib/rdf/vocab/oa.rb
CHANGED
@@ -5,13 +5,287 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://www.w3.org/ns/oa#>
|
8
|
+
# #
|
9
|
+
# # Web Annotation Ontology
|
10
|
+
# #
|
11
|
+
# # The Web Annotation ontology defines the terms of the Web Annotation vocabulary. Any changes to this document MUST be from a Working Group in the W3C that has established expertise in the area.
|
12
|
+
# # @version 2016-11-12T21:28:11Z
|
13
|
+
# # @see http://www.w3.org/TR/annotation-vocab/
|
8
14
|
# class OA < RDF::StrictVocabulary
|
15
|
+
# # The class for Web Annotations.
|
16
|
+
# # @return [RDF::Vocabulary::Term]
|
17
|
+
# attr_reader :Annotation
|
18
|
+
#
|
19
|
+
# # A subClass of as:OrderedCollection that conveys to a consuming application that it should select one of the resources in the as:items list to use, rather than all of them. This is typically used to provide a choice of resources to render to the user, based on further supplied properties. If the consuming application cannot determine the user's preference, then it should use the first in the list.
|
20
|
+
# # @return [RDF::Vocabulary::Term]
|
21
|
+
# attr_reader :Choice
|
22
|
+
#
|
23
|
+
# # A CssSelector describes a Segment of interest in a representation that conforms to the Document Object Model through the use of the CSS selector specification.
|
24
|
+
# # @return [RDF::Vocabulary::Term]
|
25
|
+
# attr_reader :CssSelector
|
26
|
+
#
|
27
|
+
# # A resource which describes styles for resources participating in the Annotation using CSS.
|
28
|
+
# # @return [RDF::Vocabulary::Term]
|
29
|
+
# attr_reader :CssStyle
|
30
|
+
#
|
31
|
+
# # DataPositionSelector describes a range of data by recording the start and end positions of the selection in the stream. Position 0 would be immediately before the first byte, position 1 would be immediately before the second byte, and so on. The start byte is thus included in the list, but the end byte is not.
|
32
|
+
# # @return [RDF::Vocabulary::Term]
|
33
|
+
# attr_reader :DataPositionSelector
|
34
|
+
#
|
35
|
+
# # A class to encapsulate the different text directions that a textual resource might take. It is not used directly in the Annotation Model, only its three instances.
|
36
|
+
# # @return [RDF::Vocabulary::Term]
|
37
|
+
# attr_reader :Direction
|
38
|
+
#
|
39
|
+
# # The FragmentSelector class is used to record the segment of a representation using the IRI fragment specification defined by the representation's media type.
|
40
|
+
# # @return [RDF::Vocabulary::Term]
|
41
|
+
# attr_reader :FragmentSelector
|
42
|
+
#
|
43
|
+
# # The HttpRequestState class is used to record the HTTP request headers that a client SHOULD use to request the correct representation from the resource.
|
44
|
+
# # @return [RDF::Vocabulary::Term]
|
45
|
+
# attr_reader :HttpRequestState
|
46
|
+
#
|
47
|
+
# # The Motivation class is used to record the user's intent or motivation for the creation of the Annotation, or the inclusion of the body or target, that it is associated with.
|
48
|
+
# # @return [RDF::Vocabulary::Term]
|
49
|
+
# attr_reader :Motivation
|
50
|
+
#
|
51
|
+
# # A Range Selector can be used to identify the beginning and the end of the selection by using other Selectors. The selection consists of everything from the beginning of the starting selector through to the beginning of the ending selector, but not including it.
|
52
|
+
# # @return [RDF::Vocabulary::Term]
|
53
|
+
# attr_reader :RangeSelector
|
54
|
+
#
|
55
|
+
# # Instances of the ResourceSelection class identify part (described by an oa:Selector) of another resource (referenced with oa:hasSource), possibly from a particular representation of a resource (described by an oa:State). Please note that ResourceSelection is not used directly in the Web Annotation model, but is provided as a separate class for further application profiles to use, separate from oa:SpecificResource which has many Annotation specific features.
|
56
|
+
# # @return [RDF::Vocabulary::Term]
|
57
|
+
# attr_reader :ResourceSelection
|
58
|
+
#
|
59
|
+
# # A resource which describes the segment of interest in a representation of a Source resource, indicated with oa:hasSelector from the Specific Resource. This class is not used directly in the Annotation model, only its subclasses.
|
60
|
+
# # @return [RDF::Vocabulary::Term]
|
61
|
+
# attr_reader :Selector
|
62
|
+
#
|
63
|
+
# # Instances of the SpecificResource class identify part of another resource (referenced with oa:hasSource), a particular representation of a resource, a resource with styling hints for renders, or any combination of these, as used within an Annotation.
|
64
|
+
# # @return [RDF::Vocabulary::Term]
|
65
|
+
# attr_reader :SpecificResource
|
66
|
+
#
|
67
|
+
# # A State describes the intended state of a resource as applied to the particular Annotation, and thus provides the information needed to retrieve the correct representation of that resource.
|
68
|
+
# # @return [RDF::Vocabulary::Term]
|
69
|
+
# attr_reader :State
|
70
|
+
#
|
71
|
+
# # A Style describes the intended styling of a resource as applied to the particular Annotation, and thus provides the information to ensure that rendering is consistent across implementations.
|
72
|
+
# # @return [RDF::Vocabulary::Term]
|
73
|
+
# attr_reader :Style
|
74
|
+
#
|
75
|
+
# # An SvgSelector defines an area through the use of the Scalable Vector Graphics [SVG] standard. This allows the user to select a non-rectangular area of the content, such as a circle or polygon by describing the region using SVG. The SVG may be either embedded within the Annotation or referenced as an External Resource.
|
76
|
+
# # @return [RDF::Vocabulary::Term]
|
77
|
+
# attr_reader :SvgSelector
|
78
|
+
#
|
79
|
+
# # The TextPositionSelector describes a range of text by recording the start and end positions of the selection in the stream. Position 0 would be immediately before the first character, position 1 would be immediately before the second character, and so on.
|
80
|
+
# # @return [RDF::Vocabulary::Term]
|
81
|
+
# attr_reader :TextPositionSelector
|
82
|
+
#
|
83
|
+
# # The TextQuoteSelector describes a range of text by copying it, and including some of the text immediately before (a prefix) and after (a suffix) it to distinguish between multiple copies of the same sequence of characters.
|
84
|
+
# # @return [RDF::Vocabulary::Term]
|
85
|
+
# attr_reader :TextQuoteSelector
|
86
|
+
#
|
87
|
+
# #
|
88
|
+
# # @return [RDF::Vocabulary::Term]
|
89
|
+
# attr_reader :TextualBody
|
90
|
+
#
|
91
|
+
# # A TimeState records the time at which the resource's state is appropriate for the Annotation, typically the time that the Annotation was created and/or a link to a persistent copy of the current version.
|
92
|
+
# # @return [RDF::Vocabulary::Term]
|
93
|
+
# attr_reader :TimeState
|
94
|
+
#
|
95
|
+
# # An XPathSelector is used to select elements and content within a resource that supports the Document Object Model via a specified XPath value.
|
96
|
+
# # @return [RDF::Vocabulary::Term]
|
97
|
+
# attr_reader :XPathSelector
|
98
|
+
#
|
99
|
+
# # The object of the relationship is the end point of a service that conforms to the annotation-protocol, and it may be associated with any resource. The expectation of asserting the relationship is that the object is the preferred service for maintaining annotations about the subject resource, according to the publisher of the relationship. This relationship is intended to be used both within Linked Data descriptions and as the rel type of a Link, via HTTP Link Headers rfc5988 for binary resources and in HTML <link> elements. For more information about these, please see the Annotation Protocol specification annotation-protocol.
|
100
|
+
# # @return [RDF::Vocabulary::Term]
|
101
|
+
# attr_reader :annotationService
|
102
|
+
#
|
103
|
+
# # The object of the predicate is a plain text string to be used as the content of the body of the Annotation. The value MUST be an xsd:string and that data type MUST NOT be expressed in the serialization. Note that language MUST NOT be associated with the value either as a language tag, as that is only available for rdf:langString .
|
104
|
+
# # @return [RDF::Vocabulary::Term]
|
105
|
+
# attr_reader :bodyValue
|
106
|
+
#
|
107
|
+
# # A object of the relationship is a copy of the Source resource's representation, appropriate for the Annotation.
|
108
|
+
# # @return [RDF::Vocabulary::Term]
|
109
|
+
# attr_reader :cachedSource
|
110
|
+
#
|
111
|
+
# # A object of the relationship is the canonical IRI that can always be used to deduplicate the Annotation, regardless of the current IRI used to access the representation.
|
112
|
+
# # @return [RDF::Vocabulary::Term]
|
113
|
+
# attr_reader :canonical
|
114
|
+
#
|
115
|
+
# # The end property is used to convey the 0-based index of the end position of a range of content.
|
116
|
+
# # @return [RDF::Vocabulary::Term]
|
117
|
+
# attr_reader :end
|
118
|
+
#
|
119
|
+
# # The object of the predicate is a copy of the text which is being selected, after normalization.
|
120
|
+
# # @return [RDF::Vocabulary::Term]
|
121
|
+
# attr_reader :exact
|
122
|
+
#
|
123
|
+
# # The object of the relationship is a resource that is a body of the Annotation.
|
124
|
+
# # @return [RDF::Vocabulary::Term]
|
125
|
+
# attr_reader :hasBody
|
126
|
+
#
|
127
|
+
# # The relationship between a RangeSelector and the Selector that describes the end position of the range.
|
128
|
+
# # @return [RDF::Vocabulary::Term]
|
129
|
+
# attr_reader :hasEndSelector
|
130
|
+
#
|
131
|
+
# # The purpose served by the resource in the Annotation.
|
132
|
+
# # @return [RDF::Vocabulary::Term]
|
133
|
+
# attr_reader :hasPurpose
|
134
|
+
#
|
135
|
+
# # The scope or context in which the resource is used within the Annotation.
|
136
|
+
# # @return [RDF::Vocabulary::Term]
|
137
|
+
# attr_reader :hasScope
|
138
|
+
#
|
139
|
+
# # The object of the relationship is a Selector that describes the segment or region of interest within the source resource. Please note that the domain ( oa:ResourceSelection ) is not used directly in the Web Annotation model.
|
140
|
+
# # @return [RDF::Vocabulary::Term]
|
141
|
+
# attr_reader :hasSelector
|
142
|
+
#
|
143
|
+
# # The resource that the ResourceSelection, or its subclass SpecificResource, is refined from, or more specific than. Please note that the domain ( oa:ResourceSelection ) is not used directly in the Web Annotation model.
|
144
|
+
# # @return [RDF::Vocabulary::Term]
|
145
|
+
# attr_reader :hasSource
|
146
|
+
#
|
147
|
+
# # The relationship between a RangeSelector and the Selector that describes the start position of the range.
|
148
|
+
# # @return [RDF::Vocabulary::Term]
|
149
|
+
# attr_reader :hasStartSelector
|
150
|
+
#
|
151
|
+
# # The relationship between the ResourceSelection, or its subclass SpecificResource, and a State resource. Please note that the domain ( oa:ResourceSelection ) is not used directly in the Web Annotation model.
|
152
|
+
# # @return [RDF::Vocabulary::Term]
|
153
|
+
# attr_reader :hasState
|
154
|
+
#
|
155
|
+
# # The relationship between an Annotation and its Target.
|
156
|
+
# # @return [RDF::Vocabulary::Term]
|
157
|
+
# attr_reader :hasTarget
|
158
|
+
#
|
159
|
+
# # The relationship between an Annotation and a Motivation that describes the reason for the Annotation's creation.
|
160
|
+
# # @return [RDF::Vocabulary::Term]
|
161
|
+
# attr_reader :motivatedBy
|
162
|
+
#
|
163
|
+
# # The object of the property is a snippet of content that occurs immediately before the content which is being selected by the Selector.
|
164
|
+
# # @return [RDF::Vocabulary::Term]
|
165
|
+
# attr_reader :prefix
|
166
|
+
#
|
167
|
+
# # The object of the property is the language that should be used for textual processing algorithms when dealing with the content of the resource, including hyphenation, line breaking, which font to use for rendering and so forth. The value must follow the recommendations of BCP47.
|
168
|
+
# # @return [RDF::Vocabulary::Term]
|
169
|
+
# attr_reader :processingLanguage
|
170
|
+
#
|
171
|
+
# # The relationship between a Selector and another Selector or a State and a Selector or State that should be applied to the results of the first to refine the processing of the source resource.
|
172
|
+
# # @return [RDF::Vocabulary::Term]
|
173
|
+
# attr_reader :refinedBy
|
174
|
+
#
|
175
|
+
# # A system that was used by the application that created the Annotation to render the resource.
|
176
|
+
# # @return [RDF::Vocabulary::Term]
|
177
|
+
# attr_reader :renderedVia
|
178
|
+
#
|
179
|
+
# # The timestamp at which the Source resource should be interpreted as being applicable to the Annotation.
|
180
|
+
# # @return [RDF::Vocabulary::Term]
|
181
|
+
# attr_reader :sourceDate
|
182
|
+
#
|
183
|
+
# # The end timestamp of the interval over which the Source resource should be interpreted as being applicable to the Annotation.
|
184
|
+
# # @return [RDF::Vocabulary::Term]
|
185
|
+
# attr_reader :sourceDateEnd
|
186
|
+
#
|
187
|
+
# # The start timestamp of the interval over which the Source resource should be interpreted as being applicable to the Annotation.
|
188
|
+
# # @return [RDF::Vocabulary::Term]
|
189
|
+
# attr_reader :sourceDateStart
|
190
|
+
#
|
191
|
+
# # The start position in a 0-based index at which a range of content is selected from the data in the source resource.
|
192
|
+
# # @return [RDF::Vocabulary::Term]
|
193
|
+
# attr_reader :start
|
194
|
+
#
|
195
|
+
# # The name of the class used in the CSS description referenced from the Annotation that should be applied to the Specific Resource.
|
196
|
+
# # @return [RDF::Vocabulary::Term]
|
197
|
+
# attr_reader :styleClass
|
198
|
+
#
|
199
|
+
# # A reference to a Stylesheet that should be used to apply styles to the Annotation rendering.
|
200
|
+
# # @return [RDF::Vocabulary::Term]
|
201
|
+
# attr_reader :styledBy
|
202
|
+
#
|
203
|
+
# # The snippet of text that occurs immediately after the text which is being selected.
|
204
|
+
# # @return [RDF::Vocabulary::Term]
|
205
|
+
# attr_reader :suffix
|
206
|
+
#
|
207
|
+
# # The direction of the text of the subject resource. There MUST only be one text direction associated with any given resource.
|
208
|
+
# # @return [RDF::Vocabulary::Term]
|
209
|
+
# attr_reader :textDirection
|
210
|
+
#
|
211
|
+
# # A object of the relationship is a resource from which the source resource was retrieved by the providing system.
|
212
|
+
# # @return [RDF::Vocabulary::Term]
|
213
|
+
# attr_reader :via
|
214
|
+
#
|
215
|
+
# # An IRI to signal the client prefers to receive full descriptions of the Annotations from a container, not just their IRIs.
|
216
|
+
# # @return [RDF::Vocabulary::Term]
|
217
|
+
# attr_reader :PreferContainedDescriptions
|
218
|
+
#
|
219
|
+
# # An IRI to signal that the client prefers to receive only the IRIs of the Annotations from a container, not their full descriptions.
|
220
|
+
# # @return [RDF::Vocabulary::Term]
|
221
|
+
# attr_reader :PreferContainedIRIs
|
222
|
+
#
|
223
|
+
# # The motivation for when the user intends to provide an assessment about the Target resource.
|
224
|
+
# # @return [RDF::Vocabulary::Term]
|
225
|
+
# attr_reader :assessing
|
226
|
+
#
|
227
|
+
# # The motivation for when the user intends to create a bookmark to the Target or part thereof.
|
228
|
+
# # @return [RDF::Vocabulary::Term]
|
229
|
+
# attr_reader :bookmarking
|
230
|
+
#
|
231
|
+
# # The motivation for when the user intends to that classify the Target as something.
|
232
|
+
# # @return [RDF::Vocabulary::Term]
|
233
|
+
# attr_reader :classifying
|
234
|
+
#
|
235
|
+
# # The motivation for when the user intends to comment about the Target.
|
236
|
+
# # @return [RDF::Vocabulary::Term]
|
237
|
+
# attr_reader :commenting
|
238
|
+
#
|
239
|
+
# # The motivation for when the user intends to describe the Target, as opposed to a comment about them.
|
240
|
+
# # @return [RDF::Vocabulary::Term]
|
241
|
+
# attr_reader :describing
|
242
|
+
#
|
243
|
+
# # The motivation for when the user intends to request a change or edit to the Target resource.
|
244
|
+
# # @return [RDF::Vocabulary::Term]
|
245
|
+
# attr_reader :editing
|
246
|
+
#
|
247
|
+
# # The motivation for when the user intends to highlight the Target resource or segment of it.
|
248
|
+
# # @return [RDF::Vocabulary::Term]
|
249
|
+
# attr_reader :highlighting
|
250
|
+
#
|
251
|
+
# # The motivation for when the user intends to assign an identity to the Target or identify what is being depicted or described in the Target.
|
252
|
+
# # @return [RDF::Vocabulary::Term]
|
253
|
+
# attr_reader :identifying
|
254
|
+
#
|
255
|
+
# # The motivation for when the user intends to link to a resource related to the Target.
|
256
|
+
# # @return [RDF::Vocabulary::Term]
|
257
|
+
# attr_reader :linking
|
258
|
+
#
|
259
|
+
# # The direction of text that is read from left to right.
|
260
|
+
# # @return [RDF::Vocabulary::Term]
|
261
|
+
# attr_reader :ltrDirection
|
262
|
+
#
|
263
|
+
# # The motivation for when the user intends to assign some value or quality to the Target.
|
264
|
+
# # @return [RDF::Vocabulary::Term]
|
265
|
+
# attr_reader :moderating
|
266
|
+
#
|
267
|
+
# # The motivation for when the user intends to ask a question about the Target.
|
268
|
+
# # @return [RDF::Vocabulary::Term]
|
269
|
+
# attr_reader :questioning
|
270
|
+
#
|
271
|
+
# # The motivation for when the user intends to reply to a previous statement, either an Annotation or another resource.
|
272
|
+
# # @return [RDF::Vocabulary::Term]
|
273
|
+
# attr_reader :replying
|
274
|
+
#
|
275
|
+
# # The direction of text that is read from right to left.
|
276
|
+
# # @return [RDF::Vocabulary::Term]
|
277
|
+
# attr_reader :rtlDirection
|
278
|
+
#
|
279
|
+
# # The motivation for when the user intends to associate a tag with the Target.
|
280
|
+
# # @return [RDF::Vocabulary::Term]
|
281
|
+
# attr_reader :tagging
|
282
|
+
#
|
9
283
|
# end
|
10
|
-
|
284
|
+
OA = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/oa#")) do
|
11
285
|
|
12
286
|
# Ontology definition
|
13
287
|
ontology :"http://www.w3.org/ns/oa#",
|
14
|
-
comment:
|
288
|
+
comment: "The Web Annotation ontology defines the terms of the Web Annotation vocabulary. Any changes to this document MUST be from a Working Group in the W3C that has established expertise in the area.".freeze,
|
15
289
|
"dc11:title": "Web Annotation Ontology".freeze,
|
16
290
|
"dc:creator": [term(
|
17
291
|
"foaf:name": "Benjamin Young".freeze,
|
@@ -31,120 +305,120 @@ module RDF::Vocab
|
|
31
305
|
|
32
306
|
# Class definitions
|
33
307
|
term :Annotation,
|
34
|
-
comment:
|
308
|
+
comment: "The class for Web Annotations.".freeze,
|
35
309
|
isDefinedBy: "oa:".freeze,
|
36
310
|
label: "Annotation".freeze,
|
37
311
|
type: "rdfs:Class".freeze
|
38
312
|
term :Choice,
|
39
|
-
comment:
|
313
|
+
comment: "A subClass of as:OrderedCollection that conveys to a consuming application that it should select one of the resources in the as:items list to use, rather than all of them. This is typically used to provide a choice of resources to render to the user, based on further supplied properties. If the consuming application cannot determine the user's preference, then it should use the first in the list.".freeze,
|
40
314
|
isDefinedBy: "oa:".freeze,
|
41
315
|
label: "Choice".freeze,
|
42
316
|
subClassOf: "http://www.w3.org/ns/activitystreams#OrderedCollection".freeze,
|
43
317
|
type: "rdfs:Class".freeze
|
44
318
|
term :CssSelector,
|
45
|
-
comment:
|
319
|
+
comment: "A CssSelector describes a Segment of interest in a representation that conforms to the Document Object Model through the use of the CSS selector specification.".freeze,
|
46
320
|
isDefinedBy: "oa:".freeze,
|
47
321
|
label: "CssSelector".freeze,
|
48
322
|
subClassOf: "oa:Selector".freeze,
|
49
323
|
type: "rdfs:Class".freeze
|
50
324
|
term :CssStyle,
|
51
|
-
comment:
|
325
|
+
comment: "A resource which describes styles for resources participating in the Annotation using CSS.".freeze,
|
52
326
|
isDefinedBy: "oa:".freeze,
|
53
327
|
label: "CssStyle".freeze,
|
54
328
|
subClassOf: "oa:Style".freeze,
|
55
329
|
type: "rdfs:Class".freeze
|
56
330
|
term :DataPositionSelector,
|
57
|
-
comment:
|
331
|
+
comment: "DataPositionSelector describes a range of data by recording the start and end positions of the selection in the stream. Position 0 would be immediately before the first byte, position 1 would be immediately before the second byte, and so on. The start byte is thus included in the list, but the end byte is not.".freeze,
|
58
332
|
isDefinedBy: "oa:".freeze,
|
59
333
|
label: "DataPositionSelector".freeze,
|
60
334
|
subClassOf: "oa:Selector".freeze,
|
61
335
|
type: "rdfs:Class".freeze
|
62
336
|
term :Direction,
|
63
|
-
comment:
|
337
|
+
comment: "A class to encapsulate the different text directions that a textual resource might take. It is not used directly in the Annotation Model, only its three instances.".freeze,
|
64
338
|
isDefinedBy: "oa:".freeze,
|
65
339
|
label: "Direction".freeze,
|
66
340
|
type: "rdfs:Class".freeze
|
67
341
|
term :FragmentSelector,
|
68
|
-
comment:
|
342
|
+
comment: "The FragmentSelector class is used to record the segment of a representation using the IRI fragment specification defined by the representation's media type.".freeze,
|
69
343
|
isDefinedBy: "oa:".freeze,
|
70
344
|
label: "FragmentSelector".freeze,
|
71
345
|
subClassOf: "oa:Selector".freeze,
|
72
346
|
type: "rdfs:Class".freeze
|
73
347
|
term :HttpRequestState,
|
74
|
-
comment:
|
348
|
+
comment: "The HttpRequestState class is used to record the HTTP request headers that a client SHOULD use to request the correct representation from the resource. ".freeze,
|
75
349
|
isDefinedBy: "oa:".freeze,
|
76
350
|
label: "HttpRequestState".freeze,
|
77
351
|
subClassOf: "oa:State".freeze,
|
78
352
|
type: "rdfs:Class".freeze
|
79
353
|
term :Motivation,
|
80
|
-
comment:
|
354
|
+
comment: "The Motivation class is used to record the user's intent or motivation for the creation of the Annotation, or the inclusion of the body or target, that it is associated with.".freeze,
|
81
355
|
isDefinedBy: "oa:".freeze,
|
82
356
|
label: "Motivation".freeze,
|
83
357
|
subClassOf: "skos:Concept".freeze,
|
84
358
|
type: "rdfs:Class".freeze
|
85
359
|
term :RangeSelector,
|
86
|
-
comment:
|
360
|
+
comment: "A Range Selector can be used to identify the beginning and the end of the selection by using other Selectors. The selection consists of everything from the beginning of the starting selector through to the beginning of the ending selector, but not including it.".freeze,
|
87
361
|
isDefinedBy: "oa:".freeze,
|
88
362
|
label: "RangeSelector".freeze,
|
89
363
|
subClassOf: "oa:Selector".freeze,
|
90
364
|
type: "rdfs:Class".freeze
|
91
365
|
term :ResourceSelection,
|
92
|
-
comment:
|
366
|
+
comment: "Instances of the ResourceSelection class identify part (described by an oa:Selector) of another resource (referenced with oa:hasSource), possibly from a particular representation of a resource (described by an oa:State). Please note that ResourceSelection is not used directly in the Web Annotation model, but is provided as a separate class for further application profiles to use, separate from oa:SpecificResource which has many Annotation specific features.".freeze,
|
93
367
|
isDefinedBy: "oa:".freeze,
|
94
368
|
label: "ResourceSelection".freeze,
|
95
369
|
type: "rdfs:Class".freeze
|
96
370
|
term :Selector,
|
97
|
-
comment:
|
371
|
+
comment: "A resource which describes the segment of interest in a representation of a Source resource, indicated with oa:hasSelector from the Specific Resource. This class is not used directly in the Annotation model, only its subclasses.".freeze,
|
98
372
|
isDefinedBy: "oa:".freeze,
|
99
373
|
label: "Selector".freeze,
|
100
374
|
type: "rdfs:Class".freeze
|
101
375
|
term :SpecificResource,
|
102
|
-
comment:
|
376
|
+
comment: "Instances of the SpecificResource class identify part of another resource (referenced with oa:hasSource), a particular representation of a resource, a resource with styling hints for renders, or any combination of these, as used within an Annotation.".freeze,
|
103
377
|
isDefinedBy: "oa:".freeze,
|
104
378
|
label: "SpecificResource".freeze,
|
105
379
|
subClassOf: "oa:ResourceSelection".freeze,
|
106
380
|
type: "rdfs:Class".freeze
|
107
381
|
term :State,
|
108
|
-
comment:
|
382
|
+
comment: "A State describes the intended state of a resource as applied to the particular Annotation, and thus provides the information needed to retrieve the correct representation of that resource.".freeze,
|
109
383
|
isDefinedBy: "oa:".freeze,
|
110
384
|
label: "State".freeze,
|
111
385
|
type: "rdfs:Class".freeze
|
112
386
|
term :Style,
|
113
|
-
comment:
|
387
|
+
comment: "A Style describes the intended styling of a resource as applied to the particular Annotation, and thus provides the information to ensure that rendering is consistent across implementations.".freeze,
|
114
388
|
isDefinedBy: "oa:".freeze,
|
115
389
|
label: "Style".freeze,
|
116
390
|
type: "rdfs:Class".freeze
|
117
391
|
term :SvgSelector,
|
118
|
-
comment:
|
392
|
+
comment: "An SvgSelector defines an area through the use of the Scalable Vector Graphics [SVG] standard. This allows the user to select a non-rectangular area of the content, such as a circle or polygon by describing the region using SVG. The SVG may be either embedded within the Annotation or referenced as an External Resource.".freeze,
|
119
393
|
isDefinedBy: "oa:".freeze,
|
120
394
|
label: "SvgSelector".freeze,
|
121
395
|
subClassOf: "oa:Selector".freeze,
|
122
396
|
type: "rdfs:Class".freeze
|
123
397
|
term :TextPositionSelector,
|
124
|
-
comment:
|
398
|
+
comment: "The TextPositionSelector describes a range of text by recording the start and end positions of the selection in the stream. Position 0 would be immediately before the first character, position 1 would be immediately before the second character, and so on.".freeze,
|
125
399
|
isDefinedBy: "oa:".freeze,
|
126
400
|
label: "TextPositionSelector".freeze,
|
127
401
|
subClassOf: "oa:Selector".freeze,
|
128
402
|
type: "rdfs:Class".freeze
|
129
403
|
term :TextQuoteSelector,
|
130
|
-
comment:
|
404
|
+
comment: "The TextQuoteSelector describes a range of text by copying it, and including some of the text immediately before (a prefix) and after (a suffix) it to distinguish between multiple copies of the same sequence of characters.".freeze,
|
131
405
|
isDefinedBy: "oa:".freeze,
|
132
406
|
label: "TextQuoteSelector".freeze,
|
133
407
|
subClassOf: "oa:Selector".freeze,
|
134
408
|
type: "rdfs:Class".freeze
|
135
409
|
term :TextualBody,
|
136
|
-
comment:
|
410
|
+
comment: "".freeze,
|
137
411
|
isDefinedBy: "oa:".freeze,
|
138
412
|
label: "TextualBody".freeze,
|
139
413
|
type: "rdfs:Class".freeze
|
140
414
|
term :TimeState,
|
141
|
-
comment:
|
415
|
+
comment: "A TimeState records the time at which the resource's state is appropriate for the Annotation, typically the time that the Annotation was created and/or a link to a persistent copy of the current version.".freeze,
|
142
416
|
isDefinedBy: "oa:".freeze,
|
143
417
|
label: "TimeState".freeze,
|
144
418
|
subClassOf: "oa:State".freeze,
|
145
419
|
type: "rdfs:Class".freeze
|
146
420
|
term :XPathSelector,
|
147
|
-
comment:
|
421
|
+
comment: " An XPathSelector is used to select elements and content within a resource that supports the Document Object Model via a specified XPath value.".freeze,
|
148
422
|
isDefinedBy: "oa:".freeze,
|
149
423
|
label: "XPathSelector".freeze,
|
150
424
|
subClassOf: "oa:Selector".freeze,
|
@@ -152,274 +426,270 @@ module RDF::Vocab
|
|
152
426
|
|
153
427
|
# Property definitions
|
154
428
|
property :annotationService,
|
155
|
-
comment:
|
156
|
-
|
157
|
-
This relationship is intended to be used both within Linked Data descriptions and as the rel type of a Link, via HTTP Link Headers rfc5988 for binary resources and in HTML <link> elements. For more information about these, please see the Annotation Protocol specification annotation-protocol.
|
158
|
-
).freeze,
|
429
|
+
comment: "The object of the relationship is the end point of a service that conforms to the annotation-protocol, and it may be associated with any resource. The expectation of asserting the relationship is that the object is the preferred service for maintaining annotations about the subject resource, according to the publisher of the relationship.\n\n This relationship is intended to be used both within Linked Data descriptions and as the rel type of a Link, via HTTP Link Headers rfc5988 for binary resources and in HTML <link> elements. For more information about these, please see the Annotation Protocol specification annotation-protocol.\n ".freeze,
|
159
430
|
isDefinedBy: "oa:".freeze,
|
160
431
|
label: "annotationService".freeze,
|
161
432
|
type: "rdf:Property".freeze
|
162
433
|
property :bodyValue,
|
163
|
-
comment:
|
164
|
-
).freeze,
|
434
|
+
comment: "The object of the predicate is a plain text string to be used as the content of the body of the Annotation. The value MUST be an xsd:string and that data type MUST NOT be expressed in the serialization. Note that language MUST NOT be associated with the value either as a language tag, as that is only available for rdf:langString .\n ".freeze,
|
165
435
|
domain: "oa:Annotation".freeze,
|
166
436
|
isDefinedBy: "oa:".freeze,
|
167
437
|
label: "bodyValue".freeze,
|
168
438
|
range: "xsd:string".freeze,
|
169
439
|
type: "rdf:Property".freeze
|
170
440
|
property :cachedSource,
|
171
|
-
comment:
|
441
|
+
comment: "A object of the relationship is a copy of the Source resource's representation, appropriate for the Annotation.".freeze,
|
172
442
|
domain: "oa:TimeState".freeze,
|
173
443
|
isDefinedBy: "oa:".freeze,
|
174
444
|
label: "cachedSource".freeze,
|
175
445
|
type: "rdf:Property".freeze
|
176
446
|
property :canonical,
|
177
|
-
comment:
|
447
|
+
comment: "A object of the relationship is the canonical IRI that can always be used to deduplicate the Annotation, regardless of the current IRI used to access the representation.".freeze,
|
178
448
|
isDefinedBy: "oa:".freeze,
|
179
449
|
label: "canonical".freeze,
|
180
450
|
type: "rdf:Property".freeze
|
181
451
|
property :end,
|
182
|
-
comment:
|
452
|
+
comment: "The end property is used to convey the 0-based index of the end position of a range of content.".freeze,
|
183
453
|
isDefinedBy: "oa:".freeze,
|
184
454
|
label: "end".freeze,
|
185
455
|
range: "xsd:nonNegativeInteger".freeze,
|
186
456
|
type: "rdf:Property".freeze
|
187
457
|
property :exact,
|
188
|
-
comment:
|
458
|
+
comment: "The object of the predicate is a copy of the text which is being selected, after normalization.".freeze,
|
189
459
|
isDefinedBy: "oa:".freeze,
|
190
460
|
label: "exact".freeze,
|
191
461
|
range: "xsd:string".freeze,
|
192
462
|
type: "rdf:Property".freeze
|
193
463
|
property :hasBody,
|
194
|
-
comment:
|
464
|
+
comment: "The object of the relationship is a resource that is a body of the Annotation.".freeze,
|
195
465
|
domain: "oa:Annotation".freeze,
|
196
466
|
isDefinedBy: "oa:".freeze,
|
197
467
|
label: "hasBody".freeze,
|
198
468
|
type: "rdf:Property".freeze
|
199
469
|
property :hasEndSelector,
|
200
|
-
comment:
|
470
|
+
comment: "The relationship between a RangeSelector and the Selector that describes the end position of the range. ".freeze,
|
201
471
|
domain: "oa:RangeSelector".freeze,
|
202
472
|
isDefinedBy: "oa:".freeze,
|
203
473
|
label: "hasEndSelector".freeze,
|
204
474
|
range: "oa:Selector".freeze,
|
205
475
|
type: "rdf:Property".freeze
|
206
476
|
property :hasPurpose,
|
207
|
-
comment:
|
477
|
+
comment: "The purpose served by the resource in the Annotation.".freeze,
|
208
478
|
isDefinedBy: "oa:".freeze,
|
209
479
|
label: "hasPurpose".freeze,
|
210
480
|
range: "oa:Motivation".freeze,
|
211
481
|
type: "rdf:Property".freeze
|
212
482
|
property :hasScope,
|
213
|
-
comment:
|
483
|
+
comment: "The scope or context in which the resource is used within the Annotation.".freeze,
|
214
484
|
domain: "oa:SpecificResource".freeze,
|
215
485
|
isDefinedBy: "oa:".freeze,
|
216
486
|
label: "hasScope".freeze,
|
217
487
|
type: "rdf:Property".freeze
|
218
488
|
property :hasSelector,
|
219
|
-
comment:
|
489
|
+
comment: "The object of the relationship is a Selector that describes the segment or region of interest within the source resource. Please note that the domain ( oa:ResourceSelection ) is not used directly in the Web Annotation model.".freeze,
|
220
490
|
domain: "oa:ResourceSelection".freeze,
|
221
491
|
isDefinedBy: "oa:".freeze,
|
222
492
|
label: "hasSelector".freeze,
|
223
493
|
range: "oa:Selector".freeze,
|
224
494
|
type: "rdf:Property".freeze
|
225
495
|
property :hasSource,
|
226
|
-
comment:
|
496
|
+
comment: "The resource that the ResourceSelection, or its subclass SpecificResource, is refined from, or more specific than. Please note that the domain ( oa:ResourceSelection ) is not used directly in the Web Annotation model.".freeze,
|
227
497
|
domain: "oa:ResourceSelection".freeze,
|
228
498
|
isDefinedBy: "oa:".freeze,
|
229
499
|
label: "hasSource".freeze,
|
230
500
|
type: "rdf:Property".freeze
|
231
501
|
property :hasStartSelector,
|
232
|
-
comment:
|
502
|
+
comment: "The relationship between a RangeSelector and the Selector that describes the start position of the range. ".freeze,
|
233
503
|
domain: "oa:RangeSelector".freeze,
|
234
504
|
isDefinedBy: "oa:".freeze,
|
235
505
|
label: "hasStartSelector".freeze,
|
236
506
|
range: "oa:Selector".freeze,
|
237
507
|
type: "rdf:Property".freeze
|
238
508
|
property :hasState,
|
239
|
-
comment:
|
509
|
+
comment: "The relationship between the ResourceSelection, or its subclass SpecificResource, and a State resource. Please note that the domain ( oa:ResourceSelection ) is not used directly in the Web Annotation model.".freeze,
|
240
510
|
domain: "oa:ResourceSelection".freeze,
|
241
511
|
isDefinedBy: "oa:".freeze,
|
242
512
|
label: "hasState".freeze,
|
243
513
|
range: "oa:State".freeze,
|
244
514
|
type: "rdf:Property".freeze
|
245
515
|
property :hasTarget,
|
246
|
-
comment:
|
516
|
+
comment: "The relationship between an Annotation and its Target.".freeze,
|
247
517
|
domain: "oa:Annotation".freeze,
|
248
518
|
isDefinedBy: "oa:".freeze,
|
249
519
|
label: "hasTarget".freeze,
|
250
520
|
type: "rdf:Property".freeze
|
251
521
|
property :motivatedBy,
|
252
|
-
comment:
|
522
|
+
comment: "The relationship between an Annotation and a Motivation that describes the reason for the Annotation's creation.".freeze,
|
253
523
|
domain: "oa:Annotation".freeze,
|
254
524
|
isDefinedBy: "oa:".freeze,
|
255
525
|
label: "motivatedBy".freeze,
|
256
526
|
range: "oa:Motivation".freeze,
|
257
527
|
type: "rdf:Property".freeze
|
258
528
|
property :prefix,
|
259
|
-
comment:
|
529
|
+
comment: "The object of the property is a snippet of content that occurs immediately before the content which is being selected by the Selector.".freeze,
|
260
530
|
isDefinedBy: "oa:".freeze,
|
261
531
|
label: "prefix".freeze,
|
262
532
|
range: "xsd:string".freeze,
|
263
533
|
type: "rdf:Property".freeze
|
264
534
|
property :processingLanguage,
|
265
|
-
comment:
|
535
|
+
comment: "The object of the property is the language that should be used for textual processing algorithms when dealing with the content of the resource, including hyphenation, line breaking, which font to use for rendering and so forth. The value must follow the recommendations of BCP47.".freeze,
|
266
536
|
isDefinedBy: "oa:".freeze,
|
267
537
|
label: "processingLanguage".freeze,
|
268
538
|
range: "xsd:string".freeze,
|
269
539
|
type: "rdf:Property".freeze
|
270
540
|
property :refinedBy,
|
271
|
-
comment:
|
541
|
+
comment: "The relationship between a Selector and another Selector or a State and a Selector or State that should be applied to the results of the first to refine the processing of the source resource. ".freeze,
|
272
542
|
isDefinedBy: "oa:".freeze,
|
273
543
|
label: "refinedBy".freeze,
|
274
544
|
type: "rdf:Property".freeze
|
275
545
|
property :renderedVia,
|
276
|
-
comment:
|
546
|
+
comment: "A system that was used by the application that created the Annotation to render the resource.".freeze,
|
277
547
|
domain: "oa:SpecificResource".freeze,
|
278
548
|
isDefinedBy: "oa:".freeze,
|
279
549
|
label: "renderedVia".freeze,
|
280
550
|
type: "rdf:Property".freeze
|
281
551
|
property :sourceDate,
|
282
|
-
comment:
|
552
|
+
comment: "The timestamp at which the Source resource should be interpreted as being applicable to the Annotation.".freeze,
|
283
553
|
domain: "oa:TimeState".freeze,
|
284
554
|
isDefinedBy: "oa:".freeze,
|
285
555
|
label: "sourceDate".freeze,
|
286
556
|
range: "xsd:dateTime".freeze,
|
287
557
|
type: "rdf:Property".freeze
|
288
558
|
property :sourceDateEnd,
|
289
|
-
comment:
|
559
|
+
comment: "The end timestamp of the interval over which the Source resource should be interpreted as being applicable to the Annotation.".freeze,
|
290
560
|
domain: "oa:TimeState".freeze,
|
291
561
|
isDefinedBy: "oa:".freeze,
|
292
562
|
label: "sourceDateEnd".freeze,
|
293
563
|
range: "xsd:dateTime".freeze,
|
294
564
|
type: "rdf:Property".freeze
|
295
565
|
property :sourceDateStart,
|
296
|
-
comment:
|
566
|
+
comment: "The start timestamp of the interval over which the Source resource should be interpreted as being applicable to the Annotation.".freeze,
|
297
567
|
domain: "oa:TimeState".freeze,
|
298
568
|
isDefinedBy: "oa:".freeze,
|
299
569
|
label: "sourceDateStart".freeze,
|
300
570
|
range: "xsd:dateTime".freeze,
|
301
571
|
type: "rdf:Property".freeze
|
302
572
|
property :start,
|
303
|
-
comment:
|
573
|
+
comment: "The start position in a 0-based index at which a range of content is selected from the data in the source resource.".freeze,
|
304
574
|
isDefinedBy: "oa:".freeze,
|
305
575
|
label: "start".freeze,
|
306
576
|
range: "xsd:nonNegativeInteger".freeze,
|
307
577
|
type: "rdf:Property".freeze
|
308
578
|
property :styleClass,
|
309
|
-
comment:
|
579
|
+
comment: "The name of the class used in the CSS description referenced from the Annotation that should be applied to the Specific Resource.".freeze,
|
310
580
|
domain: "oa:SpecificResource".freeze,
|
311
581
|
isDefinedBy: "oa:".freeze,
|
312
582
|
label: "styleClass".freeze,
|
313
583
|
range: "xsd:string".freeze,
|
314
584
|
type: "rdf:Property".freeze
|
315
585
|
property :styledBy,
|
316
|
-
comment:
|
586
|
+
comment: "A reference to a Stylesheet that should be used to apply styles to the Annotation rendering.".freeze,
|
317
587
|
domain: "oa:Annotation".freeze,
|
318
588
|
isDefinedBy: "oa:".freeze,
|
319
589
|
label: "styledBy".freeze,
|
320
590
|
range: "oa:Style".freeze,
|
321
591
|
type: "rdf:Property".freeze
|
322
592
|
property :suffix,
|
323
|
-
comment:
|
593
|
+
comment: "The snippet of text that occurs immediately after the text which is being selected.".freeze,
|
324
594
|
isDefinedBy: "oa:".freeze,
|
325
595
|
label: "suffix".freeze,
|
326
596
|
range: "xsd:string".freeze,
|
327
597
|
type: "rdf:Property".freeze
|
328
598
|
property :textDirection,
|
329
|
-
comment:
|
599
|
+
comment: "The direction of the text of the subject resource. There MUST only be one text direction associated with any given resource.".freeze,
|
330
600
|
isDefinedBy: "oa:".freeze,
|
331
601
|
label: "textDirection".freeze,
|
332
602
|
range: "oa:Direction".freeze,
|
333
603
|
type: "rdf:Property".freeze
|
334
604
|
property :via,
|
335
|
-
comment:
|
605
|
+
comment: "A object of the relationship is a resource from which the source resource was retrieved by the providing system.".freeze,
|
336
606
|
isDefinedBy: "oa:".freeze,
|
337
607
|
label: "via".freeze,
|
338
608
|
type: "rdf:Property".freeze
|
339
609
|
|
340
610
|
# Extra definitions
|
341
611
|
term :PreferContainedDescriptions,
|
342
|
-
comment:
|
612
|
+
comment: "An IRI to signal the client prefers to receive full descriptions of the Annotations from a container, not just their IRIs.".freeze,
|
343
613
|
isDefinedBy: "oa:".freeze,
|
344
614
|
label: "PreferContainedDescriptions".freeze,
|
345
615
|
type: "rdfs:Resource".freeze
|
346
616
|
term :PreferContainedIRIs,
|
347
|
-
comment:
|
617
|
+
comment: "An IRI to signal that the client prefers to receive only the IRIs of the Annotations from a container, not their full descriptions.".freeze,
|
348
618
|
isDefinedBy: "oa:".freeze,
|
349
619
|
label: "PreferContainedIRIs".freeze,
|
350
620
|
type: "rdfs:Resource".freeze
|
351
621
|
term :assessing,
|
352
|
-
comment:
|
622
|
+
comment: "The motivation for when the user intends to provide an assessment about the Target resource.".freeze,
|
353
623
|
isDefinedBy: "oa:".freeze,
|
354
624
|
label: "assessing".freeze,
|
355
625
|
type: "oa:Motivation".freeze
|
356
626
|
term :bookmarking,
|
357
|
-
comment:
|
627
|
+
comment: "The motivation for when the user intends to create a bookmark to the Target or part thereof.".freeze,
|
358
628
|
isDefinedBy: "oa:".freeze,
|
359
629
|
label: "bookmarking".freeze,
|
360
630
|
type: "oa:Motivation".freeze
|
361
631
|
term :classifying,
|
362
|
-
comment:
|
632
|
+
comment: "The motivation for when the user intends to that classify the Target as something.".freeze,
|
363
633
|
isDefinedBy: "oa:".freeze,
|
364
634
|
label: "classifying".freeze,
|
365
635
|
type: "oa:Motivation".freeze
|
366
636
|
term :commenting,
|
367
|
-
comment:
|
637
|
+
comment: "The motivation for when the user intends to comment about the Target.".freeze,
|
368
638
|
isDefinedBy: "oa:".freeze,
|
369
639
|
label: "commenting".freeze,
|
370
640
|
type: "oa:Motivation".freeze
|
371
641
|
term :describing,
|
372
|
-
comment:
|
642
|
+
comment: "The motivation for when the user intends to describe the Target, as opposed to a comment about them.".freeze,
|
373
643
|
isDefinedBy: "oa:".freeze,
|
374
644
|
label: "describing".freeze,
|
375
645
|
type: "oa:Motivation".freeze
|
376
646
|
term :editing,
|
377
|
-
comment:
|
647
|
+
comment: "The motivation for when the user intends to request a change or edit to the Target resource.".freeze,
|
378
648
|
isDefinedBy: "oa:".freeze,
|
379
649
|
label: "editing".freeze,
|
380
650
|
type: "oa:Motivation".freeze
|
381
651
|
term :highlighting,
|
382
|
-
comment:
|
652
|
+
comment: "The motivation for when the user intends to highlight the Target resource or segment of it.".freeze,
|
383
653
|
isDefinedBy: "oa:".freeze,
|
384
654
|
label: "highlighting".freeze,
|
385
655
|
type: "oa:Motivation".freeze
|
386
656
|
term :identifying,
|
387
|
-
comment:
|
657
|
+
comment: "The motivation for when the user intends to assign an identity to the Target or identify what is being depicted or described in the Target.".freeze,
|
388
658
|
isDefinedBy: "oa:".freeze,
|
389
659
|
label: "identifying".freeze,
|
390
660
|
type: "oa:Motivation".freeze
|
391
661
|
term :linking,
|
392
|
-
comment:
|
662
|
+
comment: "The motivation for when the user intends to link to a resource related to the Target.".freeze,
|
393
663
|
isDefinedBy: "oa:".freeze,
|
394
664
|
label: "linking".freeze,
|
395
665
|
type: "oa:Motivation".freeze
|
396
666
|
term :ltrDirection,
|
397
|
-
comment:
|
667
|
+
comment: "The direction of text that is read from left to right.".freeze,
|
398
668
|
isDefinedBy: "oa:".freeze,
|
399
669
|
label: "ltrDirection".freeze,
|
400
670
|
type: "oa:Direction".freeze
|
401
671
|
term :moderating,
|
402
|
-
comment:
|
672
|
+
comment: "The motivation for when the user intends to assign some value or quality to the Target.".freeze,
|
403
673
|
isDefinedBy: "oa:".freeze,
|
404
674
|
label: "moderating".freeze,
|
405
675
|
type: "oa:Motivation".freeze
|
406
676
|
term :questioning,
|
407
|
-
comment:
|
677
|
+
comment: "The motivation for when the user intends to ask a question about the Target.".freeze,
|
408
678
|
isDefinedBy: "oa:".freeze,
|
409
679
|
label: "questioning".freeze,
|
410
680
|
type: "oa:Motivation".freeze
|
411
681
|
term :replying,
|
412
|
-
comment:
|
682
|
+
comment: "The motivation for when the user intends to reply to a previous statement, either an Annotation or another resource.".freeze,
|
413
683
|
isDefinedBy: "oa:".freeze,
|
414
684
|
label: "replying".freeze,
|
415
685
|
type: "oa:Motivation".freeze
|
416
686
|
term :rtlDirection,
|
417
|
-
comment:
|
687
|
+
comment: "The direction of text that is read from right to left.".freeze,
|
418
688
|
isDefinedBy: "oa:".freeze,
|
419
689
|
label: "rtlDirection".freeze,
|
420
690
|
type: "oa:Direction".freeze
|
421
691
|
term :tagging,
|
422
|
-
comment:
|
692
|
+
comment: "The motivation for when the user intends to associate a tag with the Target.".freeze,
|
423
693
|
isDefinedBy: "oa:".freeze,
|
424
694
|
label: "tagging".freeze,
|
425
695
|
type: "oa:Motivation".freeze
|