rdf-vocab 2.2.8 → 2.2.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +14 -1
- data/lib/rdf/vocab/acl.rb +12 -0
- data/lib/rdf/vocab/doap.rb +3 -3
- data/lib/rdf/vocab/ebucore.rb +2008 -548
- data/lib/rdf/vocab/mo.rb +2 -0
- data/lib/rdf/vocab/rightsstatements.rb +14 -14
- data/lib/rdf/vocab/sioct.rb +277 -0
- metadata +38 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b30f4c5fd6a2cf381570897891daa52e94de888e
|
4
|
+
data.tar.gz: 9df5e58d11d54157cd8361db5ab9928273f289de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b0860d3ed7493aa0ef138530fbf916ee7a71d9c12051fb6e0b743f120397f26a327921d070a4acc3d2950daf49ffd29418bcbb817cbbae7cee310091ce39318
|
7
|
+
data.tar.gz: 60f8682988695e5a46d65bed408ad5cd7a638988d9e7d61493279db6d803501a6dc925db480280a23c9045e94f8cf613a73cb8d7acb4f173986f71e1c9bd862f
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.2.
|
1
|
+
2.2.9
|
data/lib/rdf/vocab.rb
CHANGED
@@ -110,7 +110,19 @@ module RDF
|
|
110
110
|
ebucore: {
|
111
111
|
uri: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#",
|
112
112
|
source: "https://www.ebu.ch/metadata/ontologies/ebucore/ebucore.rdf",
|
113
|
-
class_name: "EBUCore"
|
113
|
+
class_name: "EBUCore",
|
114
|
+
patch: %{
|
115
|
+
@prefix ebucore: <http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#> .
|
116
|
+
@prefix dc: <http://purl.org/dc/terms/> .
|
117
|
+
@prefix dc11: <http://purl.org/dc/elements/1.1/> .
|
118
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
|
119
|
+
DeleteExisting {
|
120
|
+
ebucore:Agent rdfs:subClassOf dc11:Agent .
|
121
|
+
} .
|
122
|
+
AddNew {
|
123
|
+
ebucore:Agent rdfs:subClassOf dc:Agent .
|
124
|
+
} .
|
125
|
+
}
|
114
126
|
},
|
115
127
|
edm: {
|
116
128
|
uri: "http://www.europeana.eu/schemas/edm/",
|
@@ -284,6 +296,7 @@ module RDF
|
|
284
296
|
uri: "http://rdfs.org/sioc/services#",
|
285
297
|
class_name: "SiocServices"
|
286
298
|
},
|
299
|
+
sioct: {uri: "http://rdfs.org/sioc/types#", class_name: "SiocTypes"},
|
287
300
|
skos: {uri: "http://www.w3.org/2004/02/skos/core#"},
|
288
301
|
skosxl: {uri: "http://www.w3.org/2008/05/skos-xl#", source: "http://www.w3.org/TR/skos-reference/skos-xl.rdf"},
|
289
302
|
v: {uri: "http://rdf.data-vocabulary.org/#", source: "etc/rdf.data-vocab.ttl"},
|
data/lib/rdf/vocab/acl.rb
CHANGED
@@ -32,6 +32,18 @@ module RDF::Vocab
|
|
32
32
|
label: "append".freeze,
|
33
33
|
subClassOf: ["acl:Access".freeze, "acl:Write".freeze],
|
34
34
|
type: "rdfs:Class".freeze
|
35
|
+
term :AuthenticatedAgent,
|
36
|
+
comment: %(A class of agents who have been authenticated.
|
37
|
+
In other words, anyone can access this resource, but not anonymously.
|
38
|
+
The social expectation is that the authentication process will provide an
|
39
|
+
identify and a name, or pseudonym.
|
40
|
+
\(A new ID should not be minted for every access: the intent is that the user
|
41
|
+
is able to continue to use the ID for continues interactions with peers,
|
42
|
+
and for example to develop a reputation\)
|
43
|
+
).freeze,
|
44
|
+
label: "Anyone authenticated".freeze,
|
45
|
+
subClassOf: "foaf:Agent".freeze,
|
46
|
+
type: "rdfs:Class".freeze
|
35
47
|
term :Authorization,
|
36
48
|
comment: %(An element of access control,
|
37
49
|
allowing agent to agents access of some kind to resources or classes of resources).freeze,
|
data/lib/rdf/vocab/doap.rb
CHANGED
@@ -116,7 +116,7 @@ module RDF::Vocab
|
|
116
116
|
comment: %(URI of a blog related to a project).freeze,
|
117
117
|
domain: "doap:Project".freeze,
|
118
118
|
label: "blog".freeze,
|
119
|
-
range: ["
|
119
|
+
range: ["rdfs:Resource".freeze, "sioctypes:Weblog".freeze],
|
120
120
|
:"rdfs:isDefinedBy" => %(doap:).freeze,
|
121
121
|
type: "rdf:Property".freeze
|
122
122
|
property :browse,
|
@@ -232,7 +232,7 @@ module RDF::Vocab
|
|
232
232
|
comment: %(Mailing list home page or email address.).freeze,
|
233
233
|
domain: "doap:Project".freeze,
|
234
234
|
label: "mailing list".freeze,
|
235
|
-
range: "
|
235
|
+
range: "sioctypes:MailingList".freeze,
|
236
236
|
:"rdfs:isDefinedBy" => %(doap:).freeze,
|
237
237
|
type: "rdf:Property".freeze
|
238
238
|
property :maintainer,
|
@@ -364,7 +364,7 @@ module RDF::Vocab
|
|
364
364
|
comment: %(URL of Wiki for collaborative discussion of project.).freeze,
|
365
365
|
domain: "doap:Project".freeze,
|
366
366
|
label: "wiki".freeze,
|
367
|
-
range: "
|
367
|
+
range: "sioctypes:Wiki".freeze,
|
368
368
|
:"rdfs:isDefinedBy" => %(doap:).freeze,
|
369
369
|
type: "rdf:Property".freeze
|
370
370
|
end
|
data/lib/rdf/vocab/ebucore.rb
CHANGED
@@ -12,17 +12,15 @@ module RDF::Vocab
|
|
12
12
|
# Ontology definition
|
13
13
|
ontology :"http://www.ebu.ch/metadata/ontologies/ebucore/ebucore",
|
14
14
|
:"cc:licence" => %(http://creativecommons.org/licenses/by-sa/3.0/).freeze,
|
15
|
-
:"dc11:contributor" => [%(Adam Wead, Penn State University).freeze, %(Casey Davis, WGBH).freeze, %(Chuck McCallum, WGBH).freeze, %(Cliff Ingham, City of Bloomington).freeze, %(Drew Myers, WGBH).freeze, %(Glenn Clatworthy, PBS).freeze, %(Jack Brighton, WILL Public Media).freeze, %(Julie Hardesty, Indian University Library).freeze, %(Kara
|
16
|
-
:"dc11:description" => [%(Guidelines: for the purpose of flexibility and interoperability with a wider range of implementations, some properties purposefully do not have a range and accept either a resource or a literal. When a resource is used, it is recommended to reuse objects defined in the model \(e.g. pair hasEvent/Event or hasRole/Role\). Example 1: x hasRole 'actor'. Example 2: x hasRole _:Role_1 \(a reference to the Concept Id from a SKOS Role vocabulary defined in the ontology\).).freeze, %(Note to implementers: The EBUCore ontology is used by a variety of users with different needs. Several EBUCore properties have no range to allow different implementations using entities or literals. As an implementer, it is your choice to go for one or the other for each property to have consistent expectations when parsing individuals. EBUCore also provides different classes defined as subclasses of skos:Concept. You can use these classes as entities in range of several properties currently left without range. EBUCore is expressed in RDF in order to facilitate such modelling and flexibility. As a consequence, propoerties appear in the documentation as annotation properties.).freeze, %(The EBUCore has been designed to make users benefit from the flexibility of RDF to adapt the names of Classes and properties to their respective needs. This means users are welcome to add their own subclasses \(e.g. to define the most appropriate BusinessObjects or Resources or Agents\) and subproperties.).freeze, %(The development of the EBUCore ontology is
|
15
|
+
:"dc11:contributor" => [%(Adam Wead, Penn State University).freeze, %(Casey Davis, WGBH).freeze, %(Chuck McCallum, WGBH).freeze, %(Cliff Ingham, City of Bloomington).freeze, %(Dalia R. Levine, HBO).freeze, %(Drew Myers, WGBH).freeze, %(Glenn Clatworthy, PBS).freeze, %(Jack Brighton, WILL Public Media).freeze, %(Julie Hardesty, Indian University Library).freeze, %(Kara van Malssen, AV Preserve).freeze, %(Karen Cariani, WGBH).freeze, %(Laurence Cook, metaCirque).freeze, %(Michael J. Giarlo, Penn State University).freeze, %(Peggy Griesinger, George Mason University Libraries).freeze, %(Rebecca Fraimow, WGBH).freeze, %(Rebecca Guenther, Rebecca Guenther Consulting).freeze, %(Sadie Roosa, WGBH).freeze, %(Valerie J. Miller, PBS).freeze],
|
16
|
+
:"dc11:description" => [%(Guidelines: for the purpose of flexibility and interoperability with a wider range of implementations, some properties purposefully do not have a range and accept either a resource or a literal. When a resource is used, it is recommended to reuse objects defined in the model \(e.g. pair hasEvent/Event or hasRole/Role\). Example 1: x hasRole 'actor'. Example 2: x hasRole _:Role_1 \(a reference to the Concept Id from a SKOS Role vocabulary defined in the ontology\).).freeze, %(Note to implementers: The EBUCore ontology is used by a variety of users with different needs. Several EBUCore properties have no range to allow different implementations using entities or literals. As an implementer, it is your choice to go for one or the other for each property to have consistent expectations when parsing individuals. EBUCore also provides different classes defined as subclasses of skos:Concept. You can use these classes as entities in range of several properties currently left without range. EBUCore is expressed in RDF in order to facilitate such modelling and flexibility. As a consequence, propoerties appear in the documentation as annotation properties.).freeze, %(The EBUCore has been designed to make users benefit from the flexibility of RDF to adapt the names of Classes and properties to their respective needs. This means users are welcome to add their own subclasses \(e.g. to define the most appropriate BusinessObjects or Resources or Agents\) and subproperties.).freeze, %(The development of the EBUCore ontology is a joint effort of the EBUCore and PBCore communities.).freeze],
|
17
17
|
:"dc11:rights" => %(Copyright 2015 EBU).freeze,
|
18
18
|
:"dc11:title" => %(EBUCore - the Dublin Core for media).freeze,
|
19
|
-
:"dc:issued" => %(2013-01-01).freeze,
|
20
|
-
:"dc:modified" => %(2015-08-04).freeze,
|
21
19
|
:"http://purl.org/vocab/vann/preferredNamespaceUri" => %(http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#).freeze,
|
22
|
-
:"
|
20
|
+
:"http://spinrdf.org/spin#imports" => %(http://topbraid.org/spin/owlrl-all).freeze,
|
23
21
|
:"owl:imports" => %(http://www.w3.org/2004/02/skos/core).freeze,
|
24
|
-
:"owl:priorVersion" => %(http://www.ebu.ch/metadata/ontologies/ebucore/
|
25
|
-
:"owl:versionInfo" => [%(Add
|
22
|
+
:"owl:priorVersion" => %(http://www.ebu.ch/metadata/ontologies/ebucore/20150804/ebucore_2015_08_04.rdf).freeze,
|
23
|
+
:"owl:versionInfo" => [%(Add CreativeCommons subclass to Rights.).freeze, %(Add FIMS Classes: BMContent, BMEssence, BMTemplate, etc.).freeze, %(Add Identifier as a class.).freeze, %(Add event start and end times and dateTimes).freeze, %(Add for each class an ids, a name a description when missing).freeze, %(Add frameHeight and frameHeightUnit).freeze, %(Add hasAudioCodec and hasVideoCodec).freeze, %(Add hasAudioTrack and hasVideoTrack).freeze, %(Add numberOfAudioTracks and numberOfVideoTracks).freeze, %(Add resourceType property.).freeze, %(Add videoEncodingLevel and audioEncodingLevel properties as subproperties of encodingLevel).freeze, %(Add videoEncodingProfile and audioEncodingProfile properties as subproperties of encodingProfile).freeze, %(Added eventPeriod property.).freeze, %(Added locationCode and hasLocationPicture).freeze, %(Added social medias: agentFacebook, agentTwitter, agentInstagram).freeze, %(Added two Classes: Action and Emotion.).freeze, %(Align with CCDM properties touching EBUCore classes).freeze, %(Alignment with EBUCore schema: add missing rightsClearanceFlag).freeze, %(CORRECTION: change PublicationPlanning into PublicationPlan).freeze, %(Clean the definition of equivalent classes and properties from external vocabularies like foaf: and core:).freeze, %(Extend bitRate properties with audio and video bitRate properties).freeze, %(Harmonisation with EBU CCDM: businessObjectId, businessObjectType, editorialObjectId, editorialObjectType, storageId, storageType .).freeze, %(Improved the relations around the notions of "hasContributor", "Character", "Cast".).freeze, %(Introduce Person as a superClass of Contact and rename Contact properties accordingly).freeze, %(Introduce new classes Artefact/Props/Food...).freeze, %(Introduced new TextLine Class and associated properties for timed text, annotation, etc.).freeze, %(Manage addresses as locations).freeze, %(Sanity check on property domain and ranges and definitions or labels).freeze, %(Support of specific timecode drop frame).freeze, %(Version 1.8).freeze, %(seasonNumber, Episode and episodeNumber.).freeze],
|
26
24
|
type: "owl:Ontology".freeze,
|
27
25
|
:"vs:term_status" => %(stable).freeze
|
28
26
|
|
@@ -32,6 +30,14 @@ module RDF::Vocab
|
|
32
30
|
label: "Access conditions".freeze,
|
33
31
|
subClassOf: "ebucore:Rights".freeze,
|
34
32
|
type: "rdfs:Class".freeze
|
33
|
+
term :Action,
|
34
|
+
label: "Action".freeze,
|
35
|
+
subClassOf: "owl:Thing".freeze,
|
36
|
+
type: "owl:Class".freeze
|
37
|
+
term :ActiveFormatDescriptorCode,
|
38
|
+
label: "Active format descriptor code".freeze,
|
39
|
+
subClassOf: "ebucore:Format".freeze,
|
40
|
+
type: "owl:Class".freeze
|
35
41
|
term :Affiliation,
|
36
42
|
comment: %(An Organisation to which a Contact is affiliated \(with period of validity\).).freeze,
|
37
43
|
label: "Affiliation".freeze,
|
@@ -40,7 +46,7 @@ module RDF::Vocab
|
|
40
46
|
term :Agent,
|
41
47
|
comment: %(A person / contact or organisation.).freeze,
|
42
48
|
label: "Agent".freeze,
|
43
|
-
subClassOf: "
|
49
|
+
subClassOf: "dc:Agent".freeze,
|
44
50
|
type: "rdfs:Class".freeze
|
45
51
|
term :AncillaryData,
|
46
52
|
comment: %(Any ancillary data provided with the content
|
@@ -56,12 +62,9 @@ module RDF::Vocab
|
|
56
62
|
label: "Ancillary data format".freeze,
|
57
63
|
subClassOf: "ebucore:DataFormat".freeze,
|
58
64
|
type: "rdfs:Class".freeze
|
59
|
-
term :
|
60
|
-
comment: %(
|
61
|
-
|
62
|
-
video audio file . An annotation can exist on its own and be related / associated to
|
63
|
-
other editorial objects or resources.).freeze,
|
64
|
-
label: "Annotation".freeze,
|
65
|
+
term :Artefact,
|
66
|
+
comment: %(To identify and describe artefacts used in a production \(on and behind the stage\).).freeze,
|
67
|
+
label: "Artefact".freeze,
|
65
68
|
subClassOf: "owl:Thing".freeze,
|
66
69
|
type: "rdfs:Class".freeze
|
67
70
|
term :Asset,
|
@@ -73,6 +76,19 @@ module RDF::Vocab
|
|
73
76
|
label: "Asset".freeze,
|
74
77
|
subClassOf: "owl:Thing".freeze,
|
75
78
|
type: "rdfs:Class".freeze
|
79
|
+
term :Atmosphere,
|
80
|
+
comment: %(To describe a feeling summarising the atmosphere.).freeze,
|
81
|
+
label: "Atmosphere".freeze,
|
82
|
+
subClassOf: "ebucore:Type".freeze,
|
83
|
+
type: "rdfs:Class".freeze
|
84
|
+
term :AudienceLevel,
|
85
|
+
comment: [%(The target audience \(target region, target
|
86
|
+
audience category but also parental guidance recommendation\) for which the media
|
87
|
+
resource is intended.).freeze, %(This is provided as free text in an annotation
|
88
|
+
label or as an identifier pointing to a term in a classification scheme.).freeze],
|
89
|
+
label: "Target audience".freeze,
|
90
|
+
subClassOf: "ebucore:Rating".freeze,
|
91
|
+
type: "rdfs:Class".freeze
|
76
92
|
term :AudienceRating,
|
77
93
|
comment: %(The audience by which the Resource can be
|
78
94
|
seen according to ratings like MPAA \(http://en.wikipedia.org/wiki/Motion_picture_rating_system\) or other organisational / national / local standards.).freeze,
|
@@ -88,6 +104,16 @@ module RDF::Vocab
|
|
88
104
|
label: "Audio channel".freeze,
|
89
105
|
subClassOf: "ebucore:Essence".freeze,
|
90
106
|
type: "rdfs:Class".freeze
|
107
|
+
term :AudioChannelPurpose,
|
108
|
+
comment: %(To describe the purpose of an AudioChannel e.g. dubbing.).freeze,
|
109
|
+
label: "Audio channel purpose".freeze,
|
110
|
+
subClassOf: "skos:Concept".freeze,
|
111
|
+
type: "owl:Class".freeze
|
112
|
+
term :AudioCodec,
|
113
|
+
comment: %(To provide information about an audio codec.).freeze,
|
114
|
+
label: "Audio codec".freeze,
|
115
|
+
subClassOf: "ebucore:Codec".freeze,
|
116
|
+
type: "rdfs:Class".freeze
|
91
117
|
term :AudioContent,
|
92
118
|
comment: %(An audioContent defines one component of a programme \(e.g. background
|
93
119
|
music\), its association with an audioGroup \(e.g. a 2.0 audioPackFormat of
|
@@ -97,8 +123,8 @@ module RDF::Vocab
|
|
97
123
|
subClassOf: "ebucore:AudioProgramme".freeze,
|
98
124
|
type: "rdfs:Class".freeze
|
99
125
|
term :AudioDescription,
|
126
|
+
comment: %(A Track containing audio description.).freeze,
|
100
127
|
label: "Audio description".freeze,
|
101
|
-
:"skos:prefLabel" => %(Audio description).freeze,
|
102
128
|
subClassOf: "ebucore:AudioTrack".freeze,
|
103
129
|
type: "rdfs:Class".freeze
|
104
130
|
term :AudioEncodingFormat,
|
@@ -106,19 +132,6 @@ module RDF::Vocab
|
|
106
132
|
label: "Audio encoding format".freeze,
|
107
133
|
subClassOf: "ebucore:EncodingFormat".freeze,
|
108
134
|
type: "rdfs:Class".freeze
|
109
|
-
term :AudioFormat,
|
110
|
-
comment: %(The technical characteristics of an
|
111
|
-
AudioResource such as the sampleRate. This is provided as free text in an annotation
|
112
|
-
label or as an identifier pointing to a term in a classification scheme e.g.
|
113
|
-
http://www.ebu.ch/metadata/ontologies/skos/ebu_AudioFormatCodeCS.rdf.).freeze,
|
114
|
-
label: "Audio Format".freeze,
|
115
|
-
subClassOf: "ebucore:Format".freeze,
|
116
|
-
type: "rdfs:Class".freeze
|
117
|
-
term :AudioPackFormat,
|
118
|
-
comment: %(The format of an AudioPack. Examples of audioPackFormats are 'stereo' and '5.1' for channel-based formats.).freeze,
|
119
|
-
label: "Audio pack format".freeze,
|
120
|
-
subClassOf: "ebucore:AudioFormat".freeze,
|
121
|
-
type: "rdfs:Class".freeze
|
122
135
|
term :AudioProgramme,
|
123
136
|
comment: %(A set of one or more audioContent that derive from the same material,
|
124
137
|
i.e. an audioMultiplex, and the definition of its multiplexed audioContents \(e.g.
|
@@ -131,11 +144,6 @@ module RDF::Vocab
|
|
131
144
|
label: "Audio stream".freeze,
|
132
145
|
subClassOf: "ebucore:Stream".freeze,
|
133
146
|
type: "rdfs:Class".freeze
|
134
|
-
term :AudioStreamFormat,
|
135
|
-
comment: %(The format of an AudioStream, e.g. PCM_FrontLeft or Dolby E.).freeze,
|
136
|
-
label: "Audio stream format".freeze,
|
137
|
-
subClassOf: "ebucore:AudioFormat".freeze,
|
138
|
-
type: "rdfs:Class".freeze
|
139
147
|
term :AudioTrack,
|
140
148
|
comment: [%(An audioTrack is the basic audio data container of a medium. Attribute is
|
141
149
|
an unambiguous reference to this container in a given medium.).freeze, %(An audioTrack object defines a component of an audioStream.
|
@@ -145,19 +153,29 @@ module RDF::Vocab
|
|
145
153
|
label: "Audio track".freeze,
|
146
154
|
subClassOf: "ebucore:Track".freeze,
|
147
155
|
type: "rdfs:Class".freeze
|
148
|
-
term :
|
149
|
-
comment: %(The
|
150
|
-
label: "
|
151
|
-
subClassOf: "ebucore:
|
156
|
+
term :BMContent,
|
157
|
+
comment: %(The FIMS BMContent.).freeze,
|
158
|
+
label: "BMContent".freeze,
|
159
|
+
subClassOf: "ebucore:EditorialObject".freeze,
|
160
|
+
type: "rdfs:Class".freeze
|
161
|
+
term :BMEssence,
|
162
|
+
comment: %(The FIMS Essence).freeze,
|
163
|
+
label: "BMEssence".freeze,
|
164
|
+
subClassOf: "ebucore:Essence".freeze,
|
165
|
+
type: "rdfs:Class".freeze
|
166
|
+
term :BMTemplate,
|
167
|
+
comment: %(A template describe as a BMEssence.).freeze,
|
168
|
+
label: "BMTemplate".freeze,
|
169
|
+
subClassOf: "ebucore:BMEssence".freeze,
|
152
170
|
type: "rdfs:Class".freeze
|
153
171
|
term :BibliographicalObject,
|
172
|
+
comment: %(Documents of various nature.).freeze,
|
154
173
|
label: "Bibliographical object".freeze,
|
155
|
-
:"skos:prefLabel" => %(Bibliographical object).freeze,
|
156
174
|
subClassOf: "ebucore:BusinessObject".freeze,
|
157
175
|
type: "rdfs:Class".freeze
|
158
176
|
term :Brand,
|
159
177
|
comment: %(A group of EditorialObjects having a Brand as a
|
160
|
-
common denominator).freeze,
|
178
|
+
common denominator.).freeze,
|
161
179
|
label: "Brand".freeze,
|
162
180
|
subClassOf: "ebucore:Group".freeze,
|
163
181
|
type: "rdfs:Class".freeze
|
@@ -168,6 +186,7 @@ module RDF::Vocab
|
|
168
186
|
fragment / part and / or audio, video data tracks\). Other types of BusinessObjects may
|
169
187
|
be defined as subclasses.).freeze,
|
170
188
|
label: "Business Object".freeze,
|
189
|
+
:"owl:disjointWith" => %(ebucore:Resource).freeze,
|
171
190
|
subClassOf: "owl:Thing".freeze,
|
172
191
|
type: "rdfs:Class".freeze
|
173
192
|
term :Captioning,
|
@@ -188,13 +207,18 @@ module RDF::Vocab
|
|
188
207
|
comment: %(A member of the cast list \(a list of performers/actors and associated fictitious
|
189
208
|
characters\).).freeze,
|
190
209
|
label: "Cast member".freeze,
|
191
|
-
subClassOf: "ebucore:
|
210
|
+
subClassOf: "ebucore:Person".freeze,
|
192
211
|
type: "rdfs:Class".freeze
|
193
212
|
term :Character,
|
194
213
|
comment: %(E.g. a fictitious contact / person.).freeze,
|
195
214
|
label: "Character".freeze,
|
196
|
-
subClassOf: "ebucore:
|
215
|
+
subClassOf: "ebucore:FictionalPerson".freeze,
|
197
216
|
type: "rdfs:Class".freeze
|
217
|
+
term :CityCode,
|
218
|
+
comment: %(To allocate a city code.).freeze,
|
219
|
+
label: "City code".freeze,
|
220
|
+
subClassOf: "skos:Concept".freeze,
|
221
|
+
type: "owl:Class".freeze
|
198
222
|
term :ClosedCaptions,
|
199
223
|
comment: %(Closed captioning is provided as separate
|
200
224
|
content.).freeze,
|
@@ -210,7 +234,7 @@ module RDF::Vocab
|
|
210
234
|
term :Codec,
|
211
235
|
comment: %(To provide information on a codec.).freeze,
|
212
236
|
label: "Codec".freeze,
|
213
|
-
subClassOf: "
|
237
|
+
subClassOf: "owl:Thing".freeze,
|
214
238
|
type: "rdfs:Class".freeze
|
215
239
|
term :Collection,
|
216
240
|
comment: %(A group of EditorialObjects. There can be many
|
@@ -228,6 +252,11 @@ module RDF::Vocab
|
|
228
252
|
label: "Colour space".freeze,
|
229
253
|
subClassOf: "ebucore:Format".freeze,
|
230
254
|
type: "rdfs:Class".freeze
|
255
|
+
term :CommercialCode,
|
256
|
+
comment: %(To identify a type of commercial content.).freeze,
|
257
|
+
label: "Commercial code".freeze,
|
258
|
+
subClassOf: "ebucore:Type".freeze,
|
259
|
+
type: "rdfs:Class".freeze
|
231
260
|
term :Component,
|
232
261
|
comment: %(A component e.g. audio, video, data or else or a MediaResource or Essence.).freeze,
|
233
262
|
label: "Component".freeze,
|
@@ -236,15 +265,12 @@ module RDF::Vocab
|
|
236
265
|
term :Contact,
|
237
266
|
comment: %(A physical person.).freeze,
|
238
267
|
label: "Contact".freeze,
|
239
|
-
subClassOf: "ebucore:
|
268
|
+
subClassOf: "ebucore:Person".freeze,
|
240
269
|
type: "rdfs:Class".freeze
|
241
|
-
term :
|
242
|
-
comment: %(
|
243
|
-
|
244
|
-
|
245
|
-
http://www.ebu.ch/metadata/ontologies/skos/ebu_ContainerFormatCS.rdf.).freeze,
|
246
|
-
label: "Container format".freeze,
|
247
|
-
subClassOf: "ebucore:Format".freeze,
|
270
|
+
term :ContainerEncodingFormat,
|
271
|
+
comment: %(To define the conatiner encoding format.).freeze,
|
272
|
+
label: "Container encoding format".freeze,
|
273
|
+
subClassOf: "ebucore:EncodingFormat".freeze,
|
248
274
|
type: "rdfs:Class".freeze
|
249
275
|
term :ContainerMimeType,
|
250
276
|
comment: %(The definition of the container if available as
|
@@ -254,23 +280,48 @@ module RDF::Vocab
|
|
254
280
|
label: "Container Mime type".freeze,
|
255
281
|
subClassOf: "ebucore:Format".freeze,
|
256
282
|
type: "rdfs:Class".freeze
|
283
|
+
term :ContentAlert,
|
284
|
+
comment: %(To provide information about a particular type of content potentially sensitive.).freeze,
|
285
|
+
label: "Content alert".freeze,
|
286
|
+
subClassOf: "ebucore:Type".freeze,
|
287
|
+
type: "rdfs:Class".freeze
|
257
288
|
term :Copyright,
|
258
289
|
comment: %(To provide a copyright
|
259
290
|
statement.).freeze,
|
260
291
|
label: "Copyright".freeze,
|
261
292
|
subClassOf: "ebucore:Rights".freeze,
|
262
293
|
type: "rdfs:Class".freeze
|
294
|
+
term :Costume,
|
295
|
+
comment: %(To identify and describe Costumes used in productions.).freeze,
|
296
|
+
label: "Costume".freeze,
|
297
|
+
subClassOf: "ebucore:Artefact".freeze,
|
298
|
+
type: "rdfs:Class".freeze
|
299
|
+
term :CountryCode,
|
300
|
+
comment: %(To identify a country by its ISO code.).freeze,
|
301
|
+
label: "Country code".freeze,
|
302
|
+
subClassOf: "skos:Concept".freeze,
|
303
|
+
type: "owl:Class".freeze
|
263
304
|
term :CoverageRestrictions,
|
264
305
|
comment: %(To provide information on possible restrictions
|
265
306
|
regarding the temporal and spatial coverage for publication.).freeze,
|
266
307
|
label: "Coverage restrictions".freeze,
|
267
308
|
subClassOf: "ebucore:Rights".freeze,
|
268
309
|
type: "rdfs:Class".freeze
|
310
|
+
term :CreativeCommons,
|
311
|
+
comment: %(A set of creative commons rights.).freeze,
|
312
|
+
label: "Creative commons".freeze,
|
313
|
+
subClassOf: "ebucore:Rights".freeze,
|
314
|
+
type: "rdfs:Class".freeze
|
269
315
|
term :Crew,
|
270
|
-
comment: %(
|
316
|
+
comment: %(A member of the Crew.).freeze,
|
271
317
|
label: "Crew member".freeze,
|
272
|
-
subClassOf: "ebucore:
|
318
|
+
subClassOf: "ebucore:Person".freeze,
|
273
319
|
type: "rdfs:Class".freeze
|
320
|
+
term :CurrencyCode,
|
321
|
+
comment: %(To identify a currency by its ISO code.).freeze,
|
322
|
+
label: "Currency code".freeze,
|
323
|
+
subClassOf: "skos:Concept".freeze,
|
324
|
+
type: "owl:Class".freeze
|
274
325
|
term :DataFormat,
|
275
326
|
comment: %(To provide addtional technical information on
|
276
327
|
the characteristics of data streams in a MediaResource including but not limited to
|
@@ -296,7 +347,7 @@ module RDF::Vocab
|
|
296
347
|
other sort of Event that the content of the BusinessObject or resource relates
|
297
348
|
to.).freeze,
|
298
349
|
label: "Depicted Event".freeze,
|
299
|
-
subClassOf: "
|
350
|
+
subClassOf: "ebucore:Event".freeze,
|
300
351
|
type: "rdfs:Class".freeze
|
301
352
|
term :Disclaimer,
|
302
353
|
comment: %(To provide a disclaimer of any
|
@@ -335,6 +386,10 @@ module RDF::Vocab
|
|
335
386
|
label: "Editorial Object".freeze,
|
336
387
|
subClassOf: "ebucore:BusinessObject".freeze,
|
337
388
|
type: "rdfs:Class".freeze
|
389
|
+
term :Emotion,
|
390
|
+
label: "Emotion".freeze,
|
391
|
+
subClassOf: "owl:Thing".freeze,
|
392
|
+
type: "owl:Class".freeze
|
338
393
|
term :EncodingFormat,
|
339
394
|
comment: %(To provide a definition of the encoding format
|
340
395
|
for audio and video. This is provided as free text in an annotation label or as an
|
@@ -344,6 +399,10 @@ module RDF::Vocab
|
|
344
399
|
label: "Encoding".freeze,
|
345
400
|
subClassOf: "ebucore:Format".freeze,
|
346
401
|
type: "rdfs:Class".freeze
|
402
|
+
term :Episode,
|
403
|
+
label: "Episode".freeze,
|
404
|
+
subClassOf: "ebucore:EditorialObject".freeze,
|
405
|
+
type: "rdfs:Class".freeze
|
347
406
|
term :Essence,
|
348
407
|
comment: %(In some audiovisual standardisation groups,
|
349
408
|
Essence is preferred to MediaResource. In also has subclasses well known as MediaObject
|
@@ -356,6 +415,7 @@ module RDF::Vocab
|
|
356
415
|
new sub-classes of event.).freeze, %(An event related to the media resource, e.g.
|
357
416
|
depicted in the resource \(possibly fictional\), etc.).freeze],
|
358
417
|
label: "Event".freeze,
|
418
|
+
:"owl:equivalentClass" => %(http://www.bbc.co.uk/ontologies/coreconcepts/Event).freeze,
|
359
419
|
subClassOf: "owl:Thing".freeze,
|
360
420
|
type: "rdfs:Class".freeze
|
361
421
|
term :ExploitationIssues,
|
@@ -365,10 +425,30 @@ module RDF::Vocab
|
|
365
425
|
subClassOf: "ebucore:Rights".freeze,
|
366
426
|
type: "rdfs:Class".freeze
|
367
427
|
term :Feature,
|
428
|
+
comment: %(The editorial object for a feature film.).freeze,
|
368
429
|
label: "Feature".freeze,
|
369
|
-
:"skos:prefLabel" => %(Feature).freeze,
|
370
430
|
subClassOf: "ebucore:EditorialObject".freeze,
|
371
431
|
type: "rdfs:Class".freeze
|
432
|
+
term :FictionalEvent,
|
433
|
+
comment: %(To describe a fictional Event.).freeze,
|
434
|
+
label: "Fictional event".freeze,
|
435
|
+
subClassOf: "ebucore:Event".freeze,
|
436
|
+
type: "rdfs:Class".freeze
|
437
|
+
term :FictionalLocation,
|
438
|
+
comment: %(To describe a fictional Location.).freeze,
|
439
|
+
label: "Fictional location".freeze,
|
440
|
+
subClassOf: "ebucore:Location".freeze,
|
441
|
+
type: "rdfs:Class".freeze
|
442
|
+
term :FictionalOrganisation,
|
443
|
+
comment: %(To define a fictional Organisation.).freeze,
|
444
|
+
label: "Fictional organisation".freeze,
|
445
|
+
subClassOf: "ebucore:Organisation".freeze,
|
446
|
+
type: "rdfs:Class".freeze
|
447
|
+
term :FictionalPerson,
|
448
|
+
comment: %(To describe a fictional Person, e.g. a character in a drama.).freeze,
|
449
|
+
label: "Fictional person".freeze,
|
450
|
+
subClassOf: "ebucore:Person".freeze,
|
451
|
+
type: "rdfs:Class".freeze
|
372
452
|
term :FileFormat,
|
373
453
|
comment: %(A file format for Resources other than
|
374
454
|
audiovisual resources. The format is defined as free text or pointing at a term in a
|
@@ -377,6 +457,11 @@ module RDF::Vocab
|
|
377
457
|
label: "File format".freeze,
|
378
458
|
subClassOf: "ebucore:Format".freeze,
|
379
459
|
type: "rdfs:Class".freeze
|
460
|
+
term :Food,
|
461
|
+
comment: %(To describe Food shown or consumed in productions.).freeze,
|
462
|
+
label: "Food".freeze,
|
463
|
+
subClassOf: "ebucore:Artefact".freeze,
|
464
|
+
type: "rdfs:Class".freeze
|
380
465
|
term :Format,
|
381
466
|
comment: %(The format provides technical information on
|
382
467
|
the format of a Resource. A BusinessObject can be instantiated in a variety of Resources
|
@@ -388,7 +473,6 @@ module RDF::Vocab
|
|
388
473
|
term :Generation,
|
389
474
|
comment: %(Identifies the generation of a version of a resource, i.e. master, edit master, distribution copy, etc.).freeze,
|
390
475
|
label: "Generation".freeze,
|
391
|
-
:"skos:prefLabel" => %(Generation).freeze,
|
392
476
|
subClassOf: "ebucore:Format".freeze,
|
393
477
|
type: "rdfs:Class".freeze
|
394
478
|
term :Genre,
|
@@ -412,9 +496,14 @@ module RDF::Vocab
|
|
412
496
|
label: "IPR restrictions".freeze,
|
413
497
|
subClassOf: "ebucore:Rights".freeze,
|
414
498
|
type: "rdfs:Class".freeze
|
499
|
+
term :Identifier,
|
500
|
+
comment: %(To support the use of structured identifiers.).freeze,
|
501
|
+
label: "Identifier".freeze,
|
502
|
+
subClassOf: "owl:Thing".freeze,
|
503
|
+
type: "rdfs:Class".freeze
|
415
504
|
term :Image,
|
416
505
|
comment: %(A still image / thumbnail / key frame / logo
|
417
|
-
related to the media resource or being the media resource itself).freeze,
|
506
|
+
related to the media resource or being the media resource itself.).freeze,
|
418
507
|
label: "Image".freeze,
|
419
508
|
subClassOf: "ebucore:BusinessObject".freeze,
|
420
509
|
type: "rdfs:Class".freeze
|
@@ -426,20 +515,33 @@ module RDF::Vocab
|
|
426
515
|
label: "Image format".freeze,
|
427
516
|
subClassOf: "ebucore:Format".freeze,
|
428
517
|
type: "rdfs:Class".freeze
|
518
|
+
term :IntendedAudience,
|
519
|
+
comment: %(To identify the audience for which the content was created.).freeze,
|
520
|
+
label: "Intended audience".freeze,
|
521
|
+
subClassOf: "ebucore:Type".freeze,
|
522
|
+
type: "rdfs:Class".freeze
|
523
|
+
term :IntentionCode,
|
524
|
+
comment: %(To indicate the purpose for which content was created.).freeze,
|
525
|
+
label: "Intention code".freeze,
|
526
|
+
subClassOf: "ebucore:Type".freeze,
|
527
|
+
type: "rdfs:Class".freeze
|
429
528
|
term :Item,
|
430
529
|
comment: %(An item e.g. newsItem or sportItem).freeze,
|
431
530
|
label: "Item".freeze,
|
432
531
|
subClassOf: "ebucore:EditorialObject".freeze,
|
433
532
|
type: "rdfs:Class".freeze
|
434
533
|
term :KeyCareerEvent,
|
534
|
+
comment: %(To describe a key career Event of a Contact.).freeze,
|
435
535
|
label: "Key career event".freeze,
|
436
536
|
subClassOf: "ebucore:KeyEvent".freeze,
|
437
537
|
type: "rdfs:Class".freeze
|
438
538
|
term :KeyEvent,
|
539
|
+
comment: %(To describe a significant event.).freeze,
|
439
540
|
label: "Key event".freeze,
|
440
|
-
subClassOf: "
|
541
|
+
subClassOf: "ebucore:Event".freeze,
|
441
542
|
type: "rdfs:Class".freeze
|
442
543
|
term :KeyPersonalEvent,
|
544
|
+
comment: %(A key personal Event of a Contact.).freeze,
|
443
545
|
label: "Key personal event".freeze,
|
444
546
|
subClassOf: "ebucore:KeyEvent".freeze,
|
445
547
|
type: "rdfs:Class".freeze
|
@@ -472,6 +574,7 @@ module RDF::Vocab
|
|
472
574
|
location.).freeze, %(This is provided as free text in an annotation
|
473
575
|
label or as an identifier pointing to a term in a classification scheme.).freeze],
|
474
576
|
label: "Location".freeze,
|
577
|
+
:"owl:equivalentClass" => %(http://www.bbc.co.uk/ontologies/coreconcepts/Place).freeze,
|
475
578
|
subClassOf: "owl:Thing".freeze,
|
476
579
|
type: "rdfs:Class".freeze
|
477
580
|
term :Logo,
|
@@ -492,6 +595,11 @@ module RDF::Vocab
|
|
492
595
|
label: "Media Resource".freeze,
|
493
596
|
subClassOf: "ebucore:Resource".freeze,
|
494
597
|
type: "rdfs:Class".freeze
|
598
|
+
term :MediaType,
|
599
|
+
comment: %(To provide additional information on the type of media.).freeze,
|
600
|
+
label: "Media type".freeze,
|
601
|
+
subClassOf: "ebucore:Format".freeze,
|
602
|
+
type: "rdfs:Class".freeze
|
495
603
|
term :Medium,
|
496
604
|
comment: %(To provide information on the medium formats in
|
497
605
|
which the resource is available. This is provided as free text in an annotation label or
|
@@ -500,8 +608,8 @@ module RDF::Vocab
|
|
500
608
|
subClassOf: "ebucore:Format".freeze,
|
501
609
|
type: "rdfs:Class".freeze
|
502
610
|
term :MetadataTrack,
|
611
|
+
comment: %(A Track on which metadata is embedded \(e.g. MXF\).).freeze,
|
503
612
|
label: "Metadata track".freeze,
|
504
|
-
:"skos:prefLabel" => %(Metadata track).freeze,
|
505
613
|
subClassOf: "ebucore:Track".freeze,
|
506
614
|
type: "rdfs:Class".freeze
|
507
615
|
term :MimeType,
|
@@ -541,6 +649,7 @@ module RDF::Vocab
|
|
541
649
|
term :Organisation,
|
542
650
|
comment: %(An organisation \(business, corporation, federation, etc.\) or moral agent \(gvernment body\).).freeze,
|
543
651
|
label: "Organisation".freeze,
|
652
|
+
:"owl:equivalentClass" => [%(foaf:Organization).freeze, %(http://www.bbc.co.uk/ontologies/coreconcepts/Organisation).freeze],
|
544
653
|
subClassOf: "ebucore:Agent".freeze,
|
545
654
|
type: "rdfs:Class".freeze
|
546
655
|
term :OriginalLanguage,
|
@@ -548,7 +657,7 @@ module RDF::Vocab
|
|
548
657
|
BusinessObject or Resource has been created and released. This is provided as free text
|
549
658
|
in an annotation label or as an identifier pointing to a term in a classification
|
550
659
|
scheme.).freeze,
|
551
|
-
label: "
|
660
|
+
label: "Language".freeze,
|
552
661
|
subClassOf: "ebucore:Language".freeze,
|
553
662
|
type: "rdfs:Class".freeze
|
554
663
|
term :Part,
|
@@ -561,6 +670,17 @@ module RDF::Vocab
|
|
561
670
|
label: "Part, Fragment, Segment".freeze,
|
562
671
|
subClassOf: "ebucore:EditorialObject".freeze,
|
563
672
|
type: "rdfs:Class".freeze
|
673
|
+
term :Party,
|
674
|
+
comment: %(To identify a Party intervening in a transaction or contractual agreement.).freeze,
|
675
|
+
label: "Party".freeze,
|
676
|
+
subClassOf: "ebucore:Agent".freeze,
|
677
|
+
type: "rdfs:Class".freeze
|
678
|
+
term :Person,
|
679
|
+
comment: %(To describe a Person.).freeze,
|
680
|
+
label: "Person".freeze,
|
681
|
+
:"owl:equivalentClass" => [%(foaf:Person).freeze, %(http://www.bbc.co.uk/ontologies/coreconcepts/Person).freeze],
|
682
|
+
subClassOf: "ebucore:Agent".freeze,
|
683
|
+
type: "rdfs:Class".freeze
|
564
684
|
term :Pictogram,
|
565
685
|
comment: %(A visual / graphical representation of a concept.).freeze,
|
566
686
|
label: "Pictogram".freeze,
|
@@ -569,20 +689,31 @@ module RDF::Vocab
|
|
569
689
|
term :Picture,
|
570
690
|
comment: %(A photography, a logo, a pictogram, etc.).freeze,
|
571
691
|
label: "Picture".freeze,
|
692
|
+
:"owl:equivalentClass" => %(foaf:img).freeze,
|
572
693
|
subClassOf: "ebucore:Resource".freeze,
|
573
694
|
type: "rdfs:Class".freeze
|
695
|
+
term :PictureDisplayFormat,
|
696
|
+
label: "Picture display format code".freeze,
|
697
|
+
subClassOf: "ebucore:Format".freeze,
|
698
|
+
type: "rdfs:Class".freeze
|
574
699
|
term :Programme,
|
575
700
|
comment: %(An EditorialObject corresponding to a
|
576
701
|
MediaResource ready for publication.).freeze,
|
577
702
|
label: "Programme".freeze,
|
578
703
|
subClassOf: "ebucore:EditorialObject".freeze,
|
579
704
|
type: "rdfs:Class".freeze
|
705
|
+
term :Props,
|
706
|
+
comment: %(To identify and describe Props used in productions \(e.g. vehicles, objects of various shapes and brand and purpose, etc.\).).freeze,
|
707
|
+
label: "Props".freeze,
|
708
|
+
:"owl:equivalentClass" => %(foaf:Agent).freeze,
|
709
|
+
subClassOf: "ebucore:Artefact".freeze,
|
710
|
+
type: "rdfs:Class".freeze
|
580
711
|
term :PublicationChannel,
|
581
712
|
comment: %(The name of the channel through which a
|
582
713
|
Resource has been published as a PublicationEvent. A PublicationChannel can use a
|
583
714
|
variety of medias e.g. broadcast or online.).freeze,
|
584
715
|
label: "Publication Channel".freeze,
|
585
|
-
subClassOf: "
|
716
|
+
subClassOf: "ebucore:Service".freeze,
|
586
717
|
type: "rdfs:Class".freeze
|
587
718
|
term :PublicationEvent,
|
588
719
|
comment: %(To describe any manifestation of a media
|
@@ -597,7 +728,11 @@ module RDF::Vocab
|
|
597
728
|
label: "Publication History".freeze,
|
598
729
|
subClassOf: "owl:Thing".freeze,
|
599
730
|
type: "rdfs:Class".freeze
|
600
|
-
term :
|
731
|
+
term :PublicationMedium,
|
732
|
+
label: "Publication medium".freeze,
|
733
|
+
subClassOf: "skos:Concept".freeze,
|
734
|
+
type: "owl:Class".freeze
|
735
|
+
term :PublicationPlan,
|
601
736
|
comment: %(A collection of PublicationEvents organised as a PublicationPlanning.).freeze,
|
602
737
|
label: "Publication History".freeze,
|
603
738
|
subClassOf: "owl:Thing".freeze,
|
@@ -614,12 +749,14 @@ module RDF::Vocab
|
|
614
749
|
Organisation.).freeze, %(This is provided as free text in an annotation
|
615
750
|
label or as an identifier pointing to a term in a classification scheme.).freeze],
|
616
751
|
label: "Rating".freeze,
|
752
|
+
:"owl:disjointWith" => [%(ebucore:Asset).freeze, %(ebucore:BusinessObject).freeze, %(ebucore:PublicationEvent).freeze, %(ebucore:Resource).freeze],
|
617
753
|
subClassOf: "owl:Thing".freeze,
|
618
754
|
type: "rdfs:Class".freeze
|
619
755
|
term :Resource,
|
620
756
|
comment: %(A manifestation of a
|
621
757
|
BusinessObject.).freeze,
|
622
758
|
label: "Resource".freeze,
|
759
|
+
:"owl:disjointWith" => %(ebucore:BusinessObject).freeze,
|
623
760
|
subClassOf: "owl:Thing".freeze,
|
624
761
|
type: "rdfs:Class".freeze
|
625
762
|
term :Rights,
|
@@ -641,6 +778,11 @@ module RDF::Vocab
|
|
641
778
|
label: "Role".freeze,
|
642
779
|
subClassOf: "skos:Concept".freeze,
|
643
780
|
type: "rdfs:Class".freeze
|
781
|
+
term :Scene,
|
782
|
+
comment: %(A specifc type of Part.).freeze,
|
783
|
+
label: "Scene".freeze,
|
784
|
+
subClassOf: "ebucore:Part".freeze,
|
785
|
+
type: "rdfs:Class".freeze
|
644
786
|
term :Season,
|
645
787
|
comment: %(A series can be composed of one or more seasons
|
646
788
|
clustering a certain number of episodes. Fro this reason, seasons are related to series
|
@@ -660,6 +802,16 @@ module RDF::Vocab
|
|
660
802
|
label: "Service".freeze,
|
661
803
|
subClassOf: "owl:Thing".freeze,
|
662
804
|
type: "rdfs:Class".freeze
|
805
|
+
term :Shot,
|
806
|
+
comment: %(A specifc type of Part.).freeze,
|
807
|
+
label: "Shot".freeze,
|
808
|
+
subClassOf: "ebucore:Part".freeze,
|
809
|
+
type: "rdfs:Class".freeze
|
810
|
+
term :SignLanguageCode,
|
811
|
+
comment: %(To identify a sign language by its code.).freeze,
|
812
|
+
label: "Sign language code".freeze,
|
813
|
+
subClassOf: "skos:Concept".freeze,
|
814
|
+
type: "owl:Class".freeze
|
663
815
|
term :Signing,
|
664
816
|
comment: %(To signal the presence of Signing for hard of
|
665
817
|
hearing users. The type of Signing \(e.g. incursted in or else\) or language of Signing
|
@@ -672,7 +824,7 @@ module RDF::Vocab
|
|
672
824
|
signing format. This is provided as free text in an annotation label or as an identifier
|
673
825
|
pointing to a term in a classification scheme.).freeze,
|
674
826
|
label: "Signing format".freeze,
|
675
|
-
subClassOf: "
|
827
|
+
subClassOf: "skos:Concept".freeze,
|
676
828
|
type: "rdfs:Class".freeze
|
677
829
|
term :SportItem,
|
678
830
|
comment: %(A SportItem aggregates all information about a sport event.).freeze,
|
@@ -680,16 +832,20 @@ module RDF::Vocab
|
|
680
832
|
subClassOf: "ebucore:Item".freeze,
|
681
833
|
type: "rdfs:Class".freeze
|
682
834
|
term :Staff,
|
683
|
-
comment: %(
|
835
|
+
comment: %(A member of Staff.).freeze,
|
684
836
|
label: "Staff member.".freeze,
|
685
|
-
subClassOf: "ebucore:
|
837
|
+
subClassOf: "ebucore:Person".freeze,
|
686
838
|
type: "rdfs:Class".freeze
|
687
839
|
term :Standard,
|
688
840
|
comment: %(identifies the technical video standard of a resource, i.e. NTSC or PAL.).freeze,
|
689
841
|
label: "Standard".freeze,
|
690
|
-
:"skos:prefLabel" => %(Standard).freeze,
|
691
842
|
subClassOf: "ebucore:Format".freeze,
|
692
843
|
type: "rdfs:Class".freeze
|
844
|
+
term :Sticker,
|
845
|
+
comment: %(A sticker associated with a Costume.).freeze,
|
846
|
+
label: "Sticker".freeze,
|
847
|
+
subClassOf: "ebucore:Picture".freeze,
|
848
|
+
type: "rdfs:Class".freeze
|
693
849
|
term :StorageType,
|
694
850
|
comment: %(The type of storage used for the repository.
|
695
851
|
This is provided as free text in an annotation label or as an identifier pointing to a
|
@@ -729,12 +885,32 @@ module RDF::Vocab
|
|
729
885
|
label: "TV Programme".freeze,
|
730
886
|
subClassOf: "ebucore:Programme".freeze,
|
731
887
|
type: "rdfs:Class".freeze
|
732
|
-
term :
|
733
|
-
comment: %(
|
734
|
-
|
735
|
-
|
736
|
-
subClassOf: "ebucore:
|
888
|
+
term :Team,
|
889
|
+
comment: %(To define a Team.).freeze,
|
890
|
+
label: "Team".freeze,
|
891
|
+
:"owl:equivalentClass" => %(foaf:Group).freeze,
|
892
|
+
subClassOf: "ebucore:Agent".freeze,
|
893
|
+
type: "rdfs:Class".freeze
|
894
|
+
term :Template,
|
895
|
+
comment: %(An Essence defined as a Template with all associated technical parameters.).freeze,
|
896
|
+
label: "Template".freeze,
|
897
|
+
subClassOf: "ebucore:MediaResource".freeze,
|
737
898
|
type: "rdfs:Class".freeze
|
899
|
+
term :TerritoryCode,
|
900
|
+
comment: %(To identify a territory e.g. by its UN code.).freeze,
|
901
|
+
label: "Territory code".freeze,
|
902
|
+
subClassOf: "skos:Concept".freeze,
|
903
|
+
type: "owl:Class".freeze
|
904
|
+
term :TextLine,
|
905
|
+
comment: %(To provide lines of text extracted from or additional to the resource.).freeze,
|
906
|
+
label: "Text line".freeze,
|
907
|
+
subClassOf: "owl:Thing".freeze,
|
908
|
+
type: "owl:Class".freeze
|
909
|
+
term :TextUsageType,
|
910
|
+
comment: %(To specify the usage of a text.).freeze,
|
911
|
+
label: "Text usage type".freeze,
|
912
|
+
subClassOf: "skos:Concept".freeze,
|
913
|
+
type: "owl:Class".freeze
|
738
914
|
term :Thumbnail,
|
739
915
|
comment: %(A thumbnail is a low resolution picture that
|
740
916
|
can be associated with EditorialObjects or e.g. MediaResources or
|
@@ -743,10 +919,27 @@ module RDF::Vocab
|
|
743
919
|
subClassOf: "ebucore:Picture".freeze,
|
744
920
|
type: "rdfs:Class".freeze
|
745
921
|
term :TimecodeTrack,
|
746
|
-
comment: %(A track with timecode information.).freeze,
|
922
|
+
comment: %(A track with timecode information e.g. in MXF.).freeze,
|
747
923
|
label: "Timecode track".freeze,
|
748
924
|
subClassOf: "ebucore:Track".freeze,
|
749
925
|
type: "rdfs:Class".freeze
|
926
|
+
term :TimedTextAuthoringTechnique,
|
927
|
+
label: "Timed text authoring technique".freeze,
|
928
|
+
subClassOf: "ebucore:Format".freeze,
|
929
|
+
type: "rdfs:Class".freeze
|
930
|
+
term :TimedTextContentType,
|
931
|
+
label: "Timed text content type".freeze,
|
932
|
+
subClassOf: "ebucore:Format".freeze,
|
933
|
+
type: "rdfs:Class".freeze
|
934
|
+
term :TimedTextSubtitleTargetFormat,
|
935
|
+
label: "Timed text subtitle target format".freeze,
|
936
|
+
subClassOf: "ebucore:Format".freeze,
|
937
|
+
type: "rdfs:Class".freeze
|
938
|
+
term :TimelineTrack,
|
939
|
+
comment: %(To define a time sequence of EditorialObjects.).freeze,
|
940
|
+
label: "Timeline track".freeze,
|
941
|
+
subClassOf: "owl:Thing".freeze,
|
942
|
+
type: "owl:Class".freeze
|
750
943
|
term :Topic,
|
751
944
|
comment: %(A type subject for use in some contexts. This
|
752
945
|
is provided as free text in an annotation label or as an identifier pointing to a term
|
@@ -770,19 +963,16 @@ module RDF::Vocab
|
|
770
963
|
label: "Usage rights".freeze,
|
771
964
|
subClassOf: "ebucore:Rights".freeze,
|
772
965
|
type: "rdfs:Class".freeze
|
966
|
+
term :VideoCodec,
|
967
|
+
comment: %(To provide information about a video codec.).freeze,
|
968
|
+
label: "Video codec".freeze,
|
969
|
+
subClassOf: "ebucore:Codec".freeze,
|
970
|
+
type: "rdfs:Class".freeze
|
773
971
|
term :VideoEncodingFormat,
|
774
972
|
comment: %(The encoding format of the video.).freeze,
|
775
973
|
label: "Video encoding format".freeze,
|
776
974
|
subClassOf: "ebucore:EncodingFormat".freeze,
|
777
975
|
type: "rdfs:Class".freeze
|
778
|
-
term :VideoFormat,
|
779
|
-
comment: %(To provide additional technical information
|
780
|
-
about a video resource such as the frame rate. This is provided as free text in an
|
781
|
-
annotation label or as an identifier pointing to a term in a classification
|
782
|
-
scheme.).freeze,
|
783
|
-
label: "Video format".freeze,
|
784
|
-
subClassOf: "ebucore:Format".freeze,
|
785
|
-
type: "rdfs:Class".freeze
|
786
976
|
term :VideoStream,
|
787
977
|
comment: %(A decodable video stream of bits.).freeze,
|
788
978
|
label: "Video stream".freeze,
|
@@ -797,18 +987,6 @@ module RDF::Vocab
|
|
797
987
|
label: "Video track".freeze,
|
798
988
|
subClassOf: "ebucore:Track".freeze,
|
799
989
|
type: "rdfs:Class".freeze
|
800
|
-
term :YouTubeVideo,
|
801
|
-
label: "You tube video".freeze,
|
802
|
-
subClassOf: "ebucore:MediaResource".freeze,
|
803
|
-
type: "rdfs:Class".freeze
|
804
|
-
term :audienceLevel,
|
805
|
-
comment: [%(The target audience \(target region, target
|
806
|
-
audience category but also parental guidance recommendation\) for which the media
|
807
|
-
resource is intended.).freeze, %(This is provided as free text in an annotation
|
808
|
-
label or as an identifier pointing to a term in a classification scheme.).freeze],
|
809
|
-
label: "Target audience".freeze,
|
810
|
-
subClassOf: "ebucore:Type".freeze,
|
811
|
-
type: "rdfs:Class".freeze
|
812
990
|
|
813
991
|
# Property definitions
|
814
992
|
property :DID,
|
@@ -837,37 +1015,106 @@ module RDF::Vocab
|
|
837
1015
|
label: "Abstract".freeze,
|
838
1016
|
subPropertyOf: "ebucore:description".freeze,
|
839
1017
|
type: "rdf:Property".freeze
|
1018
|
+
property :actionDescription,
|
1019
|
+
comment: %(The description of an Action.).freeze,
|
1020
|
+
domain: "ebucore:Action".freeze,
|
1021
|
+
label: "Action description".freeze,
|
1022
|
+
range: "xsd:string".freeze,
|
1023
|
+
type: "rdf:Property".freeze
|
1024
|
+
property :actionEditUnit,
|
1025
|
+
comment: %(The edit unit number at which the Action occurs.).freeze,
|
1026
|
+
domain: "ebucore:Action".freeze,
|
1027
|
+
label: "Action edit unit number".freeze,
|
1028
|
+
range: "xsd:long".freeze,
|
1029
|
+
subPropertyOf: "ebucore:actionTimestamp".freeze,
|
1030
|
+
type: "rdf:Property".freeze
|
1031
|
+
property :actionId,
|
1032
|
+
comment: [%(An identifier attributed to an Action.).freeze, %(Range: anyURI or string).freeze],
|
1033
|
+
domain: "ebucore:Action".freeze,
|
1034
|
+
label: "Action id".freeze,
|
1035
|
+
type: "rdf:Property".freeze
|
1036
|
+
property :actionName,
|
1037
|
+
comment: %(A name attributed to an Action.).freeze,
|
1038
|
+
domain: "ebucore:Action".freeze,
|
1039
|
+
label: "Action name".freeze,
|
1040
|
+
range: "xsd:string".freeze,
|
1041
|
+
type: "rdf:Property".freeze
|
1042
|
+
property :actionNormalPlayTime,
|
1043
|
+
comment: %(The normal play time at which the Action occurs.).freeze,
|
1044
|
+
domain: "ebucore:Action".freeze,
|
1045
|
+
label: "Action normal play time".freeze,
|
1046
|
+
range: "xsd:time".freeze,
|
1047
|
+
subPropertyOf: "ebucore:actionTimestamp".freeze,
|
1048
|
+
type: "rdf:Property".freeze
|
1049
|
+
property :actionTimecode,
|
1050
|
+
comment: %(The timecode at which the Action occurs.).freeze,
|
1051
|
+
domain: "ebucore:Action".freeze,
|
1052
|
+
label: "Action timecode".freeze,
|
1053
|
+
range: "xsd:string".freeze,
|
1054
|
+
subPropertyOf: "ebucore:actionTimestamp".freeze,
|
1055
|
+
type: "rdf:Property".freeze
|
1056
|
+
property :actionTimecodeDropFrame,
|
1057
|
+
comment: %(The timecode \(dropframe\) at which the Action occurs.).freeze,
|
1058
|
+
domain: "ebucore:Action".freeze,
|
1059
|
+
label: "Action timecode (dropframe)".freeze,
|
1060
|
+
range: "xsd:string".freeze,
|
1061
|
+
subPropertyOf: "ebucore:actionTimestamp".freeze,
|
1062
|
+
type: "rdf:Property".freeze
|
1063
|
+
property :actionTimestamp,
|
1064
|
+
comment: %(The time when the Action occurs.).freeze,
|
1065
|
+
domain: "ebucore:Action".freeze,
|
1066
|
+
label: "Action timestamp".freeze,
|
1067
|
+
type: "rdf:Property".freeze
|
1068
|
+
property :actionType,
|
1069
|
+
comment: [%(A type of Action.).freeze, %(Range: anyURI /conceptId or string).freeze],
|
1070
|
+
domain: "ebucore:Action".freeze,
|
1071
|
+
label: "Action type".freeze,
|
1072
|
+
type: "rdf:Property".freeze
|
1073
|
+
property :activityEndDate,
|
1074
|
+
comment: %(To provide the end date of activity of an Organisation.).freeze,
|
1075
|
+
domain: "ebucore:Organisation".freeze,
|
1076
|
+
label: "Activity end date".freeze,
|
1077
|
+
range: "xsd:date".freeze,
|
1078
|
+
type: "rdf:Property".freeze
|
1079
|
+
property :activityStartDate,
|
1080
|
+
comment: %(To provide the start date of activity of an Organisation.).freeze,
|
1081
|
+
domain: "ebucore:Organisation".freeze,
|
1082
|
+
label: "Activity start date".freeze,
|
1083
|
+
range: "xsd:date".freeze,
|
1084
|
+
type: "rdf:Property".freeze
|
840
1085
|
property :adultContent,
|
1086
|
+
comment: %(A flag to signal adult content.).freeze,
|
841
1087
|
label: "adult content".freeze,
|
842
1088
|
range: "xsd:boolean".freeze,
|
843
1089
|
type: "rdf:Property".freeze
|
844
1090
|
property :affiliationEndDate,
|
845
1091
|
comment: %(The date when a Contact left an Organisation).freeze,
|
846
1092
|
domain: "ebucore:Affiliation".freeze,
|
847
|
-
label: "Affiliation
|
1093
|
+
label: "Affiliation end date".freeze,
|
848
1094
|
range: "xsd:date".freeze,
|
849
1095
|
type: "rdf:Property".freeze
|
850
1096
|
property :affiliationStartDate,
|
1097
|
+
comment: %(The date of affiliation.).freeze,
|
851
1098
|
domain: "ebucore:Affiliation".freeze,
|
852
1099
|
label: "Affiliation start date".freeze,
|
853
1100
|
range: "xsd:date".freeze,
|
854
1101
|
type: "rdf:Property".freeze
|
855
|
-
property :agentAddress,
|
856
|
-
comment: %(To provide the address of an Agent
|
857
|
-
\(Contact/person or organisation\).).freeze,
|
858
|
-
domain: "ebucore:Agent".freeze,
|
859
|
-
label: "Address".freeze,
|
860
|
-
range: "xsd:string".freeze,
|
861
|
-
type: "rdf:Property".freeze
|
862
1102
|
property :agentAge,
|
863
|
-
comment: %(The age of a Contact/Person).freeze,
|
864
|
-
domain: "ebucore:
|
1103
|
+
comment: %(The age of a Contact/Person.).freeze,
|
1104
|
+
domain: "ebucore:Person".freeze,
|
865
1105
|
label: "Age".freeze,
|
866
1106
|
range: "xsd:integer".freeze,
|
867
1107
|
type: "rdf:Property".freeze
|
868
1108
|
property :agentCountryOfResidence,
|
1109
|
+
comment: %(To indicate the country of residence.).freeze,
|
869
1110
|
domain: "ebucore:Agent".freeze,
|
870
|
-
label: "
|
1111
|
+
label: "Country of residence".freeze,
|
1112
|
+
type: "rdf:Property".freeze
|
1113
|
+
property :agentDbpedia,
|
1114
|
+
comment: %(A reference to a dbpedia page.).freeze,
|
1115
|
+
label: "dbpedia".freeze,
|
1116
|
+
range: "xsd:anyURI".freeze,
|
1117
|
+
subPropertyOf: "ebucore:agentLinkedData".freeze,
|
871
1118
|
type: "rdf:Property".freeze
|
872
1119
|
property :agentEmailAddress,
|
873
1120
|
comment: %(To provide the email address of an agent
|
@@ -877,6 +1124,43 @@ module RDF::Vocab
|
|
877
1124
|
:"owl:equivalentProperty" => %(foaf:mbox).freeze,
|
878
1125
|
range: "xsd:string".freeze,
|
879
1126
|
type: "rdf:Property".freeze
|
1127
|
+
property :agentFacebook,
|
1128
|
+
label: "Facebook".freeze,
|
1129
|
+
subPropertyOf: "ebucore:agentSocialMedia".freeze,
|
1130
|
+
type: "rdf:Property".freeze
|
1131
|
+
property :agentFlickr,
|
1132
|
+
label: "Flickr".freeze,
|
1133
|
+
subPropertyOf: "ebucore:agentSocialMedia".freeze,
|
1134
|
+
type: "rdf:Property".freeze
|
1135
|
+
property :agentId,
|
1136
|
+
comment: [%(An Id attributed to an Agent.).freeze, %(Range: an Identifier or anyURI or string.).freeze],
|
1137
|
+
domain: "ebucore:Agent".freeze,
|
1138
|
+
label: "Agent Id".freeze,
|
1139
|
+
type: "rdf:Property".freeze
|
1140
|
+
property :agentImdb,
|
1141
|
+
comment: %(a URL to an Imdb page.).freeze,
|
1142
|
+
label: "Imdb".freeze,
|
1143
|
+
range: "xsd:anyURI".freeze,
|
1144
|
+
subPropertyOf: "ebucore:agentLinkedData".freeze,
|
1145
|
+
type: "rdf:Property".freeze
|
1146
|
+
property :agentInstagram,
|
1147
|
+
label: "Instagram".freeze,
|
1148
|
+
subPropertyOf: "ebucore:agentSocialMedia".freeze,
|
1149
|
+
type: "rdf:Property".freeze
|
1150
|
+
property :agentLanguage,
|
1151
|
+
comment: [%(Range: a string or a language code/Concept.).freeze, %(To provide the language\(s\) of a Contact/person.).freeze],
|
1152
|
+
domain: "ebucore:Agent".freeze,
|
1153
|
+
label: "Language".freeze,
|
1154
|
+
type: "rdf:Property".freeze
|
1155
|
+
property :agentLinkedData,
|
1156
|
+
comment: [%(Range: a URL or URI or Identifier or code.).freeze, %(To provide a hook to linked data.).freeze],
|
1157
|
+
domain: "ebucore:Agent".freeze,
|
1158
|
+
label: "Agent linked data".freeze,
|
1159
|
+
type: "rdf:Property".freeze
|
1160
|
+
property :agentLinkedIn,
|
1161
|
+
label: "linkedIn".freeze,
|
1162
|
+
subPropertyOf: "ebucore:agentSocialMedia".freeze,
|
1163
|
+
type: "rdf:Property".freeze
|
880
1164
|
property :agentMobileTelephoneNumber,
|
881
1165
|
comment: %(To provide the mobile telephone number of an
|
882
1166
|
Agent \(Contact/person or organisation\)).freeze,
|
@@ -884,25 +1168,28 @@ module RDF::Vocab
|
|
884
1168
|
label: "Mobile".freeze,
|
885
1169
|
range: "xsd:string".freeze,
|
886
1170
|
type: "rdf:Property".freeze
|
887
|
-
property :agentName,
|
888
|
-
comment: %(To provide the full name of Contact/person - family and given name.).freeze,
|
889
|
-
domain: "ebucore:Agent".freeze,
|
890
|
-
label: "Name".freeze,
|
891
|
-
range: "xsd:string".freeze,
|
892
|
-
type: "rdf:Property".freeze
|
893
1171
|
property :agentNationality,
|
1172
|
+
comment: [%(Range: a string or a Concept.).freeze, %(To provide the nationality of an Agent.).freeze],
|
894
1173
|
domain: "ebucore:Agent".freeze,
|
895
|
-
label: "
|
1174
|
+
label: "Nationality".freeze,
|
896
1175
|
type: "rdf:Property".freeze
|
897
1176
|
property :agentNickname,
|
898
1177
|
comment: %(To provide a nickname of a Contact/person.).freeze,
|
899
|
-
domain: "ebucore:
|
1178
|
+
domain: "ebucore:Person".freeze,
|
900
1179
|
label: "Nickname".freeze,
|
901
1180
|
range: "xsd:string".freeze,
|
902
1181
|
type: "rdf:Property".freeze
|
903
|
-
property :
|
904
|
-
|
905
|
-
|
1182
|
+
property :agentRelatedLink,
|
1183
|
+
comment: %(To provide a link to a web resource containing
|
1184
|
+
information related to an Agent \(Contact/Person or Organisation\).).freeze,
|
1185
|
+
domain: "ebucore:Agent".freeze,
|
1186
|
+
label: "Related resources".freeze,
|
1187
|
+
range: "xsd:anyURI".freeze,
|
1188
|
+
type: "rdf:Property".freeze
|
1189
|
+
property :agentSocialMedia,
|
1190
|
+
comment: %(Agent's social media hooks.).freeze,
|
1191
|
+
domain: "ebucore:Agent".freeze,
|
1192
|
+
label: "Social media".freeze,
|
906
1193
|
type: "rdf:Property".freeze
|
907
1194
|
property :agentTelephoneNumber,
|
908
1195
|
comment: %(To provide the telephone number of an Agent
|
@@ -911,6 +1198,10 @@ module RDF::Vocab
|
|
911
1198
|
label: "Telephone".freeze,
|
912
1199
|
range: "xsd:string".freeze,
|
913
1200
|
type: "rdf:Property".freeze
|
1201
|
+
property :agentTwitter,
|
1202
|
+
label: "Twitter".freeze,
|
1203
|
+
subPropertyOf: "ebucore:agentSocialMedia".freeze,
|
1204
|
+
type: "rdf:Property".freeze
|
914
1205
|
property :agentWebHomepage,
|
915
1206
|
comment: %(To provide the address of the webpage of an
|
916
1207
|
Agent \(Contact/person or Organisation\).).freeze,
|
@@ -919,6 +1210,17 @@ module RDF::Vocab
|
|
919
1210
|
:"owl:equivalentProperty" => %(foaf:homepage).freeze,
|
920
1211
|
range: "xsd:anyURI".freeze,
|
921
1212
|
type: "rdf:Property".freeze
|
1213
|
+
property :agentWikidata,
|
1214
|
+
comment: %(A link to a wikidata page.).freeze,
|
1215
|
+
label: "Wikidata".freeze,
|
1216
|
+
range: "xsd:anyURI".freeze,
|
1217
|
+
subPropertyOf: "ebucore:agentLinkedData".freeze,
|
1218
|
+
type: "rdf:Property".freeze
|
1219
|
+
property :agentWikipedia,
|
1220
|
+
label: "Wikipedia".freeze,
|
1221
|
+
range: "xsd:anyURI".freeze,
|
1222
|
+
subPropertyOf: "ebucore:agentSocialMedia".freeze,
|
1223
|
+
type: "rdf:Property".freeze
|
922
1224
|
property :alternativeTitle,
|
923
1225
|
comment: %(To provide an alternative title.).freeze,
|
924
1226
|
label: "Alternative title".freeze,
|
@@ -927,12 +1229,116 @@ module RDF::Vocab
|
|
927
1229
|
type: "rdf:Property".freeze
|
928
1230
|
property :appliesOutOf,
|
929
1231
|
comment: %(To define the Location \(e.g. country, region\) to which Rating and TargetAudience do NOT apply.).freeze,
|
1232
|
+
domain: "ebucore:Rating".freeze,
|
930
1233
|
label: "Exclusion area".freeze,
|
931
1234
|
type: "rdf:Property".freeze
|
932
1235
|
property :appliesTo,
|
933
1236
|
comment: %(To define the location/region to which Rating and TargetAudience apply.).freeze,
|
1237
|
+
domain: "ebucore:Rating".freeze,
|
934
1238
|
label: "Coverage".freeze,
|
935
1239
|
type: "rdf:Property".freeze
|
1240
|
+
property :applyTo,
|
1241
|
+
comment: %(The Asset to which Rights apply.).freeze,
|
1242
|
+
domain: "ebucore:Rights".freeze,
|
1243
|
+
label: "Asset".freeze,
|
1244
|
+
range: "ebucore:Asset".freeze,
|
1245
|
+
type: "rdf:Property".freeze
|
1246
|
+
property :approvedBy,
|
1247
|
+
comment: [%(Range: Agent or string).freeze, %(To identify the Agent who approved the EditorialObject.).freeze],
|
1248
|
+
domain: "ebucore:EditorialObject".freeze,
|
1249
|
+
label: "Agent".freeze,
|
1250
|
+
type: "rdf:Property".freeze
|
1251
|
+
property :artefactAvailability,
|
1252
|
+
comment: %(To indicate the availability of an Artefact.).freeze,
|
1253
|
+
domain: "ebucore:Artefact".freeze,
|
1254
|
+
label: "Artefact availability".freeze,
|
1255
|
+
range: "xsd:boolean".freeze,
|
1256
|
+
type: "rdf:Property".freeze
|
1257
|
+
property :artefactColour,
|
1258
|
+
comment: %(To specify the colour of an Artefact.).freeze,
|
1259
|
+
domain: "ebucore:Artefact".freeze,
|
1260
|
+
label: "Artefact colour".freeze,
|
1261
|
+
range: "xsd:string".freeze,
|
1262
|
+
type: "rdf:Property".freeze
|
1263
|
+
property :artefactDateOfPurchase,
|
1264
|
+
comment: %(The date when an Artefact was purchased. .).freeze,
|
1265
|
+
domain: "ebucore:Artefact".freeze,
|
1266
|
+
label: "Artefact date of purchase".freeze,
|
1267
|
+
range: "xsd:date".freeze,
|
1268
|
+
type: "rdf:Property".freeze
|
1269
|
+
property :artefactDateOfSell,
|
1270
|
+
comment: %(The date when an Artefact was sold.).freeze,
|
1271
|
+
domain: "ebucore:Artefact".freeze,
|
1272
|
+
label: "Artefact date of sell".freeze,
|
1273
|
+
range: "xsd:date".freeze,
|
1274
|
+
type: "rdf:Property".freeze
|
1275
|
+
property :artefactDescription,
|
1276
|
+
comment: %(A description of an Artefact.).freeze,
|
1277
|
+
domain: "ebucore:Artefact".freeze,
|
1278
|
+
label: "Artefact description".freeze,
|
1279
|
+
range: "xsd:string".freeze,
|
1280
|
+
type: "rdf:Property".freeze
|
1281
|
+
property :artefactId,
|
1282
|
+
comment: %(An Id associated with an Artefact.).freeze,
|
1283
|
+
domain: "ebucore:Artefact".freeze,
|
1284
|
+
label: "Artefact id".freeze,
|
1285
|
+
type: "rdf:Property".freeze
|
1286
|
+
property :artefactModel,
|
1287
|
+
comment: %(To specify a model of an Artefact.).freeze,
|
1288
|
+
domain: "ebucore:Artefact".freeze,
|
1289
|
+
label: "Artefact model".freeze,
|
1290
|
+
type: "rdf:Property".freeze
|
1291
|
+
property :artefactName,
|
1292
|
+
comment: %(A name associated with an Artefact.).freeze,
|
1293
|
+
domain: "ebucore:Artefact".freeze,
|
1294
|
+
label: "Artefact name".freeze,
|
1295
|
+
range: "xsd:string".freeze,
|
1296
|
+
type: "rdf:Property".freeze
|
1297
|
+
property :artefactPeriod,
|
1298
|
+
comment: %(To specify the period associated with an Artefact.).freeze,
|
1299
|
+
domain: "ebucore:Artefact".freeze,
|
1300
|
+
label: "Artefact period".freeze,
|
1301
|
+
range: "xsd:string".freeze,
|
1302
|
+
type: "rdf:Property".freeze
|
1303
|
+
property :artefactPriceAmount,
|
1304
|
+
comment: %(To specifythe price of an Artefact.).freeze,
|
1305
|
+
domain: "ebucore:Artefact".freeze,
|
1306
|
+
label: "Artefact price".freeze,
|
1307
|
+
type: "rdf:Property".freeze
|
1308
|
+
property :artefactPriceCurrency,
|
1309
|
+
comment: %(To specify the currency into which the price of an Artefact is expressed.).freeze,
|
1310
|
+
domain: "ebucore:Artefact".freeze,
|
1311
|
+
label: "Artefact price currency".freeze,
|
1312
|
+
type: "rdf:Property".freeze
|
1313
|
+
property :artefactReference,
|
1314
|
+
comment: %(To specify a reference of an Artefact.).freeze,
|
1315
|
+
domain: "ebucore:Artefact".freeze,
|
1316
|
+
label: "Artefact reference".freeze,
|
1317
|
+
range: "xsd:string".freeze,
|
1318
|
+
type: "rdf:Property".freeze
|
1319
|
+
property :artefactStyle,
|
1320
|
+
comment: %(To specify the style associated with an Artefact.).freeze,
|
1321
|
+
domain: "ebucore:Artefact".freeze,
|
1322
|
+
label: "Artefact style".freeze,
|
1323
|
+
range: "xsd:string".freeze,
|
1324
|
+
type: "rdf:Property".freeze
|
1325
|
+
property :artefactType,
|
1326
|
+
comment: %(To specify the type of an Artefact.).freeze,
|
1327
|
+
domain: "ebucore:Artefact".freeze,
|
1328
|
+
label: "Artefact type".freeze,
|
1329
|
+
type: "rdf:Property".freeze
|
1330
|
+
property :artefactUsageHistory,
|
1331
|
+
comment: %(To provide information on the usage history of an Artefact.).freeze,
|
1332
|
+
domain: "ebucore:Artefact".freeze,
|
1333
|
+
label: "Artefact usage history".freeze,
|
1334
|
+
range: "xsd:string".freeze,
|
1335
|
+
type: "rdf:Property".freeze
|
1336
|
+
property :artefactWebsite,
|
1337
|
+
comment: %(To specify a website where more information can be found on the Artefact.).freeze,
|
1338
|
+
domain: "ebucore:Artefact".freeze,
|
1339
|
+
label: "Artefact website".freeze,
|
1340
|
+
range: "xsd:anyURI".freeze,
|
1341
|
+
type: "rdf:Property".freeze
|
936
1342
|
property :aspectRatio,
|
937
1343
|
comment: %(To provide the aspect ratio of a video frame or
|
938
1344
|
image. Several types of different aspect ration can apply to the same video image. If
|
@@ -940,6 +1346,43 @@ module RDF::Vocab
|
|
940
1346
|
label: "Aspect ratio".freeze,
|
941
1347
|
range: "xsd:string".freeze,
|
942
1348
|
type: "rdf:Property".freeze
|
1349
|
+
property :assetDescription,
|
1350
|
+
comment: %(A description of an Asset.).freeze,
|
1351
|
+
domain: "ebucore:Asset".freeze,
|
1352
|
+
label: "Asset description".freeze,
|
1353
|
+
range: "xsd:string".freeze,
|
1354
|
+
type: "rdf:Property".freeze
|
1355
|
+
property :assetId,
|
1356
|
+
comment: [%(An identifier attributed to an Asset.).freeze, %(Range: an Identifier or anyURI or string...).freeze],
|
1357
|
+
domain: "ebucore:Asset".freeze,
|
1358
|
+
label: "Asset Id".freeze,
|
1359
|
+
type: "rdf:Property".freeze
|
1360
|
+
property :assetName,
|
1361
|
+
comment: %(An name attributed to an Asset.).freeze,
|
1362
|
+
domain: "ebucore:Asset".freeze,
|
1363
|
+
label: "Asset name".freeze,
|
1364
|
+
range: "xsd:string".freeze,
|
1365
|
+
type: "rdf:Property".freeze
|
1366
|
+
property :assetType,
|
1367
|
+
comment: %(An type of Asset.).freeze,
|
1368
|
+
domain: "ebucore:Asset".freeze,
|
1369
|
+
label: "Asset type".freeze,
|
1370
|
+
type: "rdf:Property".freeze
|
1371
|
+
property :audioBitRate,
|
1372
|
+
comment: %(The audio bitrate).freeze,
|
1373
|
+
label: "Audio bitrate".freeze,
|
1374
|
+
subPropertyOf: "ebucore:bitRate".freeze,
|
1375
|
+
type: "rdf:Property".freeze
|
1376
|
+
property :audioBitRateMax,
|
1377
|
+
comment: %(The maximum audio bitrate.).freeze,
|
1378
|
+
label: "Audio bitrate max".freeze,
|
1379
|
+
subPropertyOf: "ebucore:bitRateMax".freeze,
|
1380
|
+
type: "rdf:Property".freeze
|
1381
|
+
property :audioBitRateMode,
|
1382
|
+
comment: %(The audio bitrate mode.).freeze,
|
1383
|
+
label: "Audio bitrate mode".freeze,
|
1384
|
+
subPropertyOf: "ebucore:bitRateMode".freeze,
|
1385
|
+
type: "rdf:Property".freeze
|
943
1386
|
property :audioChannelNumber,
|
944
1387
|
comment: %(The total number of audio channels contained in
|
945
1388
|
the MediaResource.).freeze,
|
@@ -947,6 +1390,16 @@ module RDF::Vocab
|
|
947
1390
|
label: "Audio channel number".freeze,
|
948
1391
|
range: "xsd:nonNegativeInteger".freeze,
|
949
1392
|
type: "rdf:Property".freeze
|
1393
|
+
property :audioEncodingLevel,
|
1394
|
+
comment: %(The encoding level as defined in specifications.).freeze,
|
1395
|
+
label: "Audio encoding level".freeze,
|
1396
|
+
subPropertyOf: "ebucore:encodingLevel".freeze,
|
1397
|
+
type: "rdf:Property".freeze
|
1398
|
+
property :audioEncodingProfile,
|
1399
|
+
comment: %(The encoding profile as defined in specifications.).freeze,
|
1400
|
+
label: "Audio encoding profile".freeze,
|
1401
|
+
subPropertyOf: "ebucore:encodingProfile".freeze,
|
1402
|
+
type: "rdf:Property".freeze
|
950
1403
|
property :audioTrackConfiguration,
|
951
1404
|
comment: %(To provide the configuration of an audio track
|
952
1405
|
\(e.g. stereo pair\) in a MediaResource.).freeze,
|
@@ -955,7 +1408,7 @@ module RDF::Vocab
|
|
955
1408
|
range: "xsd:string".freeze,
|
956
1409
|
type: "rdf:Property".freeze
|
957
1410
|
property :bitDepth,
|
958
|
-
comment: %(To provide the
|
1411
|
+
comment: %(To provide the video encoding bit depth.).freeze,
|
959
1412
|
domain: "ebucore:MediaResource".freeze,
|
960
1413
|
label: "Bit depth".freeze,
|
961
1414
|
range: "xsd:integer".freeze,
|
@@ -981,11 +1434,24 @@ module RDF::Vocab
|
|
981
1434
|
label: "Bitrate mode".freeze,
|
982
1435
|
range: "xsd:string".freeze,
|
983
1436
|
type: "rdf:Property".freeze
|
1437
|
+
property :bitRateOverall,
|
1438
|
+
comment: %(To provide the overall bitrate at which the
|
1439
|
+
MediaResource can be played in bits/second. Current bitrate if constant, and average bitrate if variable.).freeze,
|
1440
|
+
domain: "ebucore:MediaResource".freeze,
|
1441
|
+
label: "Overall bitrate".freeze,
|
1442
|
+
:"owl:equivalentProperty" => %(ma:averageBitRate).freeze,
|
1443
|
+
range: "xsd:nonNegativeInteger".freeze,
|
1444
|
+
type: "rdf:Property".freeze
|
984
1445
|
property :bookmark,
|
985
1446
|
comment: %(To provide a bookmark.).freeze,
|
986
1447
|
label: "Bookmark".freeze,
|
987
1448
|
subPropertyOf: "ebucore:description".freeze,
|
988
1449
|
type: "rdf:Property".freeze
|
1450
|
+
property :businessObjectId,
|
1451
|
+
comment: [%(An identifier attributed to a BusinessObject.).freeze, %(Range: Identifier or string or anyURI.).freeze],
|
1452
|
+
domain: "ebucore:BusinessObject".freeze,
|
1453
|
+
label: "Business Object Id".freeze,
|
1454
|
+
type: "rdf:Property".freeze
|
989
1455
|
property :businessObjectName,
|
990
1456
|
comment: %(A name attributed to a
|
991
1457
|
BusinessObject.).freeze,
|
@@ -993,6 +1459,11 @@ module RDF::Vocab
|
|
993
1459
|
label: "Name".freeze,
|
994
1460
|
range: "xsd:string".freeze,
|
995
1461
|
type: "rdf:Property".freeze
|
1462
|
+
property :businessObjectType,
|
1463
|
+
comment: [%(A type attributed to a BusinessObject.).freeze, %(Range: code/Concept or string).freeze],
|
1464
|
+
domain: "ebucore:BusinessObject".freeze,
|
1465
|
+
label: "Business Object type".freeze,
|
1466
|
+
type: "rdf:Property".freeze
|
996
1467
|
property :captioningSource,
|
997
1468
|
comment: %(To provide information on the source of a
|
998
1469
|
captioning file.).freeze,
|
@@ -1000,11 +1471,23 @@ module RDF::Vocab
|
|
1000
1471
|
label: "Captioning source".freeze,
|
1001
1472
|
range: "xsd:string".freeze,
|
1002
1473
|
type: "rdf:Property".freeze
|
1474
|
+
property :characterDescription,
|
1475
|
+
comment: %(To provide the description of a Character.).freeze,
|
1476
|
+
domain: "ebucore:Character".freeze,
|
1477
|
+
label: "Character description".freeze,
|
1478
|
+
range: "xsd:string".freeze,
|
1479
|
+
type: "rdf:Property".freeze
|
1480
|
+
property :characterName,
|
1481
|
+
comment: %(To provide the name of a Character.).freeze,
|
1482
|
+
domain: "ebucore:Character".freeze,
|
1483
|
+
label: "Character name".freeze,
|
1484
|
+
range: "xsd:string".freeze,
|
1485
|
+
type: "rdf:Property".freeze
|
1003
1486
|
property :clonedTo,
|
1004
1487
|
comment: %(Identifies relationship between a digital instantiation of a resource and its direct copy, with no generational loss.).freeze,
|
1005
1488
|
label: "Cloned to".freeze,
|
1006
1489
|
:"owl:inverseOf" => %(ebucore:isClonedFrom).freeze,
|
1007
|
-
|
1490
|
+
range: "ebucore:Resource".freeze,
|
1008
1491
|
type: "rdf:Property".freeze
|
1009
1492
|
property :codecFamily,
|
1010
1493
|
comment: %(To provide information on the product family of the Codec.).freeze,
|
@@ -1012,6 +1495,12 @@ module RDF::Vocab
|
|
1012
1495
|
label: "Codec family".freeze,
|
1013
1496
|
range: "xsd:string".freeze,
|
1014
1497
|
type: "rdf:Property".freeze
|
1498
|
+
property :codecId,
|
1499
|
+
comment: %(An Id attributed to a Codec.).freeze,
|
1500
|
+
domain: "ebucore:Codec".freeze,
|
1501
|
+
label: "Codec Id".freeze,
|
1502
|
+
range: "xsd:string".freeze,
|
1503
|
+
type: "rdf:Property".freeze
|
1015
1504
|
property :codecName,
|
1016
1505
|
comment: %(To provide a name for the Codec, e.g. a product name.).freeze,
|
1017
1506
|
domain: "ebucore:Codec".freeze,
|
@@ -1035,130 +1524,156 @@ module RDF::Vocab
|
|
1035
1524
|
label: "Comments".freeze,
|
1036
1525
|
subPropertyOf: "ebucore:description".freeze,
|
1037
1526
|
type: "rdf:Property".freeze
|
1038
|
-
property :
|
1039
|
-
comment: %(
|
1040
|
-
|
1041
|
-
|
1042
|
-
label: "Education".freeze,
|
1043
|
-
range: "xsd:string".freeze,
|
1527
|
+
property :costumeGender,
|
1528
|
+
comment: %(To specify the gender associated with a Costume.).freeze,
|
1529
|
+
domain: "ebucore:Costume".freeze,
|
1530
|
+
label: "Costume gender".freeze,
|
1044
1531
|
type: "rdf:Property".freeze
|
1045
|
-
property :
|
1046
|
-
comment: %(
|
1047
|
-
|
1048
|
-
|
1049
|
-
label: "Family information".freeze,
|
1532
|
+
property :costumeSizeInformation,
|
1533
|
+
comment: %(To collect all information available useful to determine the size of a Costume.).freeze,
|
1534
|
+
domain: "ebucore:Costume".freeze,
|
1535
|
+
label: "Costume size information".freeze,
|
1050
1536
|
range: "xsd:string".freeze,
|
1051
1537
|
type: "rdf:Property".freeze
|
1052
|
-
property :
|
1053
|
-
comment: %(
|
1054
|
-
|
1055
|
-
|
1056
|
-
label: "Hobbies".freeze,
|
1057
|
-
range: "xsd:string".freeze,
|
1538
|
+
property :costumeTexture,
|
1539
|
+
comment: [%(Range: a string or a Concept code from a vocabulary, e.g. Getty).freeze, %(To define the texture of a Costume.).freeze],
|
1540
|
+
domain: "ebucore:Costume".freeze,
|
1541
|
+
label: "Costume texture".freeze,
|
1058
1542
|
type: "rdf:Property".freeze
|
1059
|
-
property :
|
1060
|
-
comment: %(
|
1061
|
-
|
1062
|
-
|
1063
|
-
label: "Marital status".freeze,
|
1064
|
-
range: "xsd:string".freeze,
|
1543
|
+
property :costumeType,
|
1544
|
+
comment: [%(Range: a string or a Concept code from a vocabulary, e.g. Getty.).freeze, %(To define a type of Costume.).freeze],
|
1545
|
+
domain: "ebucore:Costume".freeze,
|
1546
|
+
label: "Costume type".freeze,
|
1065
1547
|
type: "rdf:Property".freeze
|
1066
|
-
property :
|
1067
|
-
comment: %(
|
1068
|
-
|
1069
|
-
|
1070
|
-
label: "Occupation".freeze,
|
1071
|
-
range: "xsd:string".freeze,
|
1548
|
+
property :cuisineOrigin,
|
1549
|
+
comment: [%(Range: a string or code/Concept).freeze, %(The country/region of origin of the cuisine).freeze],
|
1550
|
+
domain: "ebucore:Food".freeze,
|
1551
|
+
label: "Cuisine origin".freeze,
|
1072
1552
|
type: "rdf:Property".freeze
|
1073
|
-
property :
|
1074
|
-
comment: %(
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1553
|
+
property :cuisineStyle,
|
1554
|
+
comment: [%(Range: a string or code/Concept).freeze, %(The style of the cuisine).freeze],
|
1555
|
+
domain: "ebucore:Food".freeze,
|
1556
|
+
label: "Cuisine style".freeze,
|
1557
|
+
type: "rdf:Property".freeze
|
1558
|
+
property :date,
|
1559
|
+
label: "Date".freeze,
|
1560
|
+
subPropertyOf: "dc11:date".freeze,
|
1561
|
+
type: "rdf:Property".freeze
|
1562
|
+
property :dateArchived,
|
1563
|
+
comment: %(The date when the BusinessObject or Resource was archived.).freeze,
|
1564
|
+
label: "Archiving date".freeze,
|
1565
|
+
:"owl:equivalentProperty" => %(ma:creationDate).freeze,
|
1566
|
+
subPropertyOf: "ebucore:date".freeze,
|
1080
1567
|
type: "rdf:Property".freeze
|
1081
1568
|
property :dateBroadcast,
|
1082
|
-
comment: %(The date when the
|
1569
|
+
comment: %(The date when the Resource was first broadcast publicly on television or radio or via streaming.).freeze,
|
1083
1570
|
label: "Broadcast date".freeze,
|
1084
1571
|
:"owl:equivalentProperty" => %(ma:creationDate).freeze,
|
1085
|
-
subPropertyOf: "
|
1572
|
+
subPropertyOf: "ebucore:date".freeze,
|
1086
1573
|
type: "rdf:Property".freeze
|
1087
1574
|
property :dateCreated,
|
1088
|
-
comment: %(The date of creation of the Resource.).freeze,
|
1575
|
+
comment: %(The date of creation of the Resource or BusinessObject.).freeze,
|
1089
1576
|
label: "Creation date/time".freeze,
|
1090
1577
|
:"owl:equivalentProperty" => %(ma:creationDate).freeze,
|
1091
|
-
subPropertyOf: "
|
1578
|
+
subPropertyOf: "ebucore:date".freeze,
|
1092
1579
|
type: "rdf:Property".freeze
|
1093
1580
|
property :dateDeleted,
|
1094
|
-
comment: %(The date when the
|
1581
|
+
comment: %(The date when the BusinessObject or Resource was removed/deleted from institutional holdings.).freeze,
|
1095
1582
|
label: "Deletion date".freeze,
|
1096
1583
|
:"owl:equivalentProperty" => %(ma:creationDate).freeze,
|
1097
|
-
subPropertyOf: "
|
1584
|
+
subPropertyOf: "ebucore:date".freeze,
|
1098
1585
|
type: "rdf:Property".freeze
|
1099
1586
|
property :dateDigitised,
|
1100
1587
|
comment: %(To provide the date of digitisation of the Resource.).freeze,
|
1588
|
+
domain: "ebucore:Resource".freeze,
|
1101
1589
|
label: "Digitisation date/time".freeze,
|
1102
|
-
subPropertyOf: "
|
1590
|
+
subPropertyOf: "ebucore:date".freeze,
|
1103
1591
|
type: "rdf:Property".freeze
|
1104
1592
|
property :dateDistributed,
|
1105
|
-
comment: %(The date when the
|
1593
|
+
comment: %(The date when the Resource was first made available to the public for purchase, download, or online access.).freeze,
|
1594
|
+
domain: "ebucore:Resource".freeze,
|
1106
1595
|
label: "Distribution date".freeze,
|
1107
1596
|
:"owl:equivalentProperty" => %(ma:creationDate).freeze,
|
1108
|
-
subPropertyOf: "
|
1597
|
+
subPropertyOf: "ebucore:date".freeze,
|
1109
1598
|
type: "rdf:Property".freeze
|
1110
1599
|
property :dateIngested,
|
1111
|
-
comment: %(The date when the
|
1600
|
+
comment: %(The date when the Resource was ingested/acquired in institutional holdings.).freeze,
|
1601
|
+
domain: "ebucore:Resource".freeze,
|
1112
1602
|
label: "Ingest date".freeze,
|
1113
1603
|
:"owl:equivalentProperty" => %(ma:creationDate).freeze,
|
1114
|
-
subPropertyOf: "
|
1604
|
+
subPropertyOf: "ebucore:date".freeze,
|
1115
1605
|
type: "rdf:Property".freeze
|
1116
1606
|
property :dateIssued,
|
1117
1607
|
comment: %(To provide the date of release of the Resource.).freeze,
|
1608
|
+
domain: "ebucore:Resource".freeze,
|
1118
1609
|
label: "Publication date/time".freeze,
|
1119
1610
|
:"owl:equivalentProperty" => %(ma:releaseDate).freeze,
|
1120
|
-
subPropertyOf: "
|
1121
|
-
type: "rdf:Property".freeze
|
1122
|
-
property :dateLicenced,
|
1123
|
-
comment: %(The date when the license for the resource begins.).freeze,
|
1124
|
-
label: "License start date".freeze,
|
1125
|
-
:"owl:equivalentProperty" => %(ma:creationDate).freeze,
|
1126
|
-
subPropertyOf: "dc11:date".freeze,
|
1611
|
+
subPropertyOf: "ebucore:date".freeze,
|
1127
1612
|
type: "rdf:Property".freeze
|
1128
1613
|
property :dateMigrated,
|
1129
1614
|
comment: %(The date when the resource was copied or converted from an obsolete or endangered original format to a more updated format for preservation.).freeze,
|
1615
|
+
domain: "ebucore:Resource".freeze,
|
1130
1616
|
label: "Migration date".freeze,
|
1131
1617
|
:"owl:equivalentProperty" => %(ma:creationDate).freeze,
|
1132
|
-
subPropertyOf: "
|
1618
|
+
subPropertyOf: "ebucore:date".freeze,
|
1133
1619
|
type: "rdf:Property".freeze
|
1134
1620
|
property :dateModified,
|
1135
|
-
comment: %(To indicate the date at which the Resource has been modified.).freeze,
|
1621
|
+
comment: %(To indicate the date at which the Resource or BusinessObject has been modified.).freeze,
|
1136
1622
|
label: "Modification date/time".freeze,
|
1137
|
-
subPropertyOf: "
|
1623
|
+
subPropertyOf: "ebucore:date".freeze,
|
1138
1624
|
type: "rdf:Property".freeze
|
1139
1625
|
property :dateNormalized,
|
1140
|
-
comment: %(The date when the
|
1626
|
+
comment: %(The date when the Resource was converted from its original format into a format pre-selected by the institution for preservation.).freeze,
|
1627
|
+
domain: "ebucore:Resource".freeze,
|
1141
1628
|
label: "Normalization date".freeze,
|
1142
1629
|
:"owl:equivalentProperty" => %(ma:creationDate).freeze,
|
1143
|
-
subPropertyOf: "
|
1630
|
+
subPropertyOf: "ebucore:date".freeze,
|
1631
|
+
type: "rdf:Property".freeze
|
1632
|
+
property :dateOfBirth,
|
1633
|
+
comment: %(The date when a Contact/Person is born.).freeze,
|
1634
|
+
domain: "ebucore:Person".freeze,
|
1635
|
+
label: "Date of birth".freeze,
|
1636
|
+
:"owl:equivalentProperty" => %(http://www.bbc.co.uk/ontologies/coreconcepts/dateOfBirth).freeze,
|
1637
|
+
range: "xsd:date".freeze,
|
1638
|
+
type: "rdf:Property".freeze
|
1639
|
+
property :dateOfDeath,
|
1640
|
+
comment: %(The date when a Contact/Person has passed away.).freeze,
|
1641
|
+
domain: "ebucore:Person".freeze,
|
1642
|
+
label: "Date of death".freeze,
|
1643
|
+
:"owl:equivalentProperty" => %(http://www.bbc.co.uk/ontologies/coreconcepts/dateOfDeath).freeze,
|
1644
|
+
range: "xsd:date".freeze,
|
1645
|
+
type: "rdf:Property".freeze
|
1646
|
+
property :dateReleased,
|
1647
|
+
comment: %(The date when the Resource was first made available to the public for purchase, download, or online access.).freeze,
|
1648
|
+
domain: "ebucore:Resource".freeze,
|
1649
|
+
label: "Release date".freeze,
|
1650
|
+
:"owl:equivalentProperty" => %(ma:creationDate).freeze,
|
1651
|
+
subPropertyOf: "ebucore:date".freeze,
|
1144
1652
|
type: "rdf:Property".freeze
|
1145
1653
|
property :dateTransferred,
|
1146
|
-
comment: %(The date when the
|
1654
|
+
comment: %(The date when the Resource or BusinessObject was moved from one digital or physical location to another.).freeze,
|
1147
1655
|
label: "Transfer date".freeze,
|
1148
1656
|
:"owl:equivalentProperty" => %(ma:creationDate).freeze,
|
1149
|
-
subPropertyOf: "
|
1657
|
+
subPropertyOf: "ebucore:date".freeze,
|
1150
1658
|
type: "rdf:Property".freeze
|
1151
1659
|
property :dateValidated,
|
1152
|
-
comment: %(The most recent date when the
|
1660
|
+
comment: %(The most recent date when the Resource was confirmed to be valid through manual or digital QC.).freeze,
|
1661
|
+
domain: "ebucore:Resource".freeze,
|
1153
1662
|
label: "Validation date".freeze,
|
1154
1663
|
:"owl:equivalentProperty" => %(ma:creationDate).freeze,
|
1155
|
-
subPropertyOf: "
|
1664
|
+
subPropertyOf: "ebucore:date".freeze,
|
1665
|
+
type: "rdf:Property".freeze
|
1666
|
+
property :datelicensed,
|
1667
|
+
comment: %(The date when the licence for the Resource begins.).freeze,
|
1668
|
+
domain: "ebucore:Resource".freeze,
|
1669
|
+
label: "Licence start date".freeze,
|
1670
|
+
:"owl:equivalentProperty" => %(ma:creationDate).freeze,
|
1671
|
+
subPropertyOf: "ebucore:date".freeze,
|
1156
1672
|
type: "rdf:Property".freeze
|
1157
1673
|
property :derivedTo,
|
1158
1674
|
comment: %(Identifies a content-based relationship between two resources.).freeze,
|
1159
1675
|
label: "Derived to".freeze,
|
1160
1676
|
:"owl:inverseOf" => %(ebucore:isDerivedFrom).freeze,
|
1161
|
-
subPropertyOf: "dc11:relation".freeze,
|
1162
1677
|
type: "rdf:Property".freeze
|
1163
1678
|
property :description,
|
1164
1679
|
comment: %(This can be specialised by using sub-properties
|
@@ -1175,7 +1690,28 @@ module RDF::Vocab
|
|
1175
1690
|
comment: %(Describes the physical dimensions of a media resource, with units of measure concatenated to become part of the value.).freeze,
|
1176
1691
|
domain: "ebucore:Resource".freeze,
|
1177
1692
|
label: "Dimensions".freeze,
|
1178
|
-
range: "xsd:
|
1693
|
+
range: "xsd:string".freeze,
|
1694
|
+
type: "rdf:Property".freeze
|
1695
|
+
property :dishDescription,
|
1696
|
+
comment: %(The description of a dish.).freeze,
|
1697
|
+
domain: "ebucore:Food".freeze,
|
1698
|
+
label: "Dish description".freeze,
|
1699
|
+
type: "rdf:Property".freeze
|
1700
|
+
property :dishName,
|
1701
|
+
comment: %(The name of a dish.).freeze,
|
1702
|
+
domain: "ebucore:Food".freeze,
|
1703
|
+
label: "Dish name".freeze,
|
1704
|
+
type: "rdf:Property".freeze
|
1705
|
+
property :displayAspectRatio,
|
1706
|
+
comment: %(The aspect ratio when displayed.).freeze,
|
1707
|
+
label: "Display aspect ratio".freeze,
|
1708
|
+
subPropertyOf: "ebucore:aspectRatio".freeze,
|
1709
|
+
type: "rdf:Property".freeze
|
1710
|
+
property :displayOrder,
|
1711
|
+
comment: %(The order in which an Agent appears in a scene.).freeze,
|
1712
|
+
domain: "ebucore:Agent".freeze,
|
1713
|
+
label: "Display order".freeze,
|
1714
|
+
range: "xsd:string".freeze,
|
1179
1715
|
type: "rdf:Property".freeze
|
1180
1716
|
property :dopesheet,
|
1181
1717
|
comment: %(To provide a dopesheet with a title and brief description for news.).freeze,
|
@@ -1186,7 +1722,6 @@ module RDF::Vocab
|
|
1186
1722
|
comment: %(Identifies relationship between a physical instantiation of a resource and a duplicate physical copy that may involve generational loss.).freeze,
|
1187
1723
|
label: "Dubbed to".freeze,
|
1188
1724
|
:"owl:inverseOf" => %(ebucore:isDubbedFrom).freeze,
|
1189
|
-
subPropertyOf: "dc11:relation".freeze,
|
1190
1725
|
type: "rdf:Property".freeze
|
1191
1726
|
property :duration,
|
1192
1727
|
comment: %(To provide information on the duration of a MediaResource. It corresponds to 'duration' in the
|
@@ -1214,7 +1749,7 @@ module RDF::Vocab
|
|
1214
1749
|
comment: %(To provide information on the published / announced duration of an EditorialObject.).freeze,
|
1215
1750
|
domain: "ebucore:EditorialObject".freeze,
|
1216
1751
|
label: "Published Duration".freeze,
|
1217
|
-
range: "
|
1752
|
+
range: "xsd:string".freeze,
|
1218
1753
|
type: "rdf:Property".freeze
|
1219
1754
|
property :durationPublishedNormalPlayTime,
|
1220
1755
|
comment: %(To provide a published duration as normal
|
@@ -1238,6 +1773,13 @@ module RDF::Vocab
|
|
1238
1773
|
range: "xsd:string".freeze,
|
1239
1774
|
subPropertyOf: "ebucore:durationPublished".freeze,
|
1240
1775
|
type: "rdf:Property".freeze
|
1776
|
+
property :durationPublishedTimecodeDropFrame,
|
1777
|
+
comment: %(The published duration expressed as a
|
1778
|
+
timecode with drop frames.).freeze,
|
1779
|
+
label: "Published duration (timecode drop frame)".freeze,
|
1780
|
+
range: "xsd:string".freeze,
|
1781
|
+
subPropertyOf: "ebucore:durationPublished".freeze,
|
1782
|
+
type: "rdf:Property".freeze
|
1241
1783
|
property :durationTimecode,
|
1242
1784
|
comment: %(The duration expressed as a
|
1243
1785
|
timecode.).freeze,
|
@@ -1245,22 +1787,107 @@ module RDF::Vocab
|
|
1245
1787
|
range: "xsd:string".freeze,
|
1246
1788
|
subPropertyOf: "ebucore:duration".freeze,
|
1247
1789
|
type: "rdf:Property".freeze
|
1790
|
+
property :durationTimecodeDropFrame,
|
1791
|
+
comment: %(The duration expressed as a
|
1792
|
+
timecode with drop frames.).freeze,
|
1793
|
+
label: "Duration (timecode, drop frame)".freeze,
|
1794
|
+
range: "xsd:string".freeze,
|
1795
|
+
subPropertyOf: "ebucore:duration".freeze,
|
1796
|
+
type: "rdf:Property".freeze
|
1248
1797
|
property :editUnit,
|
1249
1798
|
comment: %(The edit unit is e.g. the inverse of the audio
|
1250
1799
|
sample rate or video frame rate.).freeze,
|
1251
|
-
domain: "ebucore:MediaResource".freeze,
|
1252
1800
|
label: "Edit unit".freeze,
|
1253
1801
|
range: "xsd:float".freeze,
|
1254
1802
|
type: "rdf:Property".freeze
|
1803
|
+
property :editorialObjectId,
|
1804
|
+
comment: %(An identifier attributed to an EditorialObject.).freeze,
|
1805
|
+
domain: "ebucore:EditorialObject".freeze,
|
1806
|
+
label: "Editorial Object Id".freeze,
|
1807
|
+
type: "rdf:Property".freeze
|
1808
|
+
property :editorialObjectName,
|
1809
|
+
comment: %(A name attributed to an EditorialObject.).freeze,
|
1810
|
+
domain: "ebucore:EditorialObject".freeze,
|
1811
|
+
label: "Editorial Object name".freeze,
|
1812
|
+
range: "xsd:string".freeze,
|
1813
|
+
type: "rdf:Property".freeze
|
1814
|
+
property :editorialObjectType,
|
1815
|
+
comment: %(A type attributed to an EditorialObject.).freeze,
|
1816
|
+
domain: "ebucore:EditorialObject".freeze,
|
1817
|
+
label: "Editorial Object type".freeze,
|
1818
|
+
type: "rdf:Property".freeze
|
1819
|
+
property :education,
|
1820
|
+
comment: %(The education details of a Person.).freeze,
|
1821
|
+
domain: "ebucore:Person".freeze,
|
1822
|
+
label: "Education".freeze,
|
1823
|
+
range: "xsd:string".freeze,
|
1824
|
+
type: "rdf:Property".freeze
|
1825
|
+
property :emotionDescription,
|
1826
|
+
comment: %(The description of an Emotion.).freeze,
|
1827
|
+
domain: "ebucore:Emotion".freeze,
|
1828
|
+
label: "Emotion description".freeze,
|
1829
|
+
range: "xsd:string".freeze,
|
1830
|
+
type: "rdf:Property".freeze
|
1831
|
+
property :emotionEditUnit,
|
1832
|
+
comment: %(The edit unit number at which the Emotion occurs.).freeze,
|
1833
|
+
domain: "ebucore:Emotion".freeze,
|
1834
|
+
label: "Emotion edit unit number".freeze,
|
1835
|
+
range: "xsd:long".freeze,
|
1836
|
+
subPropertyOf: "ebucore:emotionTimestamp".freeze,
|
1837
|
+
type: "rdf:Property".freeze
|
1838
|
+
property :emotionId,
|
1839
|
+
comment: [%(An identifier attributed to an Emotion.).freeze, %(Range: anyURI or string).freeze],
|
1840
|
+
domain: "ebucore:Emotion".freeze,
|
1841
|
+
label: "Emotion id".freeze,
|
1842
|
+
type: "rdf:Property".freeze
|
1843
|
+
property :emotionName,
|
1844
|
+
comment: %(A name attributed to an Emotion.).freeze,
|
1845
|
+
domain: "ebucore:Emotion".freeze,
|
1846
|
+
label: "Emotion name".freeze,
|
1847
|
+
range: "xsd:string".freeze,
|
1848
|
+
type: "rdf:Property".freeze
|
1849
|
+
property :emotionNormalPlayTime,
|
1850
|
+
comment: %(The normal play time at which the Emotion occurs.).freeze,
|
1851
|
+
domain: "ebucore:Emotion".freeze,
|
1852
|
+
label: "Emotion normal play time".freeze,
|
1853
|
+
range: "xsd:time".freeze,
|
1854
|
+
subPropertyOf: "ebucore:emotionTimestamp".freeze,
|
1855
|
+
type: "rdf:Property".freeze
|
1856
|
+
property :emotionTimecode,
|
1857
|
+
comment: %(The timecode at which the Emotion occurs.).freeze,
|
1858
|
+
domain: "ebucore:Emotion".freeze,
|
1859
|
+
label: "Emotion timecode".freeze,
|
1860
|
+
range: "xsd:string".freeze,
|
1861
|
+
subPropertyOf: "ebucore:emotionTimestamp".freeze,
|
1862
|
+
type: "rdf:Property".freeze
|
1863
|
+
property :emotionTimecodeDropFrame,
|
1864
|
+
comment: %(The timecode \(dropframe\) at which the Emotion occurs.).freeze,
|
1865
|
+
domain: "ebucore:Emotion".freeze,
|
1866
|
+
label: "Emotion timecode (dropframe)".freeze,
|
1867
|
+
range: "xsd:string".freeze,
|
1868
|
+
subPropertyOf: "ebucore:emotionTimestamp".freeze,
|
1869
|
+
type: "rdf:Property".freeze
|
1870
|
+
property :emotionTimestamp,
|
1871
|
+
comment: %(The time when the Emotion occurs.).freeze,
|
1872
|
+
domain: "ebucore:Emotion".freeze,
|
1873
|
+
label: "Emotion timestamp".freeze,
|
1874
|
+
type: "rdf:Property".freeze
|
1875
|
+
property :emotionType,
|
1876
|
+
comment: [%(A type of Emotion.).freeze, %(Range: anyURI /conceptId or string).freeze],
|
1877
|
+
domain: "ebucore:Emotion".freeze,
|
1878
|
+
label: "Emotion type".freeze,
|
1879
|
+
type: "rdf:Property".freeze
|
1255
1880
|
property :encodingLevel,
|
1256
|
-
comment: %(The encoding level.).freeze,
|
1881
|
+
comment: %(The encoding level as defined in specifications.).freeze,
|
1257
1882
|
domain: "ebucore:Resource".freeze,
|
1258
1883
|
label: "Encoding level".freeze,
|
1884
|
+
range: "xsd:string".freeze,
|
1259
1885
|
type: "rdf:Property".freeze
|
1260
1886
|
property :encodingProfile,
|
1261
|
-
comment: %(The encoding profile).freeze,
|
1887
|
+
comment: %(The encoding profile as defined in specifications.).freeze,
|
1262
1888
|
domain: "ebucore:Resource".freeze,
|
1263
1889
|
label: "Encoding profile".freeze,
|
1890
|
+
range: "xsd:string".freeze,
|
1264
1891
|
type: "rdf:Property".freeze
|
1265
1892
|
property :end,
|
1266
1893
|
comment: %(The start point of the media
|
@@ -1270,10 +1897,11 @@ module RDF::Vocab
|
|
1270
1897
|
range: "rdfs:Literal".freeze,
|
1271
1898
|
type: "rdf:Property".freeze
|
1272
1899
|
property :endLicenceDate,
|
1273
|
-
comment: %(The date on which the
|
1274
|
-
|
1900
|
+
comment: %(The date on which the licence for the resource expires.).freeze,
|
1901
|
+
domain: "ebucore:Resource".freeze,
|
1902
|
+
label: "Licence expiration date".freeze,
|
1275
1903
|
:"owl:equivalentProperty" => %(ma:creationDate).freeze,
|
1276
|
-
subPropertyOf: "
|
1904
|
+
subPropertyOf: "ebucore:date".freeze,
|
1277
1905
|
type: "rdf:Property".freeze
|
1278
1906
|
property :endNormalPlayTime,
|
1279
1907
|
comment: %(The start time expressed using a time
|
@@ -1296,6 +1924,19 @@ module RDF::Vocab
|
|
1296
1924
|
range: "xsd:string".freeze,
|
1297
1925
|
subPropertyOf: "ebucore:end".freeze,
|
1298
1926
|
type: "rdf:Property".freeze
|
1927
|
+
property :endTimecodeDropFrame,
|
1928
|
+
comment: %(A start time expressed as
|
1929
|
+
timecode with drop frames.).freeze,
|
1930
|
+
label: "End time (timecode, drop frames)".freeze,
|
1931
|
+
range: "xsd:string".freeze,
|
1932
|
+
subPropertyOf: "ebucore:end".freeze,
|
1933
|
+
type: "rdf:Property".freeze
|
1934
|
+
property :episodeNumber,
|
1935
|
+
comment: %(The Episode Number).freeze,
|
1936
|
+
domain: "ebucore:Episode".freeze,
|
1937
|
+
label: "Episode number".freeze,
|
1938
|
+
range: "xsd:string".freeze,
|
1939
|
+
type: "rdf:Property".freeze
|
1299
1940
|
property :eventDescription,
|
1300
1941
|
comment: %(To provide a deescription for an
|
1301
1942
|
Event.).freeze,
|
@@ -1313,7 +1954,24 @@ module RDF::Vocab
|
|
1313
1954
|
comment: %(The end date of an Event.).freeze,
|
1314
1955
|
domain: "ebucore:Event".freeze,
|
1315
1956
|
label: "Event end date".freeze,
|
1316
|
-
range: "xsd:
|
1957
|
+
range: "xsd:date".freeze,
|
1958
|
+
type: "rdf:Property".freeze
|
1959
|
+
property :eventEndDateTime,
|
1960
|
+
comment: %(The end date & time of an Event.).freeze,
|
1961
|
+
domain: "ebucore:Event".freeze,
|
1962
|
+
label: "Event end date & time".freeze,
|
1963
|
+
range: "xsd:dateTime".freeze,
|
1964
|
+
type: "rdf:Property".freeze
|
1965
|
+
property :eventEndTime,
|
1966
|
+
comment: %(The end time of an Event.).freeze,
|
1967
|
+
domain: "ebucore:Event".freeze,
|
1968
|
+
label: "Event end time".freeze,
|
1969
|
+
range: "xsd:time".freeze,
|
1970
|
+
type: "rdf:Property".freeze
|
1971
|
+
property :eventId,
|
1972
|
+
comment: %(An Id attributed to an Event.).freeze,
|
1973
|
+
domain: "ebucore:Event".freeze,
|
1974
|
+
label: "Event Id".freeze,
|
1317
1975
|
type: "rdf:Property".freeze
|
1318
1976
|
property :eventName,
|
1319
1977
|
comment: %(To provide a name for an Event.).freeze,
|
@@ -1331,20 +1989,43 @@ module RDF::Vocab
|
|
1331
1989
|
comment: %(The start date of an Event.).freeze,
|
1332
1990
|
domain: "ebucore:Event".freeze,
|
1333
1991
|
label: "Event start date".freeze,
|
1992
|
+
range: "xsd:date".freeze,
|
1993
|
+
type: "rdf:Property".freeze
|
1994
|
+
property :eventStartDateTime,
|
1995
|
+
comment: %(The start date and time of an Event.).freeze,
|
1996
|
+
domain: "ebucore:Event".freeze,
|
1997
|
+
label: "Event start date & time".freeze,
|
1998
|
+
range: "xsd:dateTime".freeze,
|
1999
|
+
type: "rdf:Property".freeze
|
2000
|
+
property :eventStartTime,
|
2001
|
+
comment: %(The start time of an Event.).freeze,
|
2002
|
+
domain: "ebucore:Event".freeze,
|
2003
|
+
label: "Event start time".freeze,
|
2004
|
+
range: "xsd:time".freeze,
|
2005
|
+
type: "rdf:Property".freeze
|
2006
|
+
property :eventType,
|
2007
|
+
comment: [%(Note: an Event type can be defined as a subClass of Event).freeze, %(Range: Event or string).freeze, %(To define a type of Event.).freeze],
|
2008
|
+
domain: "ebucore:Event".freeze,
|
2009
|
+
label: "Event type".freeze,
|
2010
|
+
type: "rdf:Property".freeze
|
2011
|
+
property :existsAs,
|
2012
|
+
comment: %(A relation between EditorialObjects.).freeze,
|
2013
|
+
domain: "ebucore:EditorialObject".freeze,
|
2014
|
+
label: "Alternative occurence".freeze,
|
2015
|
+
range: "ebucore:EditorialObject".freeze,
|
2016
|
+
type: "rdf:Property".freeze
|
2017
|
+
property :familyInformation,
|
2018
|
+
comment: %(Information on the family of a Person.).freeze,
|
2019
|
+
domain: "ebucore:Person".freeze,
|
2020
|
+
label: "Family information".freeze,
|
1334
2021
|
range: "xsd:string".freeze,
|
1335
2022
|
type: "rdf:Property".freeze
|
1336
2023
|
property :familyName,
|
1337
2024
|
comment: %(To provide a family name / last name.).freeze,
|
2025
|
+
domain: "ebucore:Person".freeze,
|
1338
2026
|
label: "Family name".freeze,
|
1339
2027
|
:"owl:equivalentProperty" => %(foaf:familyName).freeze,
|
1340
|
-
|
1341
|
-
type: "rdf:Property".freeze
|
1342
|
-
property :fictitious,
|
1343
|
-
comment: %(A flag to indicate if an agent of fictitious
|
1344
|
-
\(set to true\).).freeze,
|
1345
|
-
domain: "ebucore:Agent".freeze,
|
1346
|
-
label: "Fictitious agent indicator".freeze,
|
1347
|
-
range: "xsd:boolean".freeze,
|
2028
|
+
range: "xsd:string".freeze,
|
1348
2029
|
type: "rdf:Property".freeze
|
1349
2030
|
property :fileSize,
|
1350
2031
|
comment: %(Provides the size of a MediaResource in bytes.).freeze,
|
@@ -1359,18 +2040,60 @@ module RDF::Vocab
|
|
1359
2040
|
label: "File name".freeze,
|
1360
2041
|
range: "xsd:string".freeze,
|
1361
2042
|
type: "rdf:Property".freeze
|
2043
|
+
property :firstShowing,
|
2044
|
+
comment: %(A flag to indicate that this is the first time the event occurs.).freeze,
|
2045
|
+
domain: "ebucore:PublicationEvent".freeze,
|
2046
|
+
label: "First showing".freeze,
|
2047
|
+
range: "xsd:boolean".freeze,
|
2048
|
+
type: "rdf:Property".freeze
|
1362
2049
|
property :folksonomy,
|
1363
2050
|
comment: %(Provides a user/audience-generated description, tag, or label for resource content.).freeze,
|
2051
|
+
domain: "ebucore:Resource".freeze,
|
1364
2052
|
label: "Folksonomy".freeze,
|
2053
|
+
range: "xsd:string".freeze,
|
1365
2054
|
type: "rdf:Property".freeze
|
1366
2055
|
property :followsInSequence,
|
1367
|
-
comment: %(A link to a an BusinessObject or a Resource preceding the current BusinessObject or Resource in an ordered sequence).freeze,
|
2056
|
+
comment: %(A link to a an BusinessObject or a Resource preceding the current BusinessObject or Resource in an ordered sequence.).freeze,
|
1368
2057
|
label: "Previous".freeze,
|
1369
|
-
|
2058
|
+
type: "rdf:Property".freeze
|
2059
|
+
property :foodCategory,
|
2060
|
+
comment: %(To define a category of Food/cuisine.).freeze,
|
2061
|
+
domain: "ebucore:Food".freeze,
|
2062
|
+
label: "Food category".freeze,
|
2063
|
+
type: "rdf:Property".freeze
|
2064
|
+
property :foodIngredient,
|
2065
|
+
comment: [%(Range: a string or code/Concept).freeze, %(The Food ingredients or Food items.).freeze],
|
2066
|
+
domain: "ebucore:Food".freeze,
|
2067
|
+
label: "Food ingredient".freeze,
|
2068
|
+
type: "rdf:Property".freeze
|
2069
|
+
property :foodStyle,
|
2070
|
+
comment: %(The style of Food/cuisine.).freeze,
|
2071
|
+
domain: "ebucore:Food".freeze,
|
2072
|
+
label: "Food style".freeze,
|
2073
|
+
type: "rdf:Property".freeze
|
2074
|
+
property :formatId,
|
2075
|
+
comment: %(An Id attributed t a Format.).freeze,
|
2076
|
+
domain: "ebucore:Format".freeze,
|
2077
|
+
label: "Format Id".freeze,
|
2078
|
+
type: "rdf:Property".freeze
|
2079
|
+
property :formatVersionId,
|
2080
|
+
comment: %(A version Id attributed t a Format.).freeze,
|
2081
|
+
domain: "ebucore:Format".freeze,
|
2082
|
+
label: "Format version Id".freeze,
|
2083
|
+
type: "rdf:Property".freeze
|
2084
|
+
property :frameHeight,
|
2085
|
+
comment: %(the height of a video frame.).freeze,
|
2086
|
+
label: "Frame height".freeze,
|
2087
|
+
subPropertyOf: "ebucore:height".freeze,
|
2088
|
+
type: "rdf:Property".freeze
|
2089
|
+
property :frameHeightUnit,
|
2090
|
+
comment: %(The unit used to measure the height of a frame.).freeze,
|
2091
|
+
label: "Frame height unit".freeze,
|
2092
|
+
subPropertyOf: "ebucore:heightUnit".freeze,
|
1370
2093
|
type: "rdf:Property".freeze
|
1371
2094
|
property :frameRate,
|
1372
2095
|
comment: %(The frame rate of the video signal in frame per second.).freeze,
|
1373
|
-
domain: "ebucore:
|
2096
|
+
domain: "ebucore:MediaResource".freeze,
|
1374
2097
|
label: "Frame rate".freeze,
|
1375
2098
|
:"owl:equivalentProperty" => %(ma:frameRate).freeze,
|
1376
2099
|
range: "xsd:double".freeze,
|
@@ -1378,11 +2101,21 @@ module RDF::Vocab
|
|
1378
2101
|
property :frameSizeUnit,
|
1379
2102
|
comment: %(The unit used to express the frame width or
|
1380
2103
|
height. The unit by default is 'pixel'.).freeze,
|
1381
|
-
domain: "ebucore:
|
2104
|
+
domain: "ebucore:MediaResource".freeze,
|
1382
2105
|
label: "Frame size unit".freeze,
|
1383
2106
|
:"owl:equivalentProperty" => %(ma:frameSizeUnit).freeze,
|
1384
2107
|
range: "xsd:string".freeze,
|
1385
2108
|
type: "rdf:Property".freeze
|
2109
|
+
property :frameWidth,
|
2110
|
+
comment: %(To measure the width of a frame.).freeze,
|
2111
|
+
label: "Frame width".freeze,
|
2112
|
+
subPropertyOf: "ebucore:width".freeze,
|
2113
|
+
type: "rdf:Property".freeze
|
2114
|
+
property :frameWidthUnit,
|
2115
|
+
comment: %(The unit used to measure a frame width e.g. in pixels.).freeze,
|
2116
|
+
label: "Frame width unit".freeze,
|
2117
|
+
subPropertyOf: "ebucore:widthUnit".freeze,
|
2118
|
+
type: "rdf:Property".freeze
|
1386
2119
|
property :framesPerSecond,
|
1387
2120
|
comment: %(Identifies the frames per second at which a visual resource should be played back for human consumption.).freeze,
|
1388
2121
|
domain: "ebucore:Resource".freeze,
|
@@ -1391,17 +2124,25 @@ module RDF::Vocab
|
|
1391
2124
|
range: "xsd:double".freeze,
|
1392
2125
|
subPropertyOf: "ebucore:playbackSpeed".freeze,
|
1393
2126
|
type: "rdf:Property".freeze
|
1394
|
-
property :
|
1395
|
-
comment: %(
|
1396
|
-
domain: "ebucore:
|
1397
|
-
label: "
|
1398
|
-
range: "xsd:
|
2127
|
+
property :free,
|
2128
|
+
comment: %(A flag to indicate that the access to the event is 'free'.).freeze,
|
2129
|
+
domain: "ebucore:PublicationEvent".freeze,
|
2130
|
+
label: "Free access".freeze,
|
2131
|
+
range: "xsd:boolean".freeze,
|
2132
|
+
type: "rdf:Property".freeze
|
2133
|
+
property :gender,
|
2134
|
+
comment: %(The gender of a person e.g. male or female.).freeze,
|
2135
|
+
domain: "ebucore:Person".freeze,
|
2136
|
+
label: "Gender".freeze,
|
2137
|
+
:"owl:equivalentProperty" => %(http://www.bbc.co.uk/ontologies/coreconcepts/gender).freeze,
|
2138
|
+
range: "xsd:string".freeze,
|
1399
2139
|
type: "rdf:Property".freeze
|
1400
2140
|
property :givenName,
|
1401
2141
|
comment: %(To provide one or more given names.).freeze,
|
2142
|
+
domain: "ebucore:Person".freeze,
|
1402
2143
|
label: "Given name".freeze,
|
1403
2144
|
:"owl:equivalentProperty" => %(foaf:givenName).freeze,
|
1404
|
-
|
2145
|
+
range: "xsd:string".freeze,
|
1405
2146
|
type: "rdf:Property".freeze
|
1406
2147
|
property :groupDescription,
|
1407
2148
|
comment: %(A textual description of a
|
@@ -1410,18 +2151,40 @@ module RDF::Vocab
|
|
1410
2151
|
label: "Group description".freeze,
|
1411
2152
|
range: "xsd:string".freeze,
|
1412
2153
|
type: "rdf:Property".freeze
|
2154
|
+
property :groupId,
|
2155
|
+
comment: %(An Id attributed to a Group.).freeze,
|
2156
|
+
domain: "ebucore:Group".freeze,
|
2157
|
+
label: "Group Id".freeze,
|
2158
|
+
type: "rdf:Property".freeze
|
1413
2159
|
property :groupName,
|
1414
2160
|
comment: %(The name attributed to a Group.).freeze,
|
1415
2161
|
domain: "ebucore:Group".freeze,
|
1416
2162
|
label: "Group name".freeze,
|
1417
2163
|
range: "xsd:string".freeze,
|
1418
2164
|
type: "rdf:Property".freeze
|
2165
|
+
property :hasActionRelatedAgent,
|
2166
|
+
comment: %(To associate an Action with an Agent \(e.g. Person or Character\).).freeze,
|
2167
|
+
domain: "ebucore:Action".freeze,
|
2168
|
+
label: "Action related agent".freeze,
|
2169
|
+
range: "ebucore:Scene".freeze,
|
2170
|
+
type: "rdf:Property".freeze
|
2171
|
+
property :hasActionRelatedScene,
|
2172
|
+
comment: %(To associate an Action with a Scene.).freeze,
|
2173
|
+
domain: "ebucore:Action".freeze,
|
2174
|
+
label: "Action related scene".freeze,
|
2175
|
+
range: "ebucore:Scene".freeze,
|
2176
|
+
type: "rdf:Property".freeze
|
1419
2177
|
property :hasAffiliation,
|
1420
|
-
comment: %(A property to establish the relation between a
|
1421
|
-
Contact/person and an Organisation.).freeze,
|
1422
|
-
domain: "ebucore:
|
2178
|
+
comment: [%(A property to establish the relation between a
|
2179
|
+
Contact/person and an Organisation.).freeze, %(Range: Affiliation or string).freeze],
|
2180
|
+
domain: "ebucore:Person".freeze,
|
1423
2181
|
label: "Affiliation".freeze,
|
1424
|
-
|
2182
|
+
type: "rdf:Property".freeze
|
2183
|
+
property :hasAgentRelatedPicture,
|
2184
|
+
:"dc11:description" => %(A link/locator to a picture related to an Agent.).freeze,
|
2185
|
+
domain: "ebucore:Agent".freeze,
|
2186
|
+
label: "Related picture".freeze,
|
2187
|
+
range: "ebucore:Picture".freeze,
|
1425
2188
|
type: "rdf:Property".freeze
|
1426
2189
|
property :hasAncillaryData,
|
1427
2190
|
comment: %(A property to signal the presence of
|
@@ -1430,79 +2193,164 @@ module RDF::Vocab
|
|
1430
2193
|
range: "ebucore:AncillaryData".freeze,
|
1431
2194
|
type: "rdf:Property".freeze
|
1432
2195
|
property :hasAncillaryDataFormat,
|
2196
|
+
comment: %(the format of ancillary data.).freeze,
|
1433
2197
|
label: "Ancillary data format".freeze,
|
1434
2198
|
subPropertyOf: "ebucore:hasDataFormat".freeze,
|
1435
2199
|
type: "rdf:Property".freeze
|
1436
|
-
property :
|
1437
|
-
comment: %(
|
1438
|
-
|
1439
|
-
label: "
|
2200
|
+
property :hasArtefactBuyer,
|
2201
|
+
comment: %(The Agent who bought the Artefact.).freeze,
|
2202
|
+
domain: "ebucore:Artefact".freeze,
|
2203
|
+
label: "Buyer".freeze,
|
2204
|
+
type: "rdf:Property".freeze
|
2205
|
+
property :hasArtefactCreator,
|
2206
|
+
comment: %(To identify the creator of an Artefact.).freeze,
|
2207
|
+
domain: "ebucore:Artefact".freeze,
|
2208
|
+
label: "Creator".freeze,
|
2209
|
+
type: "rdf:Property".freeze
|
2210
|
+
property :hasArtefactLocation,
|
2211
|
+
comment: [%(Range: a URI, Location or string.).freeze, %(To identify the Location where an Artefact can be found.).freeze],
|
2212
|
+
domain: "ebucore:Artefact".freeze,
|
2213
|
+
label: "Artefact location".freeze,
|
2214
|
+
type: "rdf:Property".freeze
|
2215
|
+
property :hasArtefactMaker,
|
2216
|
+
comment: %(To identify the maker of an Artefact.).freeze,
|
2217
|
+
domain: "ebucore:Artefact".freeze,
|
2218
|
+
label: "Maker".freeze,
|
2219
|
+
type: "rdf:Property".freeze
|
2220
|
+
property :hasArtefactOwner,
|
2221
|
+
comment: %(To identify the owner of an Artefact.).freeze,
|
2222
|
+
domain: "ebucore:Artefact".freeze,
|
2223
|
+
label: "Owner".freeze,
|
2224
|
+
type: "rdf:Property".freeze
|
2225
|
+
property :hasArtefactRelatedAgent,
|
2226
|
+
comment: %(To associate an Artefact/Prop or else with an Agent.).freeze,
|
2227
|
+
domain: "ebucore:Agent".freeze,
|
2228
|
+
label: "Associated artifact".freeze,
|
2229
|
+
type: "rdf:Property".freeze
|
2230
|
+
property :hasArtefactRelatedEditorialObject,
|
2231
|
+
comment: %(To establish a relation between an Artefact and an EditorialObject.).freeze,
|
2232
|
+
domain: "ebucore:Artefact".freeze,
|
2233
|
+
label: "Related editorial object".freeze,
|
2234
|
+
range: "ebucore:EditorialObject".freeze,
|
2235
|
+
type: "rdf:Property".freeze
|
2236
|
+
property :hasArtefactRelatedResource,
|
2237
|
+
comment: %(To establish a relation between an Artefact and a Resource.).freeze,
|
2238
|
+
domain: "ebucore:Artefact".freeze,
|
2239
|
+
label: "Related resource".freeze,
|
2240
|
+
range: "ebucore:Resource".freeze,
|
1440
2241
|
type: "rdf:Property".freeze
|
1441
|
-
property :
|
1442
|
-
comment: %(To identify the
|
1443
|
-
|
1444
|
-
|
1445
|
-
|
2242
|
+
property :hasArtefactRetailer,
|
2243
|
+
comment: %(To identify the retailer of an Artefact.).freeze,
|
2244
|
+
domain: "ebucore:Artefact".freeze,
|
2245
|
+
label: "Retailer".freeze,
|
2246
|
+
type: "rdf:Property".freeze
|
2247
|
+
property :hasArtefactSupplier,
|
2248
|
+
comment: %(To identify a supplier of an Artefact.).freeze,
|
2249
|
+
domain: "ebucore:Artefact".freeze,
|
2250
|
+
label: "Supplier".freeze,
|
2251
|
+
type: "rdf:Property".freeze
|
2252
|
+
property :hasAssociatedAsset,
|
2253
|
+
comment: %(To identify an Asset associated with a PublicationPlan.).freeze,
|
2254
|
+
domain: "ebucore:PublicationPlan".freeze,
|
2255
|
+
label: "Publication plan associated asset.".freeze,
|
2256
|
+
range: "ebucore:Asset".freeze,
|
2257
|
+
type: "rdf:Property".freeze
|
2258
|
+
property :hasAssociatedRights,
|
2259
|
+
comment: %(To associate Rights with a PublicationEvent.).freeze,
|
2260
|
+
domain: "ebucore:PublicationEvent".freeze,
|
2261
|
+
label: "Rights".freeze,
|
2262
|
+
range: "ebucore:Rights".freeze,
|
2263
|
+
subPropertyOf: "dc11:rights".freeze,
|
2264
|
+
type: "rdf:Property".freeze
|
2265
|
+
property :hasAudioCodec,
|
2266
|
+
label: "has audio codec".freeze,
|
2267
|
+
subPropertyOf: "ebucore:hasCodec".freeze,
|
1446
2268
|
type: "rdf:Property".freeze
|
1447
2269
|
property :hasAudioDescription,
|
1448
2270
|
comment: %(To signal the presence of
|
1449
2271
|
AudioDescription.).freeze,
|
1450
2272
|
label: "Audio description".freeze,
|
2273
|
+
range: "ebucore:AudioDescription".freeze,
|
1451
2274
|
type: "rdf:Property".freeze
|
1452
2275
|
property :hasAudioEncodingFormat,
|
2276
|
+
comment: %(To specify the audio encoding format.).freeze,
|
1453
2277
|
label: "Audio encoding format".freeze,
|
1454
2278
|
subPropertyOf: "ebucore:hasEncodingFormat".freeze,
|
1455
2279
|
type: "rdf:Property".freeze
|
1456
|
-
property :
|
1457
|
-
|
1458
|
-
|
2280
|
+
property :hasAudioTrack,
|
2281
|
+
comment: %(To identify AudioTracks in the Resource.).freeze,
|
2282
|
+
label: "Audio track".freeze,
|
2283
|
+
range: "ebucore:AudioTrack".freeze,
|
2284
|
+
subPropertyOf: "ebucore:hasTrack".freeze,
|
1459
2285
|
type: "rdf:Property".freeze
|
1460
2286
|
property :hasCaptioning,
|
1461
2287
|
comment: %(To signal the presence of
|
1462
2288
|
Captioning.).freeze,
|
1463
2289
|
label: "Captioning".freeze,
|
2290
|
+
range: "ebucore:Captioning".freeze,
|
2291
|
+
subPropertyOf: "ebucore:hasDataTrack".freeze,
|
1464
2292
|
type: "rdf:Property".freeze
|
1465
2293
|
property :hasCaptioningFormat,
|
2294
|
+
comment: %(The format of Captioning.).freeze,
|
1466
2295
|
label: "Captioning format".freeze,
|
1467
2296
|
subPropertyOf: "ebucore:hasDataFormat".freeze,
|
1468
2297
|
type: "rdf:Property".freeze
|
1469
2298
|
property :hasCastMember,
|
2299
|
+
comment: [%(A member of the cast.).freeze, %(Range: a string or a Contact.).freeze],
|
1470
2300
|
domain: "ebucore:BusinessObject".freeze,
|
1471
2301
|
label: "Cast member".freeze,
|
1472
|
-
:"
|
2302
|
+
type: "rdf:Property".freeze
|
2303
|
+
property :hasCastRole,
|
2304
|
+
comment: [%(Range: a code/Concept or string).freeze, %(To specify the role of a member of the cast list.).freeze],
|
2305
|
+
domain: "ebucore:Person".freeze,
|
2306
|
+
label: "Staff role".freeze,
|
2307
|
+
subPropertyOf: "ebucore:hasRole".freeze,
|
2308
|
+
type: "rdf:Property".freeze
|
2309
|
+
property :hasChannelLogo,
|
2310
|
+
domain: "ebucore:PublicationChannel".freeze,
|
2311
|
+
label: "Channel logo".freeze,
|
2312
|
+
subPropertyOf: "ebucore:hasLogo".freeze,
|
1473
2313
|
type: "rdf:Property".freeze
|
1474
2314
|
property :hasCharacter,
|
2315
|
+
comment: [%(Range: a string or a "fictitious" Person.).freeze, %(To list characters in a fiction.).freeze],
|
1475
2316
|
domain: "ebucore:BusinessObject".freeze,
|
1476
2317
|
label: "Character".freeze,
|
1477
|
-
:"skos:prefLabel" => %(Character).freeze,
|
1478
2318
|
type: "rdf:Property".freeze
|
1479
2319
|
property :hasCodec,
|
1480
|
-
comment: %(To identify the Codec with which the Resource has been encoded.).freeze,
|
2320
|
+
comment: [%(Range: a string or a Codec).freeze, %(To identify the Codec with which the Resource has been encoded.).freeze],
|
1481
2321
|
domain: "ebucore:Resource".freeze,
|
1482
|
-
label: "Encoder".freeze,
|
2322
|
+
label: "Encoder / Codec".freeze,
|
1483
2323
|
:"owl:equivalentProperty" => %(ma:hasCompression).freeze,
|
1484
2324
|
type: "rdf:Property".freeze
|
1485
2325
|
property :hasColourSpace,
|
2326
|
+
comment: %(To describe the colou space.).freeze,
|
1486
2327
|
label: "Colour space".freeze,
|
1487
2328
|
subPropertyOf: "ebucore:hasFormat".freeze,
|
1488
2329
|
type: "rdf:Property".freeze
|
1489
2330
|
property :hasContact,
|
1490
|
-
comment: %(To provide information on a Contact for an
|
1491
|
-
Organisation or a physical person \(e.g. the agent of an actor\).).freeze,
|
2331
|
+
comment: [%(Range: a link to a Contact or a string.).freeze, %(To provide information on a Contact for an
|
2332
|
+
Organisation or a physical person \(e.g. the agent of an actor\).).freeze],
|
1492
2333
|
domain: "ebucore:Agent".freeze,
|
1493
2334
|
label: "Contact".freeze,
|
2335
|
+
range: ["ebucore:Contact".freeze, "xsd:string".freeze],
|
1494
2336
|
type: "rdf:Property".freeze
|
1495
|
-
property :
|
1496
|
-
label: "
|
1497
|
-
subPropertyOf: "ebucore:
|
2337
|
+
property :hasContainerCodec,
|
2338
|
+
label: "has conatiner codec".freeze,
|
2339
|
+
subPropertyOf: "ebucore:hasCodec".freeze,
|
2340
|
+
type: "rdf:Property".freeze
|
2341
|
+
property :hasContainerEncodingFormat,
|
2342
|
+
comment: %(To describe the container encoding format.).freeze,
|
2343
|
+
label: "Container encoding format".freeze,
|
2344
|
+
subPropertyOf: "ebucore:hasEncodingFormat".freeze,
|
1498
2345
|
type: "rdf:Property".freeze
|
1499
2346
|
property :hasContainerMimeType,
|
2347
|
+
comment: %(To prpovide the Mime type of the Resource.).freeze,
|
1500
2348
|
label: "Mime type".freeze,
|
1501
2349
|
subPropertyOf: "ebucore:hasFormat".freeze,
|
1502
2350
|
type: "rdf:Property".freeze
|
1503
2351
|
property :hasContributor,
|
1504
2352
|
comment: %(To provide information on Contacts/persons or
|
1505
|
-
Organisations who have contributed to the BusinessObject
|
2353
|
+
Organisations who have contributed to the BusinessObject and associated Resource.).freeze,
|
1506
2354
|
label: "Contributor".freeze,
|
1507
2355
|
:"owl:equivalentProperty" => %(ma:hasContributor).freeze,
|
1508
2356
|
subPropertyOf: "dc11:contributor".freeze,
|
@@ -1517,8 +2365,8 @@ module RDF::Vocab
|
|
1517
2365
|
type: "rdf:Property".freeze
|
1518
2366
|
property :hasCreationLocation,
|
1519
2367
|
comment: %(The Location where content has been created.).freeze,
|
2368
|
+
domain: "ebucore:MediaResource".freeze,
|
1520
2369
|
label: "Creation location".freeze,
|
1521
|
-
subPropertyOf: "dc11:coverage".freeze,
|
1522
2370
|
type: "rdf:Property".freeze
|
1523
2371
|
property :hasCreator,
|
1524
2372
|
comment: %(To identify an Agent involved in the creation of the Resource or BusinessObject.).freeze,
|
@@ -1527,30 +2375,68 @@ module RDF::Vocab
|
|
1527
2375
|
subPropertyOf: "dc11:creator".freeze,
|
1528
2376
|
type: "rdf:Property".freeze
|
1529
2377
|
property :hasCrewMember,
|
2378
|
+
comment: [%(Range: a string or a Person.).freeze, %(To list members of the crew.).freeze],
|
1530
2379
|
domain: "ebucore:BusinessObject".freeze,
|
1531
2380
|
label: "Crew member".freeze,
|
1532
|
-
:"
|
2381
|
+
type: "rdf:Property".freeze
|
2382
|
+
property :hasCrewRole,
|
2383
|
+
comment: [%(Range: a code/Concept or string).freeze, %(To specify the role of a member of the crew.).freeze],
|
2384
|
+
domain: "ebucore:Person".freeze,
|
2385
|
+
label: "Crew role".freeze,
|
2386
|
+
subPropertyOf: "ebucore:hasRole".freeze,
|
1533
2387
|
type: "rdf:Property".freeze
|
1534
2388
|
property :hasDataFormat,
|
2389
|
+
comment: %(To describe the format of data carried in a resource.).freeze,
|
1535
2390
|
label: "Data format".freeze,
|
1536
2391
|
subPropertyOf: "ebucore:hasFormat".freeze,
|
1537
2392
|
type: "rdf:Property".freeze
|
2393
|
+
property :hasDataTrack,
|
2394
|
+
comment: %(To identify DataTracks in the Resource.).freeze,
|
2395
|
+
label: "Data track".freeze,
|
2396
|
+
range: "ebucore:DataTrack".freeze,
|
2397
|
+
subPropertyOf: "ebucore:hasTrack".freeze,
|
2398
|
+
type: "rdf:Property".freeze
|
1538
2399
|
property :hasDepartment,
|
1539
|
-
comment: %(To identify Departments within an
|
1540
|
-
Organisation.).freeze,
|
2400
|
+
comment: [%(Range: a string or a Department.).freeze, %(To identify Departments within an
|
2401
|
+
Organisation.).freeze],
|
1541
2402
|
domain: "ebucore:Organisation".freeze,
|
1542
2403
|
label: "Department".freeze,
|
1543
2404
|
type: "rdf:Property".freeze
|
1544
2405
|
property :hasDocumentFormat,
|
1545
|
-
|
2406
|
+
comment: %(To describe the format of a Document.).freeze,
|
2407
|
+
label: "Document format".freeze,
|
1546
2408
|
subPropertyOf: "ebucore:hasFormat".freeze,
|
1547
2409
|
type: "rdf:Property".freeze
|
1548
2410
|
property :hasDopesheet,
|
1549
2411
|
comment: %(To associate a Dopesheet with a NewsItem.).freeze,
|
1550
2412
|
domain: "ebucore:NewsItem".freeze,
|
1551
2413
|
label: "Dopesheet".freeze,
|
2414
|
+
range: "xsd:string".freeze,
|
2415
|
+
type: "rdf:Property".freeze
|
2416
|
+
property :hasDubbedLanguage,
|
2417
|
+
label: "Dubbed language".freeze,
|
2418
|
+
subPropertyOf: "ebucore:hasLanguage".freeze,
|
2419
|
+
type: "rdf:Property".freeze
|
2420
|
+
property :hasEOContributor,
|
2421
|
+
comment: [%(Range: Agent or string).freeze, %(To identify Agents who contributed to the EditorialObject, according to their respective Agent Role.).freeze],
|
2422
|
+
domain: "ebucore:EditorialObject".freeze,
|
2423
|
+
label: "Contributor".freeze,
|
2424
|
+
subPropertyOf: "ebucore:hasContributor".freeze,
|
2425
|
+
type: "rdf:Property".freeze
|
2426
|
+
property :hasEmotionRelatedAgent,
|
2427
|
+
comment: %(To associate an Emotion with an Agent \(e.g. Person or Character\).).freeze,
|
2428
|
+
domain: "ebucore:Emotion".freeze,
|
2429
|
+
label: "Emotion related agent".freeze,
|
2430
|
+
range: "ebucore:Scene".freeze,
|
2431
|
+
type: "rdf:Property".freeze
|
2432
|
+
property :hasEmotionRelatedScene,
|
2433
|
+
comment: %(To associate an Emotion with a Scene.).freeze,
|
2434
|
+
domain: "ebucore:Emotion".freeze,
|
2435
|
+
label: "Emotion related scene".freeze,
|
2436
|
+
range: "ebucore:Scene".freeze,
|
1552
2437
|
type: "rdf:Property".freeze
|
1553
2438
|
property :hasEncodingFormat,
|
2439
|
+
comment: %(To describe any encoding format use to produce content.).freeze,
|
1554
2440
|
label: "Encoding format".freeze,
|
1555
2441
|
subPropertyOf: "ebucore:hasFormat".freeze,
|
1556
2442
|
type: "rdf:Property".freeze
|
@@ -1562,14 +2448,13 @@ module RDF::Vocab
|
|
1562
2448
|
range: "ebucore:Programme".freeze,
|
1563
2449
|
subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
|
1564
2450
|
type: "rdf:Property".freeze
|
1565
|
-
property :
|
1566
|
-
comment: %(To associate
|
1567
|
-
|
1568
|
-
|
1569
|
-
label: "Event".freeze,
|
1570
|
-
subPropertyOf: "dc11:coverage".freeze,
|
2451
|
+
property :hasEventRelatedLocation,
|
2452
|
+
comment: [%(Range: a Location or a string).freeze, %(To associate a Location with an Event.).freeze],
|
2453
|
+
domain: "ebucore:Event".freeze,
|
2454
|
+
label: "Location".freeze,
|
1571
2455
|
type: "rdf:Property".freeze
|
1572
2456
|
property :hasFileFormat,
|
2457
|
+
comment: %(To specify the file format.).freeze,
|
1573
2458
|
label: "File format".freeze,
|
1574
2459
|
subPropertyOf: "ebucore:hasFormat".freeze,
|
1575
2460
|
type: "rdf:Property".freeze
|
@@ -1587,40 +2472,46 @@ module RDF::Vocab
|
|
1587
2472
|
property :hasGenre,
|
1588
2473
|
comment: %(To define a Genre/category associated to the
|
1589
2474
|
BusinesssObject.).freeze,
|
1590
|
-
domain: "ebucore:BusinessObject".freeze,
|
1591
2475
|
label: "Genre".freeze,
|
1592
2476
|
:"owl:equivalentProperty" => %(ma:hasGenre).freeze,
|
1593
2477
|
subPropertyOf: "ebucore:hasType".freeze,
|
1594
2478
|
type: "rdf:Property".freeze
|
1595
|
-
property :hasHomepage,
|
1596
|
-
label: "Homepage".freeze,
|
1597
|
-
:"skos:prefLabel" => %(Homepage).freeze,
|
1598
|
-
subPropertyOf: "ebucore:hasRelatedResource".freeze,
|
1599
|
-
type: "rdf:Property".freeze
|
1600
2479
|
property :hasIdPicture,
|
1601
|
-
|
2480
|
+
comment: [%(A locator /URI or a Picture.).freeze, %(To provide a link to a picture Id.).freeze],
|
2481
|
+
domain: "ebucore:Person".freeze,
|
1602
2482
|
label: "Id picture".freeze,
|
1603
|
-
:"
|
2483
|
+
range: "xsd:anyURI".freeze,
|
2484
|
+
type: "rdf:Property".freeze
|
2485
|
+
property :hasIdentifier,
|
2486
|
+
comment: %(To provide an alternative Identifier.).freeze,
|
2487
|
+
label: ["Identifier".freeze, "Range: Identifier or string or anyURI".freeze],
|
2488
|
+
type: "rdf:Property".freeze
|
2489
|
+
property :hasIdentifierType,
|
2490
|
+
comment: [%(Range: code/Concept or string).freeze, %(To define a type of Identifer \(e.g. UUID, ISAN, EIDR, in-house production Id\).).freeze],
|
2491
|
+
domain: "ebucore:Identifier".freeze,
|
2492
|
+
label: "Id type".freeze,
|
1604
2493
|
type: "rdf:Property".freeze
|
1605
2494
|
property :hasImageFormat,
|
2495
|
+
comment: %(To specify the format of an Image.).freeze,
|
1606
2496
|
label: "Image format".freeze,
|
1607
2497
|
subPropertyOf: "ebucore:hasFormat".freeze,
|
1608
2498
|
type: "rdf:Property".freeze
|
1609
2499
|
property :hasKeyCareerEvent,
|
1610
|
-
|
2500
|
+
comment: %(To identify the key career events of a Person.).freeze,
|
2501
|
+
domain: "ebucore:Person".freeze,
|
1611
2502
|
label: "Career event".freeze,
|
1612
2503
|
range: "ebucore:KeyCareerEvent".freeze,
|
1613
|
-
subPropertyOf: "ebucore:hasRelatedEvent".freeze,
|
1614
2504
|
type: "rdf:Property".freeze
|
1615
2505
|
property :hasKeyPersonalEvent,
|
1616
|
-
|
2506
|
+
comment: %(To identify the key personal events of a Person.).freeze,
|
2507
|
+
domain: "ebucore:Person".freeze,
|
1617
2508
|
label: "Personal event".freeze,
|
1618
2509
|
range: "ebucore:KeyPersonalEvent".freeze,
|
1619
|
-
subPropertyOf: "ebucore:hasRelatedEvent".freeze,
|
1620
2510
|
type: "rdf:Property".freeze
|
1621
2511
|
property :hasKeyword,
|
1622
|
-
comment: %(To associate a concept, descriptive phrase or
|
1623
|
-
Keyword that specifies the topic of the BusinessObject or Annotation.).freeze,
|
2512
|
+
comment: [%(Range: keyword or string).freeze, %(To associate a concept, descriptive phrase or
|
2513
|
+
Keyword that specifies the topic of the BusinessObject or Annotation.).freeze],
|
2514
|
+
domain: "ebucore:EditorialObject".freeze,
|
1624
2515
|
label: "Keyword".freeze,
|
1625
2516
|
:"owl:equivalentProperty" => %(ma:hasKeyword).freeze,
|
1626
2517
|
type: "rdf:Property".freeze
|
@@ -1636,27 +2527,42 @@ module RDF::Vocab
|
|
1636
2527
|
:"owl:equivalentProperty" => %(ma:hasLanguage).freeze,
|
1637
2528
|
subPropertyOf: "dc11:language".freeze,
|
1638
2529
|
type: "rdf:Property".freeze
|
1639
|
-
property :
|
1640
|
-
comment: %(
|
1641
|
-
domain: "ebucore:
|
1642
|
-
label: "
|
1643
|
-
|
2530
|
+
property :hasLocationPicture,
|
2531
|
+
comment: %(A picture associated with a Location.).freeze,
|
2532
|
+
domain: "ebucore:Location".freeze,
|
2533
|
+
label: "Picture".freeze,
|
2534
|
+
range: "ebucore:Picture".freeze,
|
2535
|
+
type: "rdf:Property".freeze
|
2536
|
+
property :hasLocationRelatedEvent,
|
2537
|
+
comment: [%(Range: a string or an Event.).freeze, %(To associate an Event with a
|
2538
|
+
Location.).freeze],
|
2539
|
+
domain: "ebucore:Location".freeze,
|
2540
|
+
label: "Event".freeze,
|
2541
|
+
type: "rdf:Property".freeze
|
2542
|
+
property :hasLocationRelatedResource,
|
2543
|
+
comment: %(To identify a Resource associated with a Location.).freeze,
|
2544
|
+
domain: "ebucore:Location".freeze,
|
2545
|
+
label: "Related resource".freeze,
|
2546
|
+
range: "ebucore:Resource".freeze,
|
1644
2547
|
type: "rdf:Property".freeze
|
1645
2548
|
property :hasLogo,
|
1646
2549
|
comment: %(Logos can be used in a variety of contexts.
|
1647
2550
|
Logo can be associated with an Organisation or a Service or a PublicationChannel.).freeze,
|
1648
2551
|
label: "Logo".freeze,
|
2552
|
+
range: "ebucore:Logo".freeze,
|
1649
2553
|
type: "rdf:Property".freeze
|
1650
2554
|
property :hasMediaFragment,
|
1651
|
-
comment: %(To define
|
2555
|
+
comment: %(To define relation to MediaFragments
|
1652
2556
|
withiin a MediaResource.).freeze,
|
1653
|
-
|
2557
|
+
domain: "ebucore:MediaResource".freeze,
|
2558
|
+
label: "Fragment".freeze,
|
1654
2559
|
:"owl:equivalentProperty" => %(ma:hasFragment).freeze,
|
1655
2560
|
:"owl:inverseOf" => %(ebucore:isMediaFragmentOf).freeze,
|
1656
2561
|
range: "ebucore:MediaFragment".freeze,
|
1657
2562
|
subPropertyOf: "ebucore:hasRelatedResource".freeze,
|
1658
2563
|
type: "rdf:Property".freeze
|
1659
2564
|
property :hasMedium,
|
2565
|
+
comment: %(To specify the medium on which the Resource is available.).freeze,
|
1660
2566
|
label: "Medium".freeze,
|
1661
2567
|
subPropertyOf: "ebucore:hasFormat".freeze,
|
1662
2568
|
type: "rdf:Property".freeze
|
@@ -1666,13 +2572,20 @@ module RDF::Vocab
|
|
1666
2572
|
label: "Member.".freeze,
|
1667
2573
|
range: "ebucore:EditorialObject".freeze,
|
1668
2574
|
type: "rdf:Property".freeze
|
1669
|
-
property :
|
1670
|
-
comment: %(To identify
|
1671
|
-
|
1672
|
-
|
1673
|
-
|
2575
|
+
property :hasMemberPublicationPlan,
|
2576
|
+
comment: %(To identify a PublicationPlan that forms part of another PublicationPlan.).freeze,
|
2577
|
+
domain: "ebucore:PublicationPlan".freeze,
|
2578
|
+
label: "Publication plan member".freeze,
|
2579
|
+
range: "ebucore:PublicationPlan".freeze,
|
2580
|
+
type: "rdf:Property".freeze
|
2581
|
+
property :hasMetadataTrack,
|
2582
|
+
comment: %(To identify MetadataTracks in the Resource.).freeze,
|
2583
|
+
label: "Metadata track".freeze,
|
2584
|
+
range: "ebucore:MetadataTrack".freeze,
|
2585
|
+
subPropertyOf: "ebucore:hasTrack".freeze,
|
1674
2586
|
type: "rdf:Property".freeze
|
1675
2587
|
property :hasMimeType,
|
2588
|
+
comment: %(To specify the Mime type of a Resource.).freeze,
|
1676
2589
|
label: "Mime type".freeze,
|
1677
2590
|
subPropertyOf: "ebucore:hasFormat".freeze,
|
1678
2591
|
type: "rdf:Property".freeze
|
@@ -1683,28 +2596,54 @@ module RDF::Vocab
|
|
1683
2596
|
label: "Object/asset type".freeze,
|
1684
2597
|
subPropertyOf: "ebucore:hasType".freeze,
|
1685
2598
|
type: "rdf:Property".freeze
|
2599
|
+
property :hasOrganisationLogo,
|
2600
|
+
domain: "ebucore:Organisation".freeze,
|
2601
|
+
label: "has organisation logo".freeze,
|
2602
|
+
subPropertyOf: "ebucore:hasLogo".freeze,
|
2603
|
+
type: "rdf:Property".freeze
|
2604
|
+
property :hasOrganisationStaff,
|
2605
|
+
comment: [%(Range: Staff por string).freeze, %(To identify staff members of an Organisation.).freeze],
|
2606
|
+
domain: "ebucore:Organisation".freeze,
|
2607
|
+
label: "Organisation staff".freeze,
|
2608
|
+
type: "rdf:Property".freeze
|
1686
2609
|
property :hasOriginalLanguage,
|
1687
2610
|
label: "Original language".freeze,
|
1688
2611
|
subPropertyOf: "ebucore:hasLanguage".freeze,
|
1689
2612
|
type: "rdf:Property".freeze
|
1690
2613
|
property :hasPart,
|
1691
|
-
comment: %(To define Parts \(segments, fragments, etc.\)
|
1692
|
-
within
|
2614
|
+
comment: %(To define Parts \(segments, fragments, shots, etc.\)
|
2615
|
+
within an EditorialObject.).freeze,
|
1693
2616
|
domain: "ebucore:EditorialObject".freeze,
|
1694
2617
|
label: "Part".freeze,
|
1695
|
-
range: "ebucore:
|
2618
|
+
range: "ebucore:Part".freeze,
|
1696
2619
|
subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
|
1697
2620
|
type: "rdf:Property".freeze
|
2621
|
+
property :hasParticipatingAgent,
|
2622
|
+
comment: [%(To identify participating Agents.).freeze, %(range: Agent or string).freeze],
|
2623
|
+
domain: "ebucore:EditorialObject".freeze,
|
2624
|
+
label: "Participating agent".freeze,
|
2625
|
+
type: "rdf:Property".freeze
|
1698
2626
|
property :hasPictogram,
|
1699
|
-
comment: %(To provide a visual representation of
|
2627
|
+
comment: [%(Range: a locator/URI or a Picture.).freeze, %(To provide a visual representation of a Rating / AufdienceRating / AudienceLevel.).freeze],
|
2628
|
+
domain: "ebucore:Rating".freeze,
|
1700
2629
|
label: "Pictogram".freeze,
|
1701
2630
|
type: "rdf:Property".freeze
|
1702
|
-
property :
|
1703
|
-
comment: %(
|
1704
|
-
|
1705
|
-
|
1706
|
-
|
1707
|
-
|
2631
|
+
property :hasPlaceOfBirth,
|
2632
|
+
comment: [%(Range: Location or string).freeze, %(The place where a person is born.).freeze],
|
2633
|
+
domain: "ebucore:Person".freeze,
|
2634
|
+
label: "Place of birth".freeze,
|
2635
|
+
:"owl:equivalentProperty" => %(http://www.bbc.co.uk/ontologies/coreconcepts/placeOfBirth).freeze,
|
2636
|
+
type: "rdf:Property".freeze
|
2637
|
+
property :hasPlaceOfDeath,
|
2638
|
+
comment: [%(Range: a Location or a string).freeze, %(The place where a person has passed away.).freeze],
|
2639
|
+
domain: "ebucore:Person".freeze,
|
2640
|
+
label: "Place of death".freeze,
|
2641
|
+
:"owl:equivalentProperty" => %(http://www.bbc.co.uk/ontologies/coreconcepts/placeOfDeath).freeze,
|
2642
|
+
type: "rdf:Property".freeze
|
2643
|
+
property :hasProductionLocation,
|
2644
|
+
comment: [%(Range: a location or string).freeze, %(To identify the Location of a production).freeze],
|
2645
|
+
domain: "ebucore:EditorialObject".freeze,
|
2646
|
+
label: "Production location".freeze,
|
1708
2647
|
type: "rdf:Property".freeze
|
1709
2648
|
property :hasPublicationEvent,
|
1710
2649
|
comment: %(To associate PublicationEvents with
|
@@ -1713,9 +2652,20 @@ module RDF::Vocab
|
|
1713
2652
|
range: "ebucore:PublicationEvent".freeze,
|
1714
2653
|
type: "rdf:Property".freeze
|
1715
2654
|
property :hasPublicationHistory,
|
1716
|
-
|
2655
|
+
comment: %(To provide the history of publication of an EditorailObject or MediaResource.).freeze,
|
2656
|
+
label: "Publication history".freeze,
|
1717
2657
|
range: "ebucore:PublicationHistory".freeze,
|
1718
2658
|
type: "rdf:Property".freeze
|
2659
|
+
property :hasPublicationMedium,
|
2660
|
+
comment: [%(Range: string or concept PublicationMedium).freeze, %(To identify the publication medium of a PublicationEvent.).freeze],
|
2661
|
+
domain: "ebucore:PublicationEvent".freeze,
|
2662
|
+
label: "Publication medium".freeze,
|
2663
|
+
type: "rdf:Property".freeze
|
2664
|
+
property :hasPublicationRegion,
|
2665
|
+
comment: [%(Range: string or Location).freeze, %(The region where the publication takes place.).freeze],
|
2666
|
+
domain: "ebucore:PublicationEvent".freeze,
|
2667
|
+
label: "Publication region".freeze,
|
2668
|
+
type: "rdf:Property".freeze
|
1719
2669
|
property :hasPublisher,
|
1720
2670
|
comment: %(To identify an Agent involved in the publication of the Resource or BusinessObject.).freeze,
|
1721
2671
|
label: "Publisher".freeze,
|
@@ -1723,22 +2673,27 @@ module RDF::Vocab
|
|
1723
2673
|
subPropertyOf: "dc11:publisher".freeze,
|
1724
2674
|
type: "rdf:Property".freeze
|
1725
2675
|
property :hasRating,
|
1726
|
-
comment: %(To identify the presence of Rating attributed
|
1727
|
-
to a Resource or BusinessObject.).freeze,
|
2676
|
+
comment: [%(Range: a string or a Rating.).freeze, %(To identify the presence of Rating attributed
|
2677
|
+
to a Resource or BusinessObject.).freeze],
|
1728
2678
|
label: "Rating".freeze,
|
1729
2679
|
:"owl:equivalentProperty" => %(ma:hasRating).freeze,
|
1730
2680
|
type: "rdf:Property".freeze
|
1731
2681
|
property :hasRatingSource,
|
1732
|
-
comment: %(To identify an Agent \(Contact/person or
|
1733
|
-
Organisation\) who has proposed a Rating.).freeze,
|
2682
|
+
comment: [%(Range: a string or an Agent.).freeze, %(To identify an Agent \(Contact/person or
|
2683
|
+
Organisation\) who has proposed a Rating.).freeze],
|
1734
2684
|
domain: "ebucore:Rating".freeze,
|
1735
2685
|
label: "Rating provider".freeze,
|
1736
2686
|
type: "rdf:Property".freeze
|
1737
|
-
property :
|
1738
|
-
comment: %(To
|
1739
|
-
label: "
|
1740
|
-
range: "ebucore:
|
1741
|
-
|
2687
|
+
property :hasRelatedArtefact,
|
2688
|
+
comment: %(To identify and Artefact related to EditorialObject or a resource.).freeze,
|
2689
|
+
label: "Related artefact".freeze,
|
2690
|
+
range: "ebucore:Artefact".freeze,
|
2691
|
+
type: "rdf:Property".freeze
|
2692
|
+
property :hasRelatedAsset,
|
2693
|
+
comment: %(To identify related Assets.).freeze,
|
2694
|
+
domain: "ebucore:Asset".freeze,
|
2695
|
+
label: "Related asset".freeze,
|
2696
|
+
range: "ebucore:Asset".freeze,
|
1742
2697
|
type: "rdf:Property".freeze
|
1743
2698
|
property :hasRelatedAudioContent,
|
1744
2699
|
comment: %(To identify the AudioContent associated with an AudioProgramme.).freeze,
|
@@ -1747,34 +2702,32 @@ module RDF::Vocab
|
|
1747
2702
|
range: "ebucore:AudioContent".freeze,
|
1748
2703
|
subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
|
1749
2704
|
type: "rdf:Property".freeze
|
1750
|
-
property :
|
1751
|
-
comment: %(To identify
|
1752
|
-
|
2705
|
+
property :hasRelatedAudioProgramme,
|
2706
|
+
comment: %(To identify the AudioProgramme.).freeze,
|
2707
|
+
domain: "ebucore:EditorialObject".freeze,
|
2708
|
+
label: "Audio programme".freeze,
|
2709
|
+
range: "ebucore:AudioProgramme".freeze,
|
1753
2710
|
subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
|
1754
2711
|
type: "rdf:Property".freeze
|
1755
|
-
property :hasRelatedAudioStream,
|
1756
|
-
comment: %(To associate an AudioStream with an AudioTrack.).freeze,
|
1757
|
-
domain: "ebucore:AudioTrack".freeze,
|
1758
|
-
label: "Audio stream".freeze,
|
1759
|
-
range: "ebucore:AudioStream".freeze,
|
1760
|
-
subPropertyOf: "ebucore:hasRelatedResource".freeze,
|
1761
|
-
type: "rdf:Property".freeze
|
1762
|
-
property :hasRelatedAudioTrack,
|
1763
|
-
comment: %(To associate an AudioTrack with an AudioStream or an AudioTrackUID.).freeze,
|
1764
|
-
label: "Audio track".freeze,
|
1765
|
-
range: "ebucore:AudioTrack".freeze,
|
1766
|
-
subPropertyOf: "ebucore:hasRelatedResource".freeze,
|
1767
|
-
type: "rdf:Property".freeze
|
1768
2712
|
property :hasRelatedBusinessObject,
|
1769
|
-
comment: %(
|
1770
|
-
label: "
|
2713
|
+
comment: %(To aggregate properties defining a relation to BusinessOjects.).freeze,
|
2714
|
+
label: "Business object".freeze,
|
1771
2715
|
range: "ebucore:BusinessObject".freeze,
|
1772
|
-
|
2716
|
+
type: "rdf:Property".freeze
|
2717
|
+
property :hasRelatedEditorialObject,
|
2718
|
+
domain: "ebucore:Asset".freeze,
|
2719
|
+
label: "Related editorial object".freeze,
|
2720
|
+
range: "ebucore:EditorialObject".freeze,
|
2721
|
+
subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
|
1773
2722
|
type: "rdf:Property".freeze
|
1774
2723
|
property :hasRelatedEvent,
|
1775
|
-
|
2724
|
+
comment: %(A property to identify the
|
2725
|
+
Events, all real or fictional, covered by the
|
2726
|
+
BusinessObject.).freeze,
|
2727
|
+
domain: "ebucore:BusinessObject".freeze,
|
2728
|
+
label: "Event".freeze,
|
1776
2729
|
range: "ebucore:Event".freeze,
|
1777
|
-
subPropertyOf: "
|
2730
|
+
subPropertyOf: "ebucore:hasCoverage".freeze,
|
1778
2731
|
type: "rdf:Property".freeze
|
1779
2732
|
property :hasRelatedImage,
|
1780
2733
|
comment: %(To associate an Image with a BusinessObject.).freeze,
|
@@ -1784,19 +2737,25 @@ module RDF::Vocab
|
|
1784
2737
|
subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
|
1785
2738
|
type: "rdf:Property".freeze
|
1786
2739
|
property :hasRelatedLocation,
|
1787
|
-
|
2740
|
+
comment: %(A property to identify the
|
2741
|
+
Locations, all real or fictional, covered by the
|
2742
|
+
BusinessObject.).freeze,
|
2743
|
+
domain: "ebucore:BusinessObject".freeze,
|
2744
|
+
label: "Location".freeze,
|
2745
|
+
:"owl:equivalentProperty" => %(ma:hasRelatedLocation).freeze,
|
1788
2746
|
range: "ebucore:Location".freeze,
|
1789
|
-
subPropertyOf: "
|
2747
|
+
subPropertyOf: "ebucore:hasCoverage".freeze,
|
1790
2748
|
type: "rdf:Property".freeze
|
1791
2749
|
property :hasRelatedMediaFragment,
|
1792
2750
|
comment: %(To associate a Part of an EditorialObject with a MediaFragment within the association MediaResource instantiating the EditorialObject.).freeze,
|
1793
2751
|
domain: "ebucore:Part".freeze,
|
1794
2752
|
label: "Media fragment".freeze,
|
1795
2753
|
range: "ebucore:MediaFragment".freeze,
|
1796
|
-
subPropertyOf: "ebucore:
|
2754
|
+
subPropertyOf: "ebucore:hasRelatedResource".freeze,
|
1797
2755
|
type: "rdf:Property".freeze
|
1798
2756
|
property :hasRelatedPicture,
|
1799
2757
|
comment: %(To associate a Picture with a BusinessObject or a Resource.).freeze,
|
2758
|
+
domain: "ebucore:Resource".freeze,
|
1800
2759
|
label: "Picture".freeze,
|
1801
2760
|
:"owl:equivalentProperty" => %(ma:hasRelatedImage).freeze,
|
1802
2761
|
range: "ebucore:Picture".freeze,
|
@@ -1804,57 +2763,81 @@ module RDF::Vocab
|
|
1804
2763
|
type: "rdf:Property".freeze
|
1805
2764
|
property :hasRelatedPublicationEvent,
|
1806
2765
|
comment: %(To identify the PublicationEvent associated with a MediaResource \(manifestation of an EditorialObject\).).freeze,
|
1807
|
-
domain: "ebucore:
|
2766
|
+
domain: "ebucore:PublicationEvent".freeze,
|
1808
2767
|
label: "Publication event".freeze,
|
1809
2768
|
range: "ebucore:PublicationEvent".freeze,
|
1810
|
-
subPropertyOf: "dc11:relation".freeze,
|
1811
2769
|
type: "rdf:Property".freeze
|
1812
2770
|
property :hasRelatedResource,
|
1813
2771
|
comment: %(To identify a Resource associated with an Asset or a BusinessObject or a PublicationEvent or another Resource.).freeze,
|
1814
2772
|
label: "Related resource".freeze,
|
1815
2773
|
:"owl:equivalentProperty" => %(ma:hasRelatedResource).freeze,
|
1816
|
-
range: "ebucore:Resource".freeze,
|
1817
|
-
subPropertyOf: "dc11:relation".freeze,
|
1818
2774
|
type: "rdf:Property".freeze
|
1819
|
-
property :
|
1820
|
-
|
1821
|
-
:"
|
2775
|
+
property :hasRelatedService,
|
2776
|
+
comment: %(To identify associated Services.).freeze,
|
2777
|
+
domain: "ebucore:Service".freeze,
|
2778
|
+
label: "Related service".freeze,
|
2779
|
+
range: "ebucore:Service".freeze,
|
2780
|
+
type: "rdf:Property".freeze
|
2781
|
+
property :hasRelatedTextLine,
|
2782
|
+
comment: [%(A TextLine or free text related to an EditorialObject.).freeze, %(Range: string or TextLine.).freeze],
|
2783
|
+
domain: "ebucore:EditorialObject".freeze,
|
2784
|
+
label: "Related text line".freeze,
|
1822
2785
|
type: "rdf:Property".freeze
|
1823
2786
|
property :hasRightsContact,
|
1824
|
-
comment: %(To identify a Contact/person who can provide
|
1825
|
-
assistance / guidance regarding the associated Rights.).freeze,
|
2787
|
+
comment: [%(Range: a string or a Contact.).freeze, %(To identify a Contact/person who can provide
|
2788
|
+
assistance / guidance regarding the associated Rights.).freeze],
|
1826
2789
|
domain: "ebucore:Rights".freeze,
|
1827
2790
|
label: "Contact".freeze,
|
1828
2791
|
type: "rdf:Property".freeze
|
1829
2792
|
property :hasRightsHolder,
|
1830
|
-
comment: %(To identify an Agent \(Contact/person or
|
1831
|
-
Organisation\) having/managing Rights.).freeze,
|
2793
|
+
comment: [%(Range: a string or an Agent.).freeze, %(To identify an Agent \(Contact/person or
|
2794
|
+
Organisation\) having/managing Rights.).freeze],
|
1832
2795
|
domain: "ebucore:Rights".freeze,
|
1833
2796
|
label: "Rights holder".freeze,
|
1834
2797
|
type: "rdf:Property".freeze
|
1835
2798
|
property :hasRole,
|
1836
|
-
comment: %(To define the role of an Agent \(Contact/person
|
1837
|
-
or Organisation\). The association in a particular context is made by declaring the hasCastRole associated with the BusinessObject.).freeze,
|
2799
|
+
comment: [%(Range: a string or a Role/Concept from a controlled vocabulary.).freeze, %(To define the role of an Agent \(Contact/person
|
2800
|
+
or Organisation\). The association in a particular context is made by e.g. declaring the hasCastRole or hasCrewRole associated with the BusinessObject.).freeze],
|
1838
2801
|
domain: "ebucore:Agent".freeze,
|
1839
2802
|
label: "Role".freeze,
|
1840
2803
|
type: "rdf:Property".freeze
|
1841
2804
|
property :hasSeason,
|
1842
2805
|
comment: %(The Season of a Series.).freeze,
|
1843
|
-
domain: "ebucore:Series".freeze,
|
1844
2806
|
label: "Season".freeze,
|
1845
2807
|
:"owl:inverseOf" => %(ebucore:isSeasonOf).freeze,
|
1846
2808
|
range: "ebucore:Season".freeze,
|
1847
2809
|
subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
|
1848
2810
|
type: "rdf:Property".freeze
|
2811
|
+
property :hasSeries,
|
2812
|
+
comment: %(A Series.).freeze,
|
2813
|
+
label: "Series".freeze,
|
2814
|
+
:"owl:inverseOf" => %(ebucore:isSeasonOf).freeze,
|
2815
|
+
range: "ebucore:Series".freeze,
|
2816
|
+
subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
|
2817
|
+
type: "rdf:Property".freeze
|
2818
|
+
property :hasServiceLogo,
|
2819
|
+
domain: "ebucore:Service".freeze,
|
2820
|
+
label: "Service logo".freeze,
|
2821
|
+
subPropertyOf: "ebucore:hasLogo".freeze,
|
2822
|
+
type: "rdf:Property".freeze
|
2823
|
+
property :hasShootingLocation,
|
2824
|
+
comment: [%(Range: Location or string).freeze, %(The Location where content has been captured.).freeze],
|
2825
|
+
domain: "ebucore:MediaResource".freeze,
|
2826
|
+
label: "Shooting location".freeze,
|
2827
|
+
type: "rdf:Property".freeze
|
1849
2828
|
property :hasSigning,
|
1850
|
-
comment: %(To identify the presence of Signing associated
|
1851
|
-
to the BusinessObject/Resource.).freeze,
|
2829
|
+
comment: [%(A locator/URI to a resource or a Signing resource.).freeze, %(To identify the presence of Signing associated
|
2830
|
+
to the BusinessObject/Resource.).freeze],
|
1852
2831
|
label: "Accessibility - signing".freeze,
|
1853
2832
|
:"owl:equivalentProperty" => %(ma:hasSigning).freeze,
|
2833
|
+
range: "ebucore:Signing".freeze,
|
2834
|
+
subPropertyOf: "ebucore:hasVideoTrack".freeze,
|
1854
2835
|
type: "rdf:Property".freeze
|
1855
2836
|
property :hasSigningFormat,
|
2837
|
+
comment: %(To specify the format of signing.).freeze,
|
2838
|
+
domain: "ebucore:MediaResource".freeze,
|
1856
2839
|
label: "Signing format".freeze,
|
1857
|
-
|
2840
|
+
range: "xsd:string".freeze,
|
1858
2841
|
type: "rdf:Property".freeze
|
1859
2842
|
property :hasSource,
|
1860
2843
|
comment: %(To identify a Resource as the source of another Resource.).freeze,
|
@@ -1863,36 +2846,50 @@ module RDF::Vocab
|
|
1863
2846
|
range: "ebucore:Resource".freeze,
|
1864
2847
|
subPropertyOf: "dc11:source".freeze,
|
1865
2848
|
type: "rdf:Property".freeze
|
1866
|
-
property :
|
1867
|
-
comment: %(To identify staff working within an Organisation.).freeze,
|
2849
|
+
property :hasStaffMember,
|
2850
|
+
comment: [%(Range: a string or a Person.).freeze, %(To identify staff working within an Organisation.).freeze],
|
1868
2851
|
domain: "ebucore:Organisation".freeze,
|
1869
2852
|
label: "Staff".freeze,
|
1870
2853
|
type: "rdf:Property".freeze
|
2854
|
+
property :hasStaffRole,
|
2855
|
+
comment: [%(Range: code/Concept or string).freeze, %(To identify the Role of a Person as a member of staff).freeze],
|
2856
|
+
domain: "ebucore:Person".freeze,
|
2857
|
+
label: "Staff role".freeze,
|
2858
|
+
subPropertyOf: "ebucore:hasRole".freeze,
|
2859
|
+
type: "rdf:Property".freeze
|
2860
|
+
property :hasStakeholder,
|
2861
|
+
comment: [%(An Agent related to the PublicationPlan.).freeze, %(Range: Agent or string).freeze],
|
2862
|
+
domain: "ebucore:PublicationPlan".freeze,
|
2863
|
+
label: "Publication plan stakeholder".freeze,
|
2864
|
+
type: "rdf:Property".freeze
|
1871
2865
|
property :hasStandard,
|
1872
2866
|
comment: %(Identifies the technical video standard of a resource, i.e. NTSC or PAL.).freeze,
|
1873
2867
|
label: "Standard".freeze,
|
1874
2868
|
subPropertyOf: "ebucore:hasFormat".freeze,
|
1875
2869
|
type: "rdf:Property".freeze
|
1876
2870
|
property :hasStorageType,
|
1877
|
-
comment: %(To define a particular type of storage /
|
2871
|
+
comment: [%(Range: a string or a skos:Concept.).freeze, %(To define a particular type of storage /
|
1878
2872
|
repository associated with the Locator from where a Resource can be
|
1879
|
-
accessed.).freeze,
|
2873
|
+
accessed.).freeze],
|
1880
2874
|
domain: "ebucore:Resource".freeze,
|
1881
2875
|
label: "Storage type".freeze,
|
1882
2876
|
type: "rdf:Property".freeze
|
1883
2877
|
property :hasSubject,
|
1884
|
-
comment: %(To associate a Subject addressed with a
|
1885
|
-
BusinessObject / Resource.).freeze,
|
2878
|
+
comment: [%(Range: a Subject or a string.).freeze, %(To associate a Subject addressed with a
|
2879
|
+
BusinessObject / Resource.).freeze],
|
1886
2880
|
label: "Subject".freeze,
|
1887
2881
|
subPropertyOf: "dc11:subject".freeze,
|
1888
2882
|
type: "rdf:Property".freeze
|
1889
2883
|
property :hasSubtitling,
|
1890
|
-
comment: %(To signal the presence of Subtitling associated
|
1891
|
-
with the EditorialObject or MediaResource.).freeze,
|
2884
|
+
comment: [%(A locator to a resource or a Signing resource.).freeze, %(To signal the presence of Subtitling associated
|
2885
|
+
with the EditorialObject or MediaResource.).freeze],
|
1892
2886
|
label: "Subtitling".freeze,
|
1893
2887
|
:"owl:equivalentProperty" => %(ma:hasSubtitling).freeze,
|
2888
|
+
range: "ebucore:Subtitling".freeze,
|
2889
|
+
subPropertyOf: "ebucore:hasDataTrack".freeze,
|
1894
2890
|
type: "rdf:Property".freeze
|
1895
2891
|
property :hasSubtitlingFormat,
|
2892
|
+
comment: %(The format of Subtitling.).freeze,
|
1896
2893
|
label: "Subtitling format".freeze,
|
1897
2894
|
subPropertyOf: "ebucore:hasDataFormat".freeze,
|
1898
2895
|
type: "rdf:Property".freeze
|
@@ -1900,16 +2897,57 @@ module RDF::Vocab
|
|
1900
2897
|
comment: %(To associate a TargetAudience \(e.g. for
|
1901
2898
|
parental guiddance or targeting a particular social group\) with a
|
1902
2899
|
BusinessObject/Resource.).freeze,
|
1903
|
-
domain: "ebucore:BusinessObject".freeze,
|
1904
2900
|
label: "Target audience".freeze,
|
1905
2901
|
:"owl:equivalentProperty" => %(ma:hasTargetAudience).freeze,
|
1906
2902
|
subPropertyOf: "ebucore:hasType".freeze,
|
1907
2903
|
type: "rdf:Property".freeze
|
2904
|
+
property :hasTeamMember,
|
2905
|
+
comment: [%(Range: a Person or a string).freeze, %(To identify the members of a Team).freeze],
|
2906
|
+
domain: "ebucore:Team".freeze,
|
2907
|
+
label: "Team member".freeze,
|
2908
|
+
type: "rdf:Property".freeze
|
2909
|
+
property :hasTextLineRelatedCharacter,
|
2910
|
+
comment: [%(Range: string or Character).freeze, %(To identify a Character associated with a TextLine.).freeze],
|
2911
|
+
domain: "ebucore:TextLine".freeze,
|
2912
|
+
label: "Text line related character".freeze,
|
2913
|
+
type: "rdf:Property".freeze
|
2914
|
+
property :hasTextLineRelatedPerson,
|
2915
|
+
comment: [%(Range: string or Person).freeze, %(To identify a Person associated with a TextLine.).freeze],
|
2916
|
+
domain: "ebucore:TextLine".freeze,
|
2917
|
+
label: "Text line related person".freeze,
|
2918
|
+
type: "rdf:Property".freeze
|
2919
|
+
property :hasTextLineRelatedScene,
|
2920
|
+
comment: %(To identify a Scene associated with a TextLine.).freeze,
|
2921
|
+
domain: "ebucore:TextLine".freeze,
|
2922
|
+
label: "Text line related scene.".freeze,
|
2923
|
+
range: "ebucore:Scene".freeze,
|
2924
|
+
type: "rdf:Property".freeze
|
1908
2925
|
property :hasTheme,
|
2926
|
+
comment: [%(Range: a string or a Theme.).freeze, %(To identify a Theme.).freeze],
|
1909
2927
|
label: "Theme".freeze,
|
1910
2928
|
subPropertyOf: "ebucore:hasKeyword".freeze,
|
1911
2929
|
type: "rdf:Property".freeze
|
2930
|
+
property :hasTimecodeTrack,
|
2931
|
+
comment: %(To identify a timecode track with a MediaResource.).freeze,
|
2932
|
+
label: "Timecode track".freeze,
|
2933
|
+
:"owl:equivalentProperty" => %(ma:hasTrack).freeze,
|
2934
|
+
range: "ebucore:TimecodeTrack".freeze,
|
2935
|
+
subPropertyOf: "ebucore:hasTrack".freeze,
|
2936
|
+
type: "rdf:Property".freeze
|
2937
|
+
property :hasTimelineTrack,
|
2938
|
+
comment: %(To associate a TimelineTrack with an EditorialObject).freeze,
|
2939
|
+
domain: "ebucore:EditorialObject".freeze,
|
2940
|
+
label: "Timeline track".freeze,
|
2941
|
+
range: "ebucore:TimelineTrack".freeze,
|
2942
|
+
type: "rdf:Property".freeze
|
2943
|
+
property :hasTimelineTrackPart,
|
2944
|
+
comment: %(To associate an EditorialObject as a TimelineTrack part).freeze,
|
2945
|
+
domain: "ebucore:EditorialObject".freeze,
|
2946
|
+
label: "Timeline track part".freeze,
|
2947
|
+
range: "ebucore:TimelineTrack".freeze,
|
2948
|
+
type: "rdf:Property".freeze
|
1912
2949
|
property :hasTopic,
|
2950
|
+
comment: [%(Range: a Topic or a string).freeze, %(To identify a Topic relevant to the BusinessObject.).freeze],
|
1913
2951
|
label: "Topic".freeze,
|
1914
2952
|
subPropertyOf: "ebucore:hasSubject".freeze,
|
1915
2953
|
type: "rdf:Property".freeze
|
@@ -1923,7 +2961,6 @@ module RDF::Vocab
|
|
1923
2961
|
type: "rdf:Property".freeze
|
1924
2962
|
property :hasType,
|
1925
2963
|
comment: %(To define a type of BusinessObject is not declared as a subClass of BusinessObject.).freeze,
|
1926
|
-
domain: "ebucore:BusinessObject".freeze,
|
1927
2964
|
label: "Type".freeze,
|
1928
2965
|
subPropertyOf: "dc11:type".freeze,
|
1929
2966
|
type: "rdf:Property".freeze
|
@@ -1931,15 +2968,21 @@ module RDF::Vocab
|
|
1931
2968
|
comment: %(To identify another version of an Asset, BusinessObject or Resource.).freeze,
|
1932
2969
|
label: "Version".freeze,
|
1933
2970
|
:"owl:inverseOf" => %(ebucore:isVersionOf).freeze,
|
1934
|
-
|
2971
|
+
type: "rdf:Property".freeze
|
2972
|
+
property :hasVideoCodec,
|
2973
|
+
label: "has video codec".freeze,
|
2974
|
+
subPropertyOf: "ebucore:hasCodec".freeze,
|
1935
2975
|
type: "rdf:Property".freeze
|
1936
2976
|
property :hasVideoEncodingFormat,
|
2977
|
+
comment: %(To specify the audio encoding format.).freeze,
|
1937
2978
|
label: "Video encoding format".freeze,
|
1938
2979
|
subPropertyOf: "ebucore:hasEncodingFormat".freeze,
|
1939
2980
|
type: "rdf:Property".freeze
|
1940
|
-
property :
|
1941
|
-
|
1942
|
-
|
2981
|
+
property :hasVideoTrack,
|
2982
|
+
comment: %(To identify VideoTracks in the Resource.).freeze,
|
2983
|
+
label: "Video track".freeze,
|
2984
|
+
range: "ebucore:VideoTrack".freeze,
|
2985
|
+
subPropertyOf: "ebucore:hasTrack".freeze,
|
1943
2986
|
type: "rdf:Property".freeze
|
1944
2987
|
property :hashValue,
|
1945
2988
|
comment: %(The hash value associated to a Resource. There
|
@@ -1965,32 +3008,27 @@ module RDF::Vocab
|
|
1965
3008
|
label: "Height unit".freeze,
|
1966
3009
|
range: "xsd:string".freeze,
|
1967
3010
|
type: "rdf:Property".freeze
|
1968
|
-
property :highPass,
|
1969
|
-
comment: %(The high pass frequency of the AudioChannel filter.).freeze,
|
1970
|
-
label: "High pass frequency".freeze,
|
1971
|
-
subPropertyOf: "ebucore:frequency".freeze,
|
1972
|
-
type: "rdf:Property".freeze
|
1973
3011
|
property :highlights,
|
1974
3012
|
comment: %(To provide highlights.).freeze,
|
1975
3013
|
label: "Highlights".freeze,
|
1976
3014
|
subPropertyOf: "ebucore:description".freeze,
|
1977
3015
|
type: "rdf:Property".freeze
|
1978
|
-
property :
|
1979
|
-
comment: %(
|
1980
|
-
|
1981
|
-
|
1982
|
-
|
1983
|
-
type: "rdf:Property".freeze
|
1984
|
-
property :
|
1985
|
-
comment:
|
1986
|
-
|
1987
|
-
|
1988
|
-
|
1989
|
-
|
1990
|
-
|
1991
|
-
|
1992
|
-
|
1993
|
-
|
3016
|
+
property :hobbies,
|
3017
|
+
comment: %(The hobbies of a Person.).freeze,
|
3018
|
+
domain: "ebucore:Person".freeze,
|
3019
|
+
label: "Hobbies".freeze,
|
3020
|
+
range: "xsd:string".freeze,
|
3021
|
+
type: "rdf:Property".freeze
|
3022
|
+
property :idDateOfCreation,
|
3023
|
+
comment: %(The date when the identiifier was generated.).freeze,
|
3024
|
+
domain: "ebucore:Identifier".freeze,
|
3025
|
+
label: "Date of creation".freeze,
|
3026
|
+
range: "xsd:date".freeze,
|
3027
|
+
type: "rdf:Property".freeze
|
3028
|
+
property :identifierValue,
|
3029
|
+
comment: [%(Range: string or anyURI.).freeze, %(To provide the value attribued to an Identifier.).freeze],
|
3030
|
+
domain: "ebucore:Identifier".freeze,
|
3031
|
+
label: "Identifier value".freeze,
|
1994
3032
|
type: "rdf:Property".freeze
|
1995
3033
|
property :inchesPerSecond,
|
1996
3034
|
comment: %(Identifies the inches per second at which an analog audio tape should be played back for human consumption.).freeze,
|
@@ -2009,12 +3047,20 @@ module RDF::Vocab
|
|
2009
3047
|
subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
|
2010
3048
|
type: "rdf:Property".freeze
|
2011
3049
|
property :isAgent,
|
2012
|
-
comment: %(To identify a Contact/person or Organisation as part of a cast list.).freeze,
|
3050
|
+
comment: [%(Range: a string or an Agent.).freeze, %(To identify a Contact/person or Organisation as part of a cast list.).freeze],
|
2013
3051
|
domain: "ebucore:Cast".freeze,
|
2014
3052
|
label: "Agent".freeze,
|
2015
3053
|
type: "rdf:Property".freeze
|
3054
|
+
property :isBrand,
|
3055
|
+
comment: %(To identify a Brand.).freeze,
|
3056
|
+
domain: "ebucore:EditorialObject".freeze,
|
3057
|
+
label: "Brand".freeze,
|
3058
|
+
:"owl:inverseOf" => %(ebucore:hasEpisode).freeze,
|
3059
|
+
range: "ebucore:Brand".freeze,
|
3060
|
+
subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
|
3061
|
+
type: "rdf:Property".freeze
|
2016
3062
|
property :isCharacter,
|
2017
|
-
comment: %(To identify the character personified by a Cast individual.).freeze,
|
3063
|
+
comment: [%(Range: a string or a FictionalPerson/Character.).freeze, %(To identify the character personified by a Cast individual.).freeze],
|
2018
3064
|
domain: "ebucore:Cast".freeze,
|
2019
3065
|
label: "Character".freeze,
|
2020
3066
|
type: "rdf:Property".freeze
|
@@ -2022,45 +3068,56 @@ module RDF::Vocab
|
|
2022
3068
|
comment: %(Identifies relationship between a digital instantiation of a resource and its direct copy, with no generational loss.).freeze,
|
2023
3069
|
label: "Cloned from".freeze,
|
2024
3070
|
:"owl:inverseOf" => %(ebucore:clonedTo).freeze,
|
2025
|
-
subPropertyOf: "dc11:relation".freeze,
|
2026
3071
|
type: "rdf:Property".freeze
|
2027
|
-
property :
|
2028
|
-
comment: %(
|
2029
|
-
|
2030
|
-
:"
|
2031
|
-
|
3072
|
+
property :isComposedOf,
|
3073
|
+
comment: %(To identify mediaResources used to compose an Essence.).freeze,
|
3074
|
+
domain: "ebucore:Essence".freeze,
|
3075
|
+
label: "MediaResource".freeze,
|
3076
|
+
range: "ebucore:MediaResource".freeze,
|
2032
3077
|
type: "rdf:Property".freeze
|
2033
3078
|
property :isCoveredBy,
|
2034
|
-
comment: %(The Rights or policy applicable to the
|
2035
|
-
BusinessObject, Asset, Resource or PublicationEvent.).freeze,
|
3079
|
+
comment: [%(Range: a link to Rights or open text \(string\).).freeze, %(The Rights or policy applicable to the
|
3080
|
+
BusinessObject, Asset, Resource or PublicationEvent.).freeze],
|
3081
|
+
domain: "ebucore:Asset".freeze,
|
2036
3082
|
label: "Rights".freeze,
|
2037
3083
|
:"owl:equivalentProperty" => [%(ma:hasPermissions).freeze, %(ma:hasPolicy).freeze],
|
2038
|
-
subPropertyOf: "
|
3084
|
+
subPropertyOf: "dc11:rights".freeze,
|
2039
3085
|
type: "rdf:Property".freeze
|
2040
3086
|
property :isDerivedFrom,
|
2041
3087
|
comment: %(Identifies a content-based relationship between two resources.).freeze,
|
2042
3088
|
label: "Derived from".freeze,
|
2043
3089
|
:"owl:inverseOf" => %(ebucore:derivedTo).freeze,
|
2044
|
-
subPropertyOf: "dc11:relation".freeze,
|
2045
3090
|
type: "rdf:Property".freeze
|
2046
3091
|
property :isDubbedFrom,
|
2047
3092
|
comment: %(Identifies relationship between a physical instantiation of a resource and a duplicate physical copy that may involve generational loss.).freeze,
|
3093
|
+
domain: "ebucore:Resource".freeze,
|
2048
3094
|
label: "Dubbed from".freeze,
|
2049
3095
|
:"owl:inverseOf" => %(ebucore:dubbedTo).freeze,
|
2050
|
-
|
3096
|
+
range: "ebucore:Resource".freeze,
|
2051
3097
|
type: "rdf:Property".freeze
|
2052
3098
|
property :isEpisodeOf,
|
2053
3099
|
comment: %(The Episode of a Series or a Season.).freeze,
|
2054
3100
|
domain: "ebucore:Programme".freeze,
|
2055
|
-
label: "Parent season".freeze,
|
3101
|
+
label: "Parent season / series".freeze,
|
2056
3102
|
:"owl:inverseOf" => %(ebucore:hasEpisode).freeze,
|
2057
3103
|
subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
|
2058
3104
|
type: "rdf:Property".freeze
|
2059
|
-
property :
|
2060
|
-
comment: %(To identify Contact/
|
3105
|
+
property :isFictitiousPerson,
|
3106
|
+
comment: [%(Range: a string or a FictitiousPerson.).freeze, %(To identify a Contact/Person being fictitious.).freeze],
|
2061
3107
|
domain: "ebucore:Character".freeze,
|
2062
3108
|
label: "Fictitious contact".freeze,
|
2063
3109
|
type: "rdf:Property".freeze
|
3110
|
+
property :isInstantiatedBy,
|
3111
|
+
comment: %(To identify a MediaResource instantiating an EditorialObject.).freeze,
|
3112
|
+
domain: "ebucore:EditorialObject".freeze,
|
3113
|
+
label: "MediaResource".freeze,
|
3114
|
+
range: "ebucore:MediaResource".freeze,
|
3115
|
+
type: "rdf:Property".freeze
|
3116
|
+
property :isIssuedBy,
|
3117
|
+
comment: [%(Range: Agent or String).freeze, %(To identify the issuer of an identifier.).freeze],
|
3118
|
+
domain: "ebucore:Identifier".freeze,
|
3119
|
+
label: "Issuer".freeze,
|
3120
|
+
type: "rdf:Property".freeze
|
2064
3121
|
property :isMediaFragmentOf,
|
2065
3122
|
comment: %(To identify the MediaResource to which the MediaFragment belongs to.).freeze,
|
2066
3123
|
domain: "ebucore:MediaFragment".freeze,
|
@@ -2076,12 +3133,15 @@ module RDF::Vocab
|
|
2076
3133
|
label: "Member of".freeze,
|
2077
3134
|
:"owl:inverseOf" => %(ebucore:hasMember).freeze,
|
2078
3135
|
range: "ebucore:Group".freeze,
|
2079
|
-
|
3136
|
+
type: "rdf:Property".freeze
|
3137
|
+
property :isMemberOfPublicationPlan,
|
3138
|
+
domain: "ebucore:PublicationPlan".freeze,
|
3139
|
+
label: "Member of publication plan".freeze,
|
3140
|
+
range: "ebucore:PublicationPlan".freeze,
|
2080
3141
|
type: "rdf:Property".freeze
|
2081
3142
|
property :isNextInSequence,
|
2082
|
-
comment: %(A link to a an BusinessObject or a Resource following the current BusinessObject or Resource in an ordered sequence).freeze,
|
3143
|
+
comment: %(A link to a an BusinessObject or a Resource following the current BusinessObject or Resource in an ordered sequence.).freeze,
|
2083
3144
|
label: "Next".freeze,
|
2084
|
-
subPropertyOf: "dc11:relation".freeze,
|
2085
3145
|
type: "rdf:Property".freeze
|
2086
3146
|
property :isOperatedBy,
|
2087
3147
|
comment: %(To identify the Service that operates the
|
@@ -2089,7 +3149,6 @@ module RDF::Vocab
|
|
2089
3149
|
domain: "ebucore:PublicationChannel".freeze,
|
2090
3150
|
label: "Operator, owner".freeze,
|
2091
3151
|
range: "ebucore:Service".freeze,
|
2092
|
-
subPropertyOf: "dc11:relation".freeze,
|
2093
3152
|
type: "rdf:Property".freeze
|
2094
3153
|
property :isOwnedBy,
|
2095
3154
|
comment: %(To identify the Agent \(Contact/person or
|
@@ -2097,29 +3156,35 @@ module RDF::Vocab
|
|
2097
3156
|
domain: "ebucore:Service".freeze,
|
2098
3157
|
label: "Owner".freeze,
|
2099
3158
|
range: "ebucore:Agent".freeze,
|
2100
|
-
subPropertyOf: "dc11:relation".freeze,
|
2101
3159
|
type: "rdf:Property".freeze
|
2102
3160
|
property :isReferencedBy,
|
2103
3161
|
comment: %(To express references across Assets, BusinessObjects or Resources.).freeze,
|
2104
3162
|
label: "Related object, resource".freeze,
|
2105
|
-
subPropertyOf: "dc11:relation".freeze,
|
2106
3163
|
type: "rdf:Property".freeze
|
2107
|
-
property :
|
2108
|
-
comment: %(To
|
2109
|
-
|
2110
|
-
label: "
|
2111
|
-
:"
|
2112
|
-
|
3164
|
+
property :isRelatedToBusinessObject,
|
3165
|
+
comment: %(To identify the BusinessObject associated with a Rating.).freeze,
|
3166
|
+
domain: "ebucore:Rating".freeze,
|
3167
|
+
label: "Rated business object".freeze,
|
3168
|
+
range: "ebucore:BusinessObject".freeze,
|
3169
|
+
type: "rdf:Property".freeze
|
3170
|
+
property :isRelatedToResource,
|
3171
|
+
comment: %(To identify the resource associated with a Rating.).freeze,
|
3172
|
+
domain: "ebucore:Rating".freeze,
|
3173
|
+
label: "Rated Resource".freeze,
|
3174
|
+
range: "ebucore:Resource".freeze,
|
3175
|
+
type: "rdf:Property".freeze
|
3176
|
+
property :isReleasedBy,
|
3177
|
+
comment: [%(Range: Service or string).freeze, %(To identify a Service assocoated to a PublicationEvent.).freeze],
|
3178
|
+
domain: "ebucore:PublicationEvent".freeze,
|
3179
|
+
label: "Service".freeze,
|
2113
3180
|
type: "rdf:Property".freeze
|
2114
3181
|
property :isReplacedBy,
|
2115
3182
|
comment: %(To identify substitutions.).freeze,
|
2116
3183
|
label: "Replacement".freeze,
|
2117
|
-
subPropertyOf: "dc11:relation".freeze,
|
2118
3184
|
type: "rdf:Property".freeze
|
2119
3185
|
property :isRequiredBy,
|
2120
3186
|
comment: %(To express strong relations between Assets, BusinessObjects or Resources.).freeze,
|
2121
3187
|
label: "Required".freeze,
|
2122
|
-
subPropertyOf: "dc11:relation".freeze,
|
2123
3188
|
type: "rdf:Property".freeze
|
2124
3189
|
property :isSeasonOf,
|
2125
3190
|
comment: %(The Season of a Series.).freeze,
|
@@ -2129,17 +3194,17 @@ module RDF::Vocab
|
|
2129
3194
|
range: "ebucore:Series".freeze,
|
2130
3195
|
subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
|
2131
3196
|
type: "rdf:Property".freeze
|
3197
|
+
property :isSeriesOf,
|
3198
|
+
comment: %(To identify a Brand or Season associated with a Series.).freeze,
|
3199
|
+
domain: "ebucore:Series".freeze,
|
3200
|
+
label: "Parent Brand or Series".freeze,
|
3201
|
+
type: "rdf:Property".freeze
|
2132
3202
|
property :isVersionOf,
|
2133
3203
|
comment: %(To identify related versions.).freeze,
|
3204
|
+
domain: "ebucore:BusinessObject".freeze,
|
2134
3205
|
label: "Version of".freeze,
|
2135
3206
|
:"owl:inverseOf" => %(ebucore:hasVersion).freeze,
|
2136
|
-
|
2137
|
-
type: "rdf:Property".freeze
|
2138
|
-
property :keywordDefinition,
|
2139
|
-
comment: %(To provide a definition for a Keyword.).freeze,
|
2140
|
-
domain: "ebucore:Keyword".freeze,
|
2141
|
-
label: "Keyword definition".freeze,
|
2142
|
-
range: "xsd:string".freeze,
|
3207
|
+
range: "ebucore:BusinessObject".freeze,
|
2143
3208
|
type: "rdf:Property".freeze
|
2144
3209
|
property :lineNumber,
|
2145
3210
|
comment: %(To provide the number of the line on which
|
@@ -2148,6 +3213,36 @@ module RDF::Vocab
|
|
2148
3213
|
label: "Line number".freeze,
|
2149
3214
|
range: "xsd:integer".freeze,
|
2150
3215
|
type: "rdf:Property".freeze
|
3216
|
+
property :linkToLogo,
|
3217
|
+
comment: %(To provide a link to a Logo).freeze,
|
3218
|
+
domain: "ebucore:Costume".freeze,
|
3219
|
+
label: "Link to logo".freeze,
|
3220
|
+
range: "ebucore:Logo".freeze,
|
3221
|
+
type: "rdf:Property".freeze
|
3222
|
+
property :linkToSticker,
|
3223
|
+
comment: %(To provide a link to a Sticker).freeze,
|
3224
|
+
domain: "ebucore:Costume".freeze,
|
3225
|
+
label: "Link to Sticker".freeze,
|
3226
|
+
range: "ebucore:Sticker".freeze,
|
3227
|
+
type: "rdf:Property".freeze
|
3228
|
+
property :live,
|
3229
|
+
comment: %(A flag to indicate that the event is 'live'.).freeze,
|
3230
|
+
domain: "ebucore:PublicationEvent".freeze,
|
3231
|
+
label: "Live".freeze,
|
3232
|
+
range: "xsd:boolean".freeze,
|
3233
|
+
type: "rdf:Property".freeze
|
3234
|
+
property :localFamiliyName,
|
3235
|
+
comment: %(To provide a family name in its local expression.).freeze,
|
3236
|
+
domain: "ebucore:Person".freeze,
|
3237
|
+
label: "Local familiy name".freeze,
|
3238
|
+
range: "xsd:string".freeze,
|
3239
|
+
type: "rdf:Property".freeze
|
3240
|
+
property :localGivenName,
|
3241
|
+
comment: %(To provide a given name in its local expression.).freeze,
|
3242
|
+
domain: "ebucore:Person".freeze,
|
3243
|
+
label: "Local given name".freeze,
|
3244
|
+
range: "xsd:string".freeze,
|
3245
|
+
type: "rdf:Property".freeze
|
2151
3246
|
property :locationAddress,
|
2152
3247
|
comment: %(To provide the address of a
|
2153
3248
|
Location.).freeze,
|
@@ -2189,9 +3284,16 @@ module RDF::Vocab
|
|
2189
3284
|
comment: %(To define the altitude of a Location in
|
2190
3285
|
meters.).freeze,
|
2191
3286
|
domain: "ebucore:Location".freeze,
|
2192
|
-
label: "Altitude".freeze,
|
3287
|
+
label: "Altitude".freeze,
|
3288
|
+
:"owl:equivalentProperty" => %(ma:locationAltitude).freeze,
|
3289
|
+
range: "xsd:float".freeze,
|
3290
|
+
type: "rdf:Property".freeze
|
3291
|
+
property :locationCode,
|
3292
|
+
comment: %(A code attributed to a Location.).freeze,
|
3293
|
+
domain: "ebucore:Location".freeze,
|
3294
|
+
label: "Code".freeze,
|
2193
3295
|
:"owl:equivalentProperty" => %(ma:locationAltitude).freeze,
|
2194
|
-
range: "xsd:
|
3296
|
+
range: "xsd:string".freeze,
|
2195
3297
|
type: "rdf:Property".freeze
|
2196
3298
|
property :locationCoordinateSystemName,
|
2197
3299
|
comment: %(To specify the name of the gps coordinate
|
@@ -2206,11 +3308,16 @@ module RDF::Vocab
|
|
2206
3308
|
label: "Location description".freeze,
|
2207
3309
|
range: "xsd:string".freeze,
|
2208
3310
|
type: "rdf:Property".freeze
|
3311
|
+
property :locationId,
|
3312
|
+
comment: [%(An Id attributed to a Location.).freeze, %(Range: Identifier, anyURI or string).freeze],
|
3313
|
+
domain: "ebucore:Location".freeze,
|
3314
|
+
label: "Location Id".freeze,
|
3315
|
+
type: "rdf:Property".freeze
|
2209
3316
|
property :locationLatitude,
|
2210
3317
|
comment: %(The latitude of the Location.).freeze,
|
2211
3318
|
domain: "ebucore:Location".freeze,
|
2212
3319
|
label: "Latitude".freeze,
|
2213
|
-
:"owl:equivalentProperty" => %(ma:locationLatitude).freeze,
|
3320
|
+
:"owl:equivalentProperty" => [%(geo:lat).freeze, %(ma:locationLatitude).freeze],
|
2214
3321
|
range: "xsd:double".freeze,
|
2215
3322
|
type: "rdf:Property".freeze
|
2216
3323
|
property :locationLongitude,
|
@@ -2218,7 +3325,7 @@ module RDF::Vocab
|
|
2218
3325
|
Location.).freeze,
|
2219
3326
|
domain: "ebucore:Location".freeze,
|
2220
3327
|
label: "Longitude".freeze,
|
2221
|
-
:"owl:equivalentProperty" => %(ma:locationLongitude).freeze,
|
3328
|
+
:"owl:equivalentProperty" => [%(geo:long).freeze, %(ma:locationLongitude).freeze],
|
2222
3329
|
range: "xsd:double".freeze,
|
2223
3330
|
type: "rdf:Property".freeze
|
2224
3331
|
property :locationName,
|
@@ -2230,10 +3337,15 @@ module RDF::Vocab
|
|
2230
3337
|
range: "xsd:string".freeze,
|
2231
3338
|
type: "rdf:Property".freeze
|
2232
3339
|
property :locationRegion,
|
2233
|
-
comment: %(To provide a description of a particular region assocoated to the Location.).freeze,
|
3340
|
+
comment: [%(Range: string or code/Concept).freeze, %(To provide a description of a particular region assocoated to the Location.).freeze],
|
2234
3341
|
domain: "ebucore:Location".freeze,
|
2235
3342
|
label: "Region".freeze,
|
2236
|
-
|
3343
|
+
type: "rdf:Property".freeze
|
3344
|
+
property :locationType,
|
3345
|
+
comment: [%(A type of Location.).freeze, %(Note: a type can be defined by a subClass of Location).freeze, %(Range: string or code/Concept).freeze],
|
3346
|
+
domain: "ebucore:Location".freeze,
|
3347
|
+
label: "Location type".freeze,
|
3348
|
+
:"owl:equivalentProperty" => %(ma:locationName).freeze,
|
2237
3349
|
type: "rdf:Property".freeze
|
2238
3350
|
property :locator,
|
2239
3351
|
comment: %(A locator from where the Resource can be accessed.).freeze,
|
@@ -2274,6 +3386,7 @@ module RDF::Vocab
|
|
2274
3386
|
type: "rdf:Property".freeze
|
2275
3387
|
property :loudnessParameters,
|
2276
3388
|
comment: %(All the parameters for measurement of loudness at the AudioContent or AudioProgramme level.).freeze,
|
3389
|
+
domain: "ebucore:AudioProgramme".freeze,
|
2277
3390
|
label: "loudness parameters".freeze,
|
2278
3391
|
range: "rdfs:Literal".freeze,
|
2279
3392
|
type: "rdf:Property".freeze
|
@@ -2289,35 +3402,69 @@ module RDF::Vocab
|
|
2289
3402
|
range: "xsd:float".freeze,
|
2290
3403
|
subPropertyOf: "ebucore:loudnessParameters".freeze,
|
2291
3404
|
type: "rdf:Property".freeze
|
2292
|
-
property :lowPass,
|
2293
|
-
comment: %(The low pass frequency of the AudioChannel filter.).freeze,
|
2294
|
-
label: "Low pass frequency".freeze,
|
2295
|
-
subPropertyOf: "ebucore:frequency".freeze,
|
2296
|
-
type: "rdf:Property".freeze
|
2297
3405
|
property :mainTitle,
|
2298
3406
|
comment: %(To provide the main title by which the media
|
2299
3407
|
resource is known.).freeze,
|
2300
3408
|
label: "Main title".freeze,
|
2301
3409
|
subPropertyOf: "ebucore:title".freeze,
|
2302
3410
|
type: "rdf:Property".freeze
|
2303
|
-
property :
|
2304
|
-
comment: %(
|
2305
|
-
|
2306
|
-
:"
|
2307
|
-
|
3411
|
+
property :maritalStatus,
|
3412
|
+
comment: %(The marital status of a Person.).freeze,
|
3413
|
+
domain: "ebucore:Person".freeze,
|
3414
|
+
label: "Marital status".freeze,
|
3415
|
+
range: "xsd:string".freeze,
|
3416
|
+
type: "rdf:Property".freeze
|
3417
|
+
property :mediaResourceDescription,
|
3418
|
+
domain: "ebucore:MediaResource".freeze,
|
3419
|
+
label: "Media resource description".freeze,
|
3420
|
+
range: "xsd:string".freeze,
|
3421
|
+
type: "rdf:Property".freeze
|
3422
|
+
property :mediaResourceId,
|
3423
|
+
comment: [%(An Id attributed to a MediaResource.).freeze, %(Range: Identifier or anyURI or string).freeze],
|
3424
|
+
domain: "ebucore:MediaResource".freeze,
|
3425
|
+
label: "Media Resource Id".freeze,
|
3426
|
+
type: "rdf:Property".freeze
|
3427
|
+
property :mediaResourceName,
|
3428
|
+
comment: %(A name by which the media resource can be identified.).freeze,
|
3429
|
+
domain: "ebucore:MediaResource".freeze,
|
3430
|
+
label: "Media Resource name".freeze,
|
3431
|
+
range: "xsd:string".freeze,
|
3432
|
+
type: "rdf:Property".freeze
|
3433
|
+
property :mediaResourceType,
|
3434
|
+
comment: [%(Range: anyURI, string).freeze, %(To identify a type of media resource, e.g. a template'.).freeze],
|
3435
|
+
domain: "ebucore:MediaResource".freeze,
|
3436
|
+
label: "Media Resource type".freeze,
|
3437
|
+
type: "rdf:Property".freeze
|
3438
|
+
property :middleName,
|
3439
|
+
comment: %(To provide one or more middle names.).freeze,
|
3440
|
+
domain: "ebucore:Person".freeze,
|
3441
|
+
label: "Middle name".freeze,
|
3442
|
+
range: "xsd:string".freeze,
|
3443
|
+
type: "rdf:Property".freeze
|
3444
|
+
property :musicBrainz,
|
3445
|
+
comment: %(A link to a musicBrainz page.).freeze,
|
3446
|
+
label: "MusicBrainz".freeze,
|
3447
|
+
range: "xsd:anyURI".freeze,
|
3448
|
+
subPropertyOf: "ebucore:agentLinkedData".freeze,
|
2308
3449
|
type: "rdf:Property".freeze
|
2309
3450
|
property :noiseFilter,
|
2310
3451
|
comment: %(A flag to signal that a noise filter has been
|
2311
3452
|
used.).freeze,
|
2312
|
-
domain: "ebucore:
|
3453
|
+
domain: "ebucore:MediaResource".freeze,
|
2313
3454
|
label: "Noise filter".freeze,
|
2314
3455
|
range: "xsd:boolean".freeze,
|
2315
3456
|
type: "rdf:Property".freeze
|
2316
3457
|
property :notRated,
|
2317
3458
|
comment: %(A flag to indicate that the BusinessObejct has not been rated.).freeze,
|
3459
|
+
domain: "ebucore:Rating".freeze,
|
2318
3460
|
label: "Not rated".freeze,
|
2319
3461
|
range: "xsd:boolean".freeze,
|
2320
3462
|
type: "rdf:Property".freeze
|
3463
|
+
property :numberOfAudioTracks,
|
3464
|
+
comment: %(To provide the number of audio tracks.).freeze,
|
3465
|
+
label: "Number of audio tracks".freeze,
|
3466
|
+
subPropertyOf: "ebucore:numberOfTracks".freeze,
|
3467
|
+
type: "rdf:Property".freeze
|
2321
3468
|
property :numberOfTracks,
|
2322
3469
|
comment: %(The number of Tracks composing the MediaResource.).freeze,
|
2323
3470
|
domain: "ebucore:MediaResource".freeze,
|
@@ -2325,81 +3472,66 @@ module RDF::Vocab
|
|
2325
3472
|
:"owl:equivalentProperty" => %(ma:numberOfTracks).freeze,
|
2326
3473
|
range: "xsd:integer".freeze,
|
2327
3474
|
type: "rdf:Property".freeze
|
2328
|
-
property :
|
2329
|
-
comment: %(To provide
|
2330
|
-
|
2331
|
-
|
2332
|
-
range: "xsd:string".freeze,
|
2333
|
-
type: "rdf:Property".freeze
|
2334
|
-
property :officeAddressArea,
|
2335
|
-
comment: %(To provide the Area part of an
|
2336
|
-
Address.).freeze,
|
2337
|
-
label: "Area code".freeze,
|
2338
|
-
subPropertyOf: "ebucore:officeMailAddress".freeze,
|
2339
|
-
type: "rdf:Property".freeze
|
2340
|
-
property :officeAddressCountry,
|
2341
|
-
comment: %(To provide the country name and or country
|
2342
|
-
code.).freeze,
|
2343
|
-
label: "Country".freeze,
|
2344
|
-
subPropertyOf: "ebucore:officeMailAddress".freeze,
|
2345
|
-
type: "rdf:Property".freeze
|
2346
|
-
property :officeAddressLine,
|
2347
|
-
comment: %(To write address line with e.g. the street name
|
2348
|
-
and number.).freeze,
|
2349
|
-
label: "Address line".freeze,
|
2350
|
-
subPropertyOf: "ebucore:officeMailAddress".freeze,
|
3475
|
+
property :numberOfVideoTracks,
|
3476
|
+
comment: %(To provide the number of video tracks.).freeze,
|
3477
|
+
label: "Number of video tracks".freeze,
|
3478
|
+
subPropertyOf: "ebucore:numberOfTracks".freeze,
|
2351
3479
|
type: "rdf:Property".freeze
|
2352
|
-
property :
|
2353
|
-
comment: %(
|
2354
|
-
|
2355
|
-
label: "
|
2356
|
-
|
3480
|
+
property :occupation,
|
3481
|
+
comment: %(The job / occupation name of a Person.).freeze,
|
3482
|
+
domain: "ebucore:Person".freeze,
|
3483
|
+
label: "Occupation".freeze,
|
3484
|
+
range: "xsd:string".freeze,
|
2357
3485
|
type: "rdf:Property".freeze
|
2358
|
-
property :
|
2359
|
-
comment: %(To
|
2360
|
-
|
2361
|
-
label: "
|
2362
|
-
|
3486
|
+
property :offers,
|
3487
|
+
comment: %(To identify the PublicationEvents provided through a Service.).freeze,
|
3488
|
+
domain: "ebucore:Service".freeze,
|
3489
|
+
label: "PublicationEvent".freeze,
|
3490
|
+
range: "ebucore:PublicationEvent".freeze,
|
2363
3491
|
type: "rdf:Property".freeze
|
2364
3492
|
property :officeEmailAddress,
|
2365
3493
|
comment: %(To provide the professional/office email
|
2366
3494
|
address of an agent \(Contact/person or organisation\).).freeze,
|
3495
|
+
domain: "ebucore:Person".freeze,
|
2367
3496
|
label: "Office email".freeze,
|
2368
3497
|
subPropertyOf: "ebucore:agentEmailAddress".freeze,
|
2369
3498
|
type: "rdf:Property".freeze
|
2370
|
-
property :officeHomepage,
|
2371
|
-
comment: %(To provide an office/professional/company web
|
2372
|
-
homepage of an Agent \(Contact/person or Organisation\).).freeze,
|
2373
|
-
domain: "ebucore:Agent".freeze,
|
2374
|
-
label: "Homepage (office)".freeze,
|
2375
|
-
:"owl:equivalentProperty" => %(foaf:workplaceHomepage).freeze,
|
2376
|
-
range: "xsd:anyURI".freeze,
|
2377
|
-
subPropertyOf: "ebucore:agentWebHomepage".freeze,
|
2378
|
-
type: "rdf:Property".freeze
|
2379
|
-
property :officeMailAddress,
|
2380
|
-
comment: %(To provide the professional / office address of
|
2381
|
-
an agent \(Contact/person or organisation\).).freeze,
|
2382
|
-
label: "Office mail address".freeze,
|
2383
|
-
range: "xsd:string".freeze,
|
2384
|
-
subPropertyOf: "ebucore:agentAddress".freeze,
|
2385
|
-
type: "rdf:Property".freeze
|
2386
3499
|
property :officeMobileTelephoneNumber,
|
2387
3500
|
comment: %(To provide the professional/office/company
|
2388
3501
|
mobile telephone number of an agent \(Contact/person or organisation\).).freeze,
|
3502
|
+
domain: "ebucore:Person".freeze,
|
2389
3503
|
label: "Mobile (office)".freeze,
|
2390
3504
|
subPropertyOf: "ebucore:agentMobileTelephoneNumber".freeze,
|
2391
3505
|
type: "rdf:Property".freeze
|
2392
3506
|
property :officeTelephoneNumber,
|
2393
3507
|
comment: %(To provide an office/professional/company
|
2394
3508
|
telephone number of an Agent \(Contact/person or Organisation\).).freeze,
|
3509
|
+
domain: "ebucore:Person".freeze,
|
2395
3510
|
label: "Telephone (office)".freeze,
|
2396
3511
|
range: "xsd:string".freeze,
|
2397
3512
|
subPropertyOf: "ebucore:agentTelephoneNumber".freeze,
|
2398
3513
|
type: "rdf:Property".freeze
|
3514
|
+
property :orderedFlag,
|
3515
|
+
comment: %(A flag to indicate that a BusinessObject is member of an ordered group or is an ordered group \(e.g. Series\)).freeze,
|
3516
|
+
domain: "ebucore:BusinessObject".freeze,
|
3517
|
+
label: "Ordered flag".freeze,
|
3518
|
+
range: "xsd:boolean".freeze,
|
3519
|
+
type: "rdf:Property".freeze
|
3520
|
+
property :organisationDescription,
|
3521
|
+
comment: %(To provide a description of an Organisation.).freeze,
|
3522
|
+
domain: "ebucore:Organisation".freeze,
|
3523
|
+
label: "Organisation description".freeze,
|
3524
|
+
range: "xsd:string".freeze,
|
3525
|
+
type: "rdf:Property".freeze
|
3526
|
+
property :organisationId,
|
3527
|
+
comment: [%(An Id attributed to an Organisation.).freeze, %(Range: identifier of anyURI or string).freeze],
|
3528
|
+
domain: "ebucore:Organisation".freeze,
|
3529
|
+
label: "Organisation id".freeze,
|
3530
|
+
type: "rdf:Property".freeze
|
2399
3531
|
property :organisationName,
|
2400
3532
|
comment: %(To provide the full name of an Organisation.).freeze,
|
2401
|
-
domain: "ebucore:
|
2402
|
-
label: "
|
3533
|
+
domain: "ebucore:Organisation".freeze,
|
3534
|
+
label: "Organisation name".freeze,
|
2403
3535
|
range: "xsd:string".freeze,
|
2404
3536
|
type: "rdf:Property".freeze
|
2405
3537
|
property :orientation,
|
@@ -2422,7 +3554,6 @@ module RDF::Vocab
|
|
2422
3554
|
label: "Owns".freeze,
|
2423
3555
|
:"owl:inverseOf" => %(ebucore:isOwnedBy).freeze,
|
2424
3556
|
range: "ebucore:Service".freeze,
|
2425
|
-
subPropertyOf: "dc11:relation".freeze,
|
2426
3557
|
type: "rdf:Property".freeze
|
2427
3558
|
property :packageByteSize,
|
2428
3559
|
comment: %(The size of a media package in
|
@@ -2436,7 +3567,7 @@ module RDF::Vocab
|
|
2436
3567
|
package.).freeze,
|
2437
3568
|
domain: "ebucore:Resource".freeze,
|
2438
3569
|
label: "Package name".freeze,
|
2439
|
-
range: "xsd:
|
3570
|
+
range: "xsd:string".freeze,
|
2440
3571
|
type: "rdf:Property".freeze
|
2441
3572
|
property :partDefinition,
|
2442
3573
|
comment: %(A definition associated with the Part.).freeze,
|
@@ -2444,6 +3575,11 @@ module RDF::Vocab
|
|
2444
3575
|
label: "Part definition".freeze,
|
2445
3576
|
range: "xsd:string".freeze,
|
2446
3577
|
type: "rdf:Property".freeze
|
3578
|
+
property :partId,
|
3579
|
+
comment: %(A Id attributed toa Part.).freeze,
|
3580
|
+
domain: "ebucore:Part".freeze,
|
3581
|
+
label: "Part Id".freeze,
|
3582
|
+
type: "rdf:Property".freeze
|
2447
3583
|
property :partName,
|
2448
3584
|
comment: %(A name by which the Part is identified.).freeze,
|
2449
3585
|
domain: "ebucore:Part".freeze,
|
@@ -2464,6 +3600,17 @@ module RDF::Vocab
|
|
2464
3600
|
label: "Total number of parts".freeze,
|
2465
3601
|
range: "xsd:integer".freeze,
|
2466
3602
|
type: "rdf:Property".freeze
|
3603
|
+
property :partType,
|
3604
|
+
comment: [%(A type of Part.).freeze, %(Note: this can also be done defining subClasses of Part.).freeze, %(Range: a string or code/Concept).freeze],
|
3605
|
+
domain: "ebucore:Part".freeze,
|
3606
|
+
label: "Part type".freeze,
|
3607
|
+
type: "rdf:Property".freeze
|
3608
|
+
property :pictureIdLocator,
|
3609
|
+
comment: %(The location from where a Person Id picture can be accessed.).freeze,
|
3610
|
+
domain: "ebucore:Person".freeze,
|
3611
|
+
label: "Picture id locator".freeze,
|
3612
|
+
range: "xsd:anyURI".freeze,
|
3613
|
+
type: "rdf:Property".freeze
|
2467
3614
|
property :playbackSpeed,
|
2468
3615
|
comment: %(Identifies the rate of units against time at which the resource should be played back for human consumption. If the unit of measure is known, use sub-properties framesPerSecond or inchesPerSecond.).freeze,
|
2469
3616
|
domain: "ebucore:Resource".freeze,
|
@@ -2476,67 +3623,45 @@ module RDF::Vocab
|
|
2476
3623
|
label: "Playlist".freeze,
|
2477
3624
|
subPropertyOf: "ebucore:description".freeze,
|
2478
3625
|
type: "rdf:Property".freeze
|
2479
|
-
property :
|
2480
|
-
comment: %(To
|
2481
|
-
|
2482
|
-
label: "
|
2483
|
-
|
2484
|
-
type: "rdf:Property".freeze
|
2485
|
-
property :privateAddressCountry,
|
2486
|
-
comment: %(To provide the country name and or country
|
2487
|
-
code.).freeze,
|
2488
|
-
label: "Country".freeze,
|
2489
|
-
subPropertyOf: "ebucore:privateMailAddress".freeze,
|
2490
|
-
type: "rdf:Property".freeze
|
2491
|
-
property :privateAddressLine,
|
2492
|
-
comment: %(To write address line with e.g. the street name
|
2493
|
-
and number.).freeze,
|
2494
|
-
label: "Address line".freeze,
|
2495
|
-
subPropertyOf: "ebucore:privateMailAddress".freeze,
|
2496
|
-
type: "rdf:Property".freeze
|
2497
|
-
property :privateAddressLocality,
|
2498
|
-
comment: %(To provide the name of a city, viallge,
|
2499
|
-
etc.).freeze,
|
2500
|
-
label: "Locality".freeze,
|
2501
|
-
subPropertyOf: "ebucore:privateMailAddress".freeze,
|
3626
|
+
property :playsOut,
|
3627
|
+
comment: %(To identify the Essence used in a PublicationEvent).freeze,
|
3628
|
+
domain: "ebucore:PublicationEvent".freeze,
|
3629
|
+
label: "Essence".freeze,
|
3630
|
+
range: "ebucore:Essence".freeze,
|
2502
3631
|
type: "rdf:Property".freeze
|
2503
|
-
property :
|
2504
|
-
comment: %(To
|
2505
|
-
|
2506
|
-
label: "
|
2507
|
-
|
3632
|
+
property :position,
|
3633
|
+
comment: %(To indicate the position of a BusinessObject in an ordered group.).freeze,
|
3634
|
+
domain: "ebucore:BusinessObject".freeze,
|
3635
|
+
label: "Position".freeze,
|
3636
|
+
range: "xsd:string".freeze,
|
2508
3637
|
type: "rdf:Property".freeze
|
2509
3638
|
property :privateEmailAddress,
|
2510
3639
|
comment: %(To provide the private email address of an
|
2511
3640
|
agent \(Contact/person\)).freeze,
|
3641
|
+
domain: "ebucore:Person".freeze,
|
2512
3642
|
label: "Private email".freeze,
|
2513
3643
|
subPropertyOf: "ebucore:agentEmailAddress".freeze,
|
2514
3644
|
type: "rdf:Property".freeze
|
2515
3645
|
property :privateHomepage,
|
2516
3646
|
comment: %(To provide an private web homepage of an Agent
|
2517
3647
|
\(Contact/person\).).freeze,
|
2518
|
-
domain: "ebucore:
|
3648
|
+
domain: "ebucore:Person".freeze,
|
2519
3649
|
label: "Homepage (private)".freeze,
|
2520
3650
|
:"owl:equivalentProperty" => %(foaf:homepage).freeze,
|
2521
3651
|
range: "xsd:anyURI".freeze,
|
2522
3652
|
subPropertyOf: "ebucore:agentWebHomepage".freeze,
|
2523
3653
|
type: "rdf:Property".freeze
|
2524
|
-
property :privateMailAddress,
|
2525
|
-
comment: %(To provide the private / personal address of an
|
2526
|
-
agent \(Contact/person\).).freeze,
|
2527
|
-
label: "Private mail address".freeze,
|
2528
|
-
range: "xsd:string".freeze,
|
2529
|
-
subPropertyOf: "ebucore:agentAddress".freeze,
|
2530
|
-
type: "rdf:Property".freeze
|
2531
3654
|
property :privateMobileTelephoneNumber,
|
2532
3655
|
comment: %(To provide the private mobile telephone number
|
2533
3656
|
of an agent \(Contact/person\).).freeze,
|
3657
|
+
domain: "ebucore:Person".freeze,
|
2534
3658
|
label: "Mobile (private)".freeze,
|
2535
3659
|
subPropertyOf: "ebucore:agentMobileTelephoneNumber".freeze,
|
2536
3660
|
type: "rdf:Property".freeze
|
2537
3661
|
property :privateTelephoneNumber,
|
2538
3662
|
comment: %(To provide the private telephone number of an
|
2539
3663
|
Agent \(Contact/person\).).freeze,
|
3664
|
+
domain: "ebucore:Person".freeze,
|
2540
3665
|
label: "Telephone (private)".freeze,
|
2541
3666
|
range: "xsd:string".freeze,
|
2542
3667
|
subPropertyOf: "ebucore:agentTelephoneNumber".freeze,
|
@@ -2551,6 +3676,11 @@ module RDF::Vocab
|
|
2551
3676
|
label: "Publication status".freeze,
|
2552
3677
|
subPropertyOf: "ebucore:description".freeze,
|
2553
3678
|
type: "rdf:Property".freeze
|
3679
|
+
property :publicationChannelId,
|
3680
|
+
comment: [%(Range: Identifier, anyURI, string).freeze, %(To provide an Id to a PublicationChannel e.g. a TV channel or website.).freeze],
|
3681
|
+
domain: "ebucore:PublicationChannel".freeze,
|
3682
|
+
label: "Publication channel Id".freeze,
|
3683
|
+
type: "rdf:Property".freeze
|
2554
3684
|
property :publicationChannelName,
|
2555
3685
|
comment: %(To provide a name to a PublicationChannel e.g. a TV channel or website.).freeze,
|
2556
3686
|
domain: "ebucore:PublicationChannel".freeze,
|
@@ -2563,12 +3693,69 @@ module RDF::Vocab
|
|
2563
3693
|
label: "Publication end date & time".freeze,
|
2564
3694
|
range: "xsd:dateTime".freeze,
|
2565
3695
|
type: "rdf:Property".freeze
|
3696
|
+
property :publicationEventAbstract,
|
3697
|
+
comment: %(To provide an abstract for a PublicationEvent.).freeze,
|
3698
|
+
domain: "ebucore:PublicationEvent".freeze,
|
3699
|
+
label: "Publication event abstract".freeze,
|
3700
|
+
range: "xsd:string".freeze,
|
3701
|
+
type: "rdf:Property".freeze
|
3702
|
+
property :publicationEventDescription,
|
3703
|
+
comment: %(To provide a description of a PublicationEvent.).freeze,
|
3704
|
+
domain: "ebucore:PublicationEvent".freeze,
|
3705
|
+
label: "Publication event description".freeze,
|
3706
|
+
range: "xsd:string".freeze,
|
3707
|
+
type: "rdf:Property".freeze
|
3708
|
+
property :publicationEventId,
|
3709
|
+
comment: [%(An identifier attributed to a PublicationEvent.).freeze, %(Range: Identifier, anyURI, string).freeze],
|
3710
|
+
domain: "ebucore:PublicationEvent".freeze,
|
3711
|
+
label: "Publication event identifier".freeze,
|
3712
|
+
type: "rdf:Property".freeze
|
2566
3713
|
property :publicationEventName,
|
2567
3714
|
comment: %(To provide a name to a PublicationEvent.).freeze,
|
2568
3715
|
domain: "ebucore:PublicationEvent".freeze,
|
2569
3716
|
label: "Publication event name".freeze,
|
2570
3717
|
range: "xsd:string".freeze,
|
2571
3718
|
type: "rdf:Property".freeze
|
3719
|
+
property :publicationEventTitle,
|
3720
|
+
comment: %(To provide a title for a PublicationEvent.).freeze,
|
3721
|
+
domain: "ebucore:PublicationEvent".freeze,
|
3722
|
+
label: "Title".freeze,
|
3723
|
+
range: "xsd:string".freeze,
|
3724
|
+
type: "rdf:Property".freeze
|
3725
|
+
property :publicationEventType,
|
3726
|
+
comment: [%(A type of PublicationEvent.).freeze, %(Range: a string or code/Concept).freeze],
|
3727
|
+
domain: "ebucore:PublicationEvent".freeze,
|
3728
|
+
label: "Publication event type".freeze,
|
3729
|
+
type: "rdf:Property".freeze
|
3730
|
+
property :publicationPlanDescription,
|
3731
|
+
comment: %(To describe a PublicationPlan.).freeze,
|
3732
|
+
domain: "ebucore:PublicationPlan".freeze,
|
3733
|
+
label: "Publication plan description".freeze,
|
3734
|
+
range: "xsd:string".freeze,
|
3735
|
+
type: "rdf:Property".freeze
|
3736
|
+
property :publicationPlanEndDate,
|
3737
|
+
comment: %(The end date of a PublicationPlan).freeze,
|
3738
|
+
domain: "ebucore:PublicationPlan".freeze,
|
3739
|
+
label: "Publication plan end date".freeze,
|
3740
|
+
range: "xsd:date".freeze,
|
3741
|
+
type: "rdf:Property".freeze
|
3742
|
+
property :publicationPlanId,
|
3743
|
+
comment: [%(An Id attributed to a PublicationPlan.).freeze, %(Range: Identifier, anyURI, string).freeze],
|
3744
|
+
domain: "ebucore:PublicationPlan".freeze,
|
3745
|
+
label: "Publication plan id".freeze,
|
3746
|
+
type: "rdf:Property".freeze
|
3747
|
+
property :publicationPlanName,
|
3748
|
+
comment: %(A name attributed to a PublicationPlan.).freeze,
|
3749
|
+
domain: "ebucore:PublicationPlan".freeze,
|
3750
|
+
label: "Publication plan name".freeze,
|
3751
|
+
range: "xsd:string".freeze,
|
3752
|
+
type: "rdf:Property".freeze
|
3753
|
+
property :publicationPlanStartDate,
|
3754
|
+
comment: %(The start date of a PublicationPlan).freeze,
|
3755
|
+
domain: "ebucore:PublicationPlan".freeze,
|
3756
|
+
label: "Publication plan start date".freeze,
|
3757
|
+
range: "xsd:date".freeze,
|
3758
|
+
type: "rdf:Property".freeze
|
2572
3759
|
property :publicationScheduleDate,
|
2573
3760
|
comment: %(To express specifically the schedule date to which a PublicationEvent is related in particular if the broacdast time is after midnight. For example, the schedule date would be May 29th and the programme is published at 1 am on May 30th, while still associated in the schedule with the night of May 29th.).freeze,
|
2574
3761
|
domain: "ebucore:PublicationEvent".freeze,
|
@@ -2599,7 +3786,13 @@ module RDF::Vocab
|
|
2599
3786
|
comment: %(The title used to identify the work at publication time.).freeze,
|
2600
3787
|
label: "Published title.".freeze,
|
2601
3788
|
range: "xsd:string".freeze,
|
2602
|
-
subPropertyOf: "
|
3789
|
+
subPropertyOf: "ebucore:title".freeze,
|
3790
|
+
type: "rdf:Property".freeze
|
3791
|
+
property :publishes,
|
3792
|
+
comment: %(To identify the EditorialObject related to the PublicationEvent).freeze,
|
3793
|
+
domain: "ebucore:PublicationEvent".freeze,
|
3794
|
+
label: "Editorial Object".freeze,
|
3795
|
+
range: "ebucore:EditorialObject".freeze,
|
2603
3796
|
type: "rdf:Property".freeze
|
2604
3797
|
property :ratingScaleMax,
|
2605
3798
|
comment: %(The maximum value of the scale used for rating
|
@@ -2639,6 +3832,12 @@ module RDF::Vocab
|
|
2639
3832
|
:"owl:equivalentProperty" => %(ma:ratingValue).freeze,
|
2640
3833
|
range: "xsd:string".freeze,
|
2641
3834
|
type: "rdf:Property".freeze
|
3835
|
+
property :readyForPublication,
|
3836
|
+
comment: %(A flag to indicate that the Essence is ready for publication.).freeze,
|
3837
|
+
domain: "ebucore:Essence".freeze,
|
3838
|
+
label: "Ready for publication".freeze,
|
3839
|
+
range: "xsd:boolean".freeze,
|
3840
|
+
type: "rdf:Property".freeze
|
2642
3841
|
property :reason,
|
2643
3842
|
comment: %(To provide a reason for which Rating as been attributed as provided.).freeze,
|
2644
3843
|
domain: "ebucore:Rating".freeze,
|
@@ -2648,7 +3847,6 @@ module RDF::Vocab
|
|
2648
3847
|
property :references,
|
2649
3848
|
comment: %(To express a reference between Assets, BusinessObjects or Resources.).freeze,
|
2650
3849
|
label: "References".freeze,
|
2651
|
-
subPropertyOf: "dc11:relation".freeze,
|
2652
3850
|
type: "rdf:Property".freeze
|
2653
3851
|
property :regionDelimX,
|
2654
3852
|
comment: %(To define the bottom right corner of a zone on
|
@@ -2666,44 +3864,81 @@ module RDF::Vocab
|
|
2666
3864
|
label: "Region delimiter (y-axis)".freeze,
|
2667
3865
|
range: "xsd:integer".freeze,
|
2668
3866
|
type: "rdf:Property".freeze
|
2669
|
-
property :relatedLink,
|
2670
|
-
comment: %(To provide a link to a web resource containing
|
2671
|
-
information related to an Agent \(Contact/person or Organisation\).).freeze,
|
2672
|
-
domain: "ebucore:Agent".freeze,
|
2673
|
-
label: "Related resources".freeze,
|
2674
|
-
range: "xsd:anyURI".freeze,
|
2675
|
-
type: "rdf:Property".freeze
|
2676
3867
|
property :replaces,
|
2677
3868
|
comment: %(To identify substitution.).freeze,
|
2678
3869
|
label: "Replaces".freeze,
|
2679
|
-
|
3870
|
+
type: "rdf:Property".freeze
|
3871
|
+
property :represents,
|
3872
|
+
comment: %(To establish a relation between a BusinessObject and an Asset.).freeze,
|
3873
|
+
domain: "ebucore:BusinessObject".freeze,
|
3874
|
+
label: "Related asset".freeze,
|
3875
|
+
range: "ebucore:Asset".freeze,
|
2680
3876
|
type: "rdf:Property".freeze
|
2681
3877
|
property :requires,
|
2682
3878
|
comment: %(To express dependency.).freeze,
|
2683
3879
|
label: "Requires".freeze,
|
2684
|
-
subPropertyOf: "dc11:relation".freeze,
|
2685
3880
|
type: "rdf:Property".freeze
|
2686
3881
|
property :resourceDescription,
|
2687
3882
|
comment: %(This can be specialised by using sub-properties
|
2688
3883
|
like defined in http://www.ebu.ch/metadata/cs/web/ebu_DescriptionTypeCodeCS_p.xml.htm
|
2689
3884
|
implemented as examples as e.g. 'summary' or
|
2690
3885
|
'script'.).freeze,
|
2691
|
-
domain: "ebucore:
|
3886
|
+
domain: "ebucore:Resource".freeze,
|
2692
3887
|
label: "Resource description".freeze,
|
2693
3888
|
range: "xsd:string".freeze,
|
2694
|
-
|
3889
|
+
type: "rdf:Property".freeze
|
3890
|
+
property :resourceId,
|
3891
|
+
comment: [%(An Id attributed to a Resource.).freeze, %(Range: Identifier or anyURI or string).freeze, %(To attribute an Id to a Resource.).freeze],
|
3892
|
+
domain: "ebucore:Resource".freeze,
|
3893
|
+
label: "Resource Id".freeze,
|
2695
3894
|
type: "rdf:Property".freeze
|
2696
3895
|
property :resourceName,
|
2697
3896
|
comment: %(A name by which the resource can be identified.).freeze,
|
2698
3897
|
domain: "ebucore:Resource".freeze,
|
2699
|
-
label: "Resource
|
3898
|
+
label: "Resource name".freeze,
|
3899
|
+
range: "xsd:string".freeze,
|
3900
|
+
type: "rdf:Property".freeze
|
3901
|
+
property :resourceOffset,
|
3902
|
+
comment: %(The start offset within a Resource.).freeze,
|
3903
|
+
domain: "ebucore:EditorialObject".freeze,
|
3904
|
+
label: "Resource offset".freeze,
|
3905
|
+
type: "rdf:Property".freeze
|
3906
|
+
property :resourceOffsetNormalPlaytime,
|
3907
|
+
label: "Resource offset normal playtime".freeze,
|
3908
|
+
range: "xsd:time".freeze,
|
3909
|
+
subPropertyOf: "ebucore:resourceOffset".freeze,
|
3910
|
+
type: "rdf:Property".freeze
|
3911
|
+
property :resourceOffsetNumberEditUnit,
|
3912
|
+
label: "Resource offset number edit units".freeze,
|
3913
|
+
range: "xsd:long".freeze,
|
3914
|
+
subPropertyOf: "ebucore:resourceOffset".freeze,
|
3915
|
+
type: "rdf:Property".freeze
|
3916
|
+
property :resourceOffsetTimecode,
|
3917
|
+
label: "Resource offset timecode".freeze,
|
3918
|
+
range: "xsd:string".freeze,
|
3919
|
+
subPropertyOf: "ebucore:resourceOffset".freeze,
|
3920
|
+
type: "rdf:Property".freeze
|
3921
|
+
property :resourceOffsetTimecodeDropFrame,
|
3922
|
+
label: "Resource offset timecode dropframe".freeze,
|
2700
3923
|
range: "xsd:string".freeze,
|
3924
|
+
subPropertyOf: "ebucore:resourceOffset".freeze,
|
3925
|
+
type: "rdf:Property".freeze
|
3926
|
+
property :resourceType,
|
3927
|
+
comment: [%(Range: Identifier, anyURI, string).freeze, %(To identify a type of resource, e.g. a template'.).freeze],
|
3928
|
+
domain: "ebucore:Resource".freeze,
|
3929
|
+
label: "Resource type".freeze,
|
2701
3930
|
type: "rdf:Property".freeze
|
2702
3931
|
property :review,
|
2703
3932
|
comment: %(To provide a text for a review.).freeze,
|
2704
3933
|
label: "Review".freeze,
|
2705
3934
|
subPropertyOf: "ebucore:description".freeze,
|
2706
3935
|
type: "rdf:Property".freeze
|
3936
|
+
property :rightsClearanceFlag,
|
3937
|
+
comment: %(A flag to indicate that righst have been cleared).freeze,
|
3938
|
+
domain: "ebucore:BusinessObject".freeze,
|
3939
|
+
label: "Rights clearance flag".freeze,
|
3940
|
+
range: "xsd:boolean".freeze,
|
3941
|
+
type: "rdf:Property".freeze
|
2707
3942
|
property :rightsExpression,
|
2708
3943
|
comment: %(The expression of Rights as free
|
2709
3944
|
text.).freeze,
|
@@ -2711,6 +3946,11 @@ module RDF::Vocab
|
|
2711
3946
|
label: "Rights expression".freeze,
|
2712
3947
|
range: "xsd:string".freeze,
|
2713
3948
|
type: "rdf:Property".freeze
|
3949
|
+
property :rightsId,
|
3950
|
+
comment: [%(An identifier attributed to a set of Rights.).freeze, %(Range: identifier, anyURI, string).freeze],
|
3951
|
+
domain: "ebucore:Rights".freeze,
|
3952
|
+
label: "Rights identifier".freeze,
|
3953
|
+
type: "rdf:Property".freeze
|
2714
3954
|
property :rightsLink,
|
2715
3955
|
comment: %(A link to e.g. a webpage where an expression of
|
2716
3956
|
the rights can be found and consulted.).freeze,
|
@@ -2718,14 +3958,27 @@ module RDF::Vocab
|
|
2718
3958
|
label: "Rights web resource".freeze,
|
2719
3959
|
range: "xsd:anyURI".freeze,
|
2720
3960
|
type: "rdf:Property".freeze
|
3961
|
+
property :rightsType,
|
3962
|
+
comment: [%(Range: string or code/Concept).freeze, %(To identify a type of Rights.).freeze],
|
3963
|
+
domain: "ebucore:Rights".freeze,
|
3964
|
+
label: "Rights type".freeze,
|
3965
|
+
type: "rdf:Property".freeze
|
2721
3966
|
property :roleDefinition,
|
2722
3967
|
comment: %(To provide a definition for a role).freeze,
|
2723
3968
|
domain: "ebucore:Role".freeze,
|
2724
3969
|
label: "Role definition".freeze,
|
2725
3970
|
range: "xsd:string".freeze,
|
2726
3971
|
type: "rdf:Property".freeze
|
3972
|
+
property :salutationTitle,
|
3973
|
+
comment: %(To provide a salutation title e.g M. Ms, Dr, Pr.).freeze,
|
3974
|
+
domain: "ebucore:Person".freeze,
|
3975
|
+
label: "Salutation title".freeze,
|
3976
|
+
:"owl:equivalentProperty" => %(foaf:title).freeze,
|
3977
|
+
range: "xsd:string".freeze,
|
3978
|
+
type: "rdf:Property".freeze
|
2727
3979
|
property :sampleRate,
|
2728
3980
|
comment: %(The frequency at which audio is sampled per second. Also called sampling rate.).freeze,
|
3981
|
+
domain: "ebucore:MediaResource".freeze,
|
2729
3982
|
label: "Sample Rate".freeze,
|
2730
3983
|
:"owl:equivalentProperty" => %(ma:samplingRate).freeze,
|
2731
3984
|
range: "xsd:integer".freeze,
|
@@ -2733,22 +3986,21 @@ module RDF::Vocab
|
|
2733
3986
|
property :sampleSize,
|
2734
3987
|
comment: %(The size of an audio sample in
|
2735
3988
|
bits. Also called bit depth.).freeze,
|
2736
|
-
domain: "ebucore:
|
3989
|
+
domain: "ebucore:MediaResource".freeze,
|
2737
3990
|
label: "Sample size".freeze,
|
2738
3991
|
range: "xsd:integer".freeze,
|
2739
3992
|
type: "rdf:Property".freeze
|
2740
3993
|
property :sampleType,
|
2741
|
-
comment: %(The type of audio sample.).freeze,
|
2742
|
-
domain: "ebucore:
|
3994
|
+
comment: [%(Range: string or code/Concept).freeze, %(The type of audio sample.).freeze],
|
3995
|
+
domain: "ebucore:MediaResource".freeze,
|
2743
3996
|
label: "Sample type".freeze,
|
2744
|
-
range: "xsd:string".freeze,
|
2745
3997
|
type: "rdf:Property".freeze
|
2746
3998
|
property :scanningFormat,
|
2747
3999
|
comment: %(To define the scanning format for a
|
2748
4000
|
MediaResource. For video, the two main values are "interlaced" or
|
2749
4001
|
"progressive".).freeze,
|
2750
|
-
domain: "ebucore:
|
2751
|
-
label: "
|
4002
|
+
domain: "ebucore:MediaResource".freeze,
|
4003
|
+
label: "Scanning format".freeze,
|
2752
4004
|
range: "xsd:string".freeze,
|
2753
4005
|
type: "rdf:Property".freeze
|
2754
4006
|
property :script,
|
@@ -2756,22 +4008,54 @@ module RDF::Vocab
|
|
2756
4008
|
label: "Script".freeze,
|
2757
4009
|
subPropertyOf: "ebucore:description".freeze,
|
2758
4010
|
type: "rdf:Property".freeze
|
4011
|
+
property :seasonNumber,
|
4012
|
+
comment: %(To provide a Seaon number.).freeze,
|
4013
|
+
domain: "ebucore:Season".freeze,
|
4014
|
+
label: "Season number".freeze,
|
4015
|
+
range: "xsd:string".freeze,
|
4016
|
+
type: "rdf:Property".freeze
|
4017
|
+
property :serviceDescription,
|
4018
|
+
comment: %(A description of the Service.).freeze,
|
4019
|
+
domain: "ebucore:Service".freeze,
|
4020
|
+
label: "Service description".freeze,
|
4021
|
+
range: "xsd:string".freeze,
|
4022
|
+
type: "rdf:Property".freeze
|
4023
|
+
property :serviceGenre,
|
4024
|
+
comment: [%(Range: string or Genre).freeze, %(The genre of content associated with the Service.).freeze],
|
4025
|
+
domain: "ebucore:Service".freeze,
|
4026
|
+
label: "Service genre".freeze,
|
4027
|
+
type: "rdf:Property".freeze
|
4028
|
+
property :serviceId,
|
4029
|
+
comment: [%(An identifier attributed to a Service.).freeze, %(Range: Identifier, anyURI, string).freeze],
|
4030
|
+
domain: "ebucore:Service".freeze,
|
4031
|
+
label: "Identifier".freeze,
|
4032
|
+
:"skos:prefLabel" => %(Identifier).freeze,
|
4033
|
+
type: "rdf:Property".freeze
|
4034
|
+
property :serviceName,
|
4035
|
+
comment: %(The name by which a Service is known.).freeze,
|
4036
|
+
domain: "ebucore:Service".freeze,
|
4037
|
+
label: "Service name".freeze,
|
4038
|
+
range: "xsd:string".freeze,
|
4039
|
+
type: "rdf:Property".freeze
|
4040
|
+
property :serviceType,
|
4041
|
+
comment: [%(Range: string or code/Concept).freeze, %(The type of a Service.).freeze],
|
4042
|
+
domain: "ebucore:Service".freeze,
|
4043
|
+
label: "Service type".freeze,
|
4044
|
+
type: "rdf:Property".freeze
|
2759
4045
|
property :shotlog,
|
2760
4046
|
comment: %(Provides a shot-by-shot description of resource content.).freeze,
|
2761
4047
|
label: "Shot log".freeze,
|
2762
4048
|
subPropertyOf: "ebucore:description".freeze,
|
2763
4049
|
type: "rdf:Property".freeze
|
2764
4050
|
property :signingSource,
|
2765
|
-
comment: %(To identify the source of the signing
|
2766
|
-
resource.).freeze,
|
4051
|
+
comment: [%(Range: a string or an Agent.).freeze, %(To identify the source of the signing
|
4052
|
+
resource.).freeze],
|
2767
4053
|
domain: "ebucore:Signing".freeze,
|
2768
4054
|
label: "Signing source".freeze,
|
2769
|
-
range: "xsd:string".freeze,
|
2770
4055
|
type: "rdf:Property".freeze
|
2771
4056
|
property :start,
|
2772
4057
|
comment: %(The start point of the MediaResource.).freeze,
|
2773
4058
|
label: "Start time".freeze,
|
2774
|
-
range: "rdfs:Literal".freeze,
|
2775
4059
|
type: "rdf:Property".freeze
|
2776
4060
|
property :startNormalPlayTime,
|
2777
4061
|
comment: %(The start time expressed using a time
|
@@ -2794,11 +4078,22 @@ module RDF::Vocab
|
|
2794
4078
|
range: "xsd:string".freeze,
|
2795
4079
|
subPropertyOf: "ebucore:start".freeze,
|
2796
4080
|
type: "rdf:Property".freeze
|
2797
|
-
property :
|
2798
|
-
comment: %(
|
2799
|
-
|
2800
|
-
label: "
|
4081
|
+
property :startTimecodeDropFrame,
|
4082
|
+
comment: %(A start time expressed as
|
4083
|
+
timecode with drop frames.).freeze,
|
4084
|
+
label: "Start time (timecode, drop frames)".freeze,
|
2801
4085
|
range: "xsd:string".freeze,
|
4086
|
+
subPropertyOf: "ebucore:start".freeze,
|
4087
|
+
type: "rdf:Property".freeze
|
4088
|
+
property :storageId,
|
4089
|
+
comment: [%(Range: Identifier, anyURI, string).freeze, %(To identify storage associated with a locator from which a Resource can be accessed or can be retrieved.).freeze],
|
4090
|
+
domain: "ebucore:Resource".freeze,
|
4091
|
+
label: "Storage id".freeze,
|
4092
|
+
type: "rdf:Property".freeze
|
4093
|
+
property :storageType,
|
4094
|
+
comment: [%(Range:; string or code/Concept).freeze, %(To define a type of storage associated with a locator from which a Resource can be accessed or can be retrieved.).freeze],
|
4095
|
+
domain: "ebucore:Resource".freeze,
|
4096
|
+
label: "Storage type".freeze,
|
2802
4097
|
type: "rdf:Property".freeze
|
2803
4098
|
property :subtitle,
|
2804
4099
|
comment: %(A complementary subtitle.).freeze,
|
@@ -2806,10 +4101,15 @@ module RDF::Vocab
|
|
2806
4101
|
subPropertyOf: "ebucore:alternativeTitle".freeze,
|
2807
4102
|
type: "rdf:Property".freeze
|
2808
4103
|
property :subtitlingSource,
|
2809
|
-
comment: %(To identify the source of the Subtitling
|
2810
|
-
resource.).freeze,
|
4104
|
+
comment: [%(Range: a string or an Agent.).freeze, %(To identify the source of the Subtitling
|
4105
|
+
resource.).freeze],
|
2811
4106
|
domain: "ebucore:Subtitling".freeze,
|
2812
4107
|
label: "Subtitling source".freeze,
|
4108
|
+
type: "rdf:Property".freeze
|
4109
|
+
property :suffix,
|
4110
|
+
comment: %(To provide a suffix associated with a Person name e.g. Jr.).freeze,
|
4111
|
+
domain: "ebucore:Person".freeze,
|
4112
|
+
label: "Suffix".freeze,
|
2813
4113
|
range: "xsd:string".freeze,
|
2814
4114
|
type: "rdf:Property".freeze
|
2815
4115
|
property :summary,
|
@@ -2831,16 +4131,121 @@ module RDF::Vocab
|
|
2831
4131
|
type: "rdf:Property".freeze
|
2832
4132
|
property :targetAudienceSystem,
|
2833
4133
|
comment: %(To define the system used to provide a TargetAudience.).freeze,
|
2834
|
-
domain: "ebucore:
|
4134
|
+
domain: "ebucore:AudienceLevel".freeze,
|
2835
4135
|
label: "Target audience system".freeze,
|
2836
4136
|
range: "xsd:string".freeze,
|
2837
4137
|
type: "rdf:Property".freeze
|
2838
|
-
property :
|
2839
|
-
comment: %(
|
2840
|
-
|
2841
|
-
|
2842
|
-
|
4138
|
+
property :textLineContent,
|
4139
|
+
comment: %(To provide the content of a text line.).freeze,
|
4140
|
+
domain: "ebucore:TextLine".freeze,
|
4141
|
+
label: "Text line".freeze,
|
4142
|
+
range: "xsd:string".freeze,
|
4143
|
+
type: "rdf:Property".freeze
|
4144
|
+
property :textLineEndEditUnit,
|
4145
|
+
comment: %(The end time of a TextLine expressed as a number of edit units.).freeze,
|
4146
|
+
label: "Text line end in edit units".freeze,
|
4147
|
+
subPropertyOf: "ebucore:textLineEndTime".freeze,
|
4148
|
+
type: "rdf:Property".freeze
|
4149
|
+
property :textLineEndNormalPlayTime,
|
4150
|
+
comment: %(The end time of a TextLine expressed as a normal play time.).freeze,
|
4151
|
+
label: "Text line end in normal play time".freeze,
|
4152
|
+
subPropertyOf: "ebucore:textLineEndTime".freeze,
|
4153
|
+
type: "rdf:Property".freeze
|
4154
|
+
property :textLineEndTime,
|
4155
|
+
comment: %(The end time point of a TextLine in a Scene.).freeze,
|
4156
|
+
domain: "ebucore:TextLine".freeze,
|
4157
|
+
label: "Text line end time".freeze,
|
4158
|
+
type: "rdf:Property".freeze
|
4159
|
+
property :textLineEndTimecode,
|
4160
|
+
comment: %(The end time of a TextLine expressed as timecode.).freeze,
|
4161
|
+
label: "Text line end timecode".freeze,
|
4162
|
+
subPropertyOf: "ebucore:textLineEndTime".freeze,
|
4163
|
+
type: "rdf:Property".freeze
|
4164
|
+
property :textLineEndTimecodeDropFrame,
|
4165
|
+
comment: %(The end time of a TextLine expressed as timecode with drop frames.).freeze,
|
4166
|
+
label: "Text line end timecode drop frames".freeze,
|
4167
|
+
subPropertyOf: "ebucore:textLineEndTime".freeze,
|
4168
|
+
type: "rdf:Property".freeze
|
4169
|
+
property :textLineId,
|
4170
|
+
comment: [%(An id associated to a text line.).freeze, %(Range: anyURI or string).freeze],
|
4171
|
+
domain: "ebucore:TextLine".freeze,
|
4172
|
+
label: "Text line id".freeze,
|
4173
|
+
type: "rdf:Property".freeze
|
4174
|
+
property :textLineLanguage,
|
4175
|
+
comment: [%(Range: string or anyURI or ConceptId).freeze, %(To identify the language of a text line.).freeze],
|
4176
|
+
domain: "ebucore:TextLine".freeze,
|
4177
|
+
label: "Text line language".freeze,
|
4178
|
+
type: "rdf:Property".freeze
|
4179
|
+
property :textLineOrder,
|
4180
|
+
comment: %(The order in which a text line can be found e.g. in a scene.).freeze,
|
4181
|
+
domain: "ebucore:TextLine".freeze,
|
4182
|
+
label: "Text line order".freeze,
|
4183
|
+
range: "xsd:string".freeze,
|
4184
|
+
type: "rdf:Property".freeze
|
4185
|
+
property :textLineSource,
|
4186
|
+
comment: [%(Range: string or ConceptId).freeze, %(To identify the source of a text line e.g. speech to text, captioning.).freeze],
|
4187
|
+
domain: "ebucore:TextLine".freeze,
|
4188
|
+
label: "Text line source".freeze,
|
4189
|
+
type: "rdf:Property".freeze
|
4190
|
+
property :textLineStartEditUnit,
|
4191
|
+
comment: %(The start time of a TextLine expressed as a number of edit units.).freeze,
|
4192
|
+
label: "Text line start in edit units".freeze,
|
4193
|
+
subPropertyOf: "ebucore:textLineStartTime".freeze,
|
4194
|
+
type: "rdf:Property".freeze
|
4195
|
+
property :textLineStartNormalPlayTime,
|
4196
|
+
comment: %(The start time of a TextLine expressed as a normal play time.).freeze,
|
4197
|
+
label: "Text line start in normal play time".freeze,
|
4198
|
+
subPropertyOf: "ebucore:textLineStartTime".freeze,
|
4199
|
+
type: "rdf:Property".freeze
|
4200
|
+
property :textLineStartTime,
|
4201
|
+
comment: %(The start time point of a TextLine in a Scene.).freeze,
|
4202
|
+
domain: "ebucore:TextLine".freeze,
|
4203
|
+
label: "Text line start time".freeze,
|
4204
|
+
type: "rdf:Property".freeze
|
4205
|
+
property :textLineStartTimecode,
|
4206
|
+
comment: %(The start time of a TextLine expressed as timecode.).freeze,
|
4207
|
+
label: "Text line start timecode".freeze,
|
4208
|
+
subPropertyOf: "ebucore:textLineStartTime".freeze,
|
4209
|
+
type: "rdf:Property".freeze
|
4210
|
+
property :textLineStartTimecodeDropFrame,
|
4211
|
+
comment: %(The start time of a TextLine expressed as timecode with drop frames.).freeze,
|
4212
|
+
label: "Text line start timecode drop frames".freeze,
|
4213
|
+
subPropertyOf: "ebucore:textLineStartTime".freeze,
|
4214
|
+
type: "rdf:Property".freeze
|
4215
|
+
property :timelineTrackDurationNormalPlayTime,
|
4216
|
+
comment: %(To provide a duration as normal
|
4217
|
+
time.).freeze,
|
4218
|
+
label: "Duration (time)".freeze,
|
4219
|
+
range: "xsd:time".freeze,
|
4220
|
+
subPropertyOf: "ebucore:timelineTrackduration".freeze,
|
4221
|
+
type: "rdf:Property".freeze
|
4222
|
+
property :timelineTrackDurationNumberEditUnit,
|
4223
|
+
comment: %(To provide a duration as a number of EditUnits
|
4224
|
+
which value is for instance the inverse of the audio sample rate or video frame
|
4225
|
+
rate.).freeze,
|
4226
|
+
label: "Duration (edit units)".freeze,
|
4227
|
+
range: "xsd:double".freeze,
|
4228
|
+
subPropertyOf: "ebucore:timelineTrackduration".freeze,
|
4229
|
+
type: "rdf:Property".freeze
|
4230
|
+
property :timelineTrackDurationTimecode,
|
4231
|
+
comment: %(The duration expressed as a
|
4232
|
+
timecode.).freeze,
|
4233
|
+
label: "Duration (timecode)".freeze,
|
4234
|
+
range: "xsd:string".freeze,
|
4235
|
+
subPropertyOf: "ebucore:timelineTrackduration".freeze,
|
4236
|
+
type: "rdf:Property".freeze
|
4237
|
+
property :timelineTrackDurationTimecodeDropFrame,
|
4238
|
+
comment: %(The duration expressed as a
|
4239
|
+
timecode with drop frames.).freeze,
|
4240
|
+
label: "Duration (timecode, drop frame)".freeze,
|
2843
4241
|
range: "xsd:string".freeze,
|
4242
|
+
subPropertyOf: "ebucore:timelineTrackduration".freeze,
|
4243
|
+
type: "rdf:Property".freeze
|
4244
|
+
property :timelineTrackduration,
|
4245
|
+
comment: %(To provide information on the duration of a TimelineTrack.).freeze,
|
4246
|
+
label: "TimelineTrack duration".freeze,
|
4247
|
+
:"owl:equivalentProperty" => %(ma:duration).freeze,
|
4248
|
+
range: "rdfs:Literal".freeze,
|
2844
4249
|
type: "rdf:Property".freeze
|
2845
4250
|
property :title,
|
2846
4251
|
comment: [%(All value of the EBU title status
|
@@ -2859,8 +4264,14 @@ module RDF::Vocab
|
|
2859
4264
|
Track.).freeze,
|
2860
4265
|
domain: "ebucore:Track".freeze,
|
2861
4266
|
label: "Definition".freeze,
|
4267
|
+
:"owl:equivalentProperty" => %(ma:trackName).freeze,
|
2862
4268
|
range: "xsd:string".freeze,
|
2863
4269
|
type: "rdf:Property".freeze
|
4270
|
+
property :trackId,
|
4271
|
+
comment: [%(An Id attributed to a Track.).freeze, %(Range: Identifier, anyURI, string).freeze],
|
4272
|
+
domain: "ebucore:Track".freeze,
|
4273
|
+
label: "Track Id".freeze,
|
4274
|
+
type: "rdf:Property".freeze
|
2864
4275
|
property :trackName,
|
2865
4276
|
comment: %(The name attributed to a Track.).freeze,
|
2866
4277
|
domain: "ebucore:Track".freeze,
|
@@ -2868,16 +4279,66 @@ module RDF::Vocab
|
|
2868
4279
|
:"owl:equivalentProperty" => %(ma:trackName).freeze,
|
2869
4280
|
range: "xsd:string".freeze,
|
2870
4281
|
type: "rdf:Property".freeze
|
4282
|
+
property :trackPurpose,
|
4283
|
+
comment: %(The purpose for which the Track is provided.).freeze,
|
4284
|
+
domain: "ebucore:Track".freeze,
|
4285
|
+
label: "Track purpose".freeze,
|
4286
|
+
:"owl:equivalentProperty" => %(ma:trackName).freeze,
|
4287
|
+
range: "xsd:string".freeze,
|
4288
|
+
type: "rdf:Property".freeze
|
4289
|
+
property :trackType,
|
4290
|
+
comment: [%(Range: string or code/Concept).freeze, %(The type attributed to a Track.).freeze],
|
4291
|
+
domain: "ebucore:Track".freeze,
|
4292
|
+
label: "Track name".freeze,
|
4293
|
+
:"owl:equivalentProperty" => %(ma:trackName).freeze,
|
4294
|
+
type: "rdf:Property".freeze
|
2871
4295
|
property :translationTitle,
|
2872
4296
|
comment: %(A translated version of the title.).freeze,
|
2873
4297
|
label: "Translation title".freeze,
|
2874
4298
|
subPropertyOf: "ebucore:alternativeTitle".freeze,
|
2875
4299
|
type: "rdf:Property".freeze
|
4300
|
+
property :username,
|
4301
|
+
comment: %(The username by which a Person is
|
4302
|
+
known e.g. when attributing a rating value.).freeze,
|
4303
|
+
domain: "ebucore:Person".freeze,
|
4304
|
+
label: "Username".freeze,
|
4305
|
+
:"owl:equivalentProperty" => %(foaf:nick).freeze,
|
4306
|
+
range: "xsd:string".freeze,
|
4307
|
+
type: "rdf:Property".freeze
|
2876
4308
|
property :versionTitle,
|
2877
4309
|
comment: %(An alternative title specific to a verison of content.).freeze,
|
2878
4310
|
label: "Version title".freeze,
|
2879
4311
|
subPropertyOf: "ebucore:alternativeTitle".freeze,
|
2880
4312
|
type: "rdf:Property".freeze
|
4313
|
+
property :versionType,
|
4314
|
+
domain: "ebucore:EditorialObject".freeze,
|
4315
|
+
label: ["Editorial object version type".freeze, "Range: anyURI or Concept or string".freeze],
|
4316
|
+
type: "rdf:Property".freeze
|
4317
|
+
property :videoBitRate,
|
4318
|
+
comment: %(The video bitrate).freeze,
|
4319
|
+
label: "Video bitrate".freeze,
|
4320
|
+
subPropertyOf: "ebucore:bitRate".freeze,
|
4321
|
+
type: "rdf:Property".freeze
|
4322
|
+
property :videoBitRateMax,
|
4323
|
+
comment: %(The maximum video bitrate.).freeze,
|
4324
|
+
label: "Video bitrate max".freeze,
|
4325
|
+
subPropertyOf: "ebucore:bitRateMax".freeze,
|
4326
|
+
type: "rdf:Property".freeze
|
4327
|
+
property :videoBitRateMode,
|
4328
|
+
comment: %(The video bitrate mode.).freeze,
|
4329
|
+
label: "Video bitrate mode".freeze,
|
4330
|
+
subPropertyOf: "ebucore:bitRateMode".freeze,
|
4331
|
+
type: "rdf:Property".freeze
|
4332
|
+
property :videoEncodingLevel,
|
4333
|
+
comment: %(The encoding level as defined in specifications.).freeze,
|
4334
|
+
label: "Video encoding level".freeze,
|
4335
|
+
subPropertyOf: "ebucore:encodingLevel".freeze,
|
4336
|
+
type: "rdf:Property".freeze
|
4337
|
+
property :videoEncodingProfile,
|
4338
|
+
comment: %(The encoding level as defined in specifications.).freeze,
|
4339
|
+
label: "Video encoding profile".freeze,
|
4340
|
+
subPropertyOf: "ebucore:encodingProfile".freeze,
|
4341
|
+
type: "rdf:Property".freeze
|
2881
4342
|
property :width,
|
2882
4343
|
comment: %(The width of e.g. a video frame typically
|
2883
4344
|
expressed as a number of pixels, or picture/image in millimeters.).freeze,
|
@@ -2906,11 +4367,10 @@ module RDF::Vocab
|
|
2906
4367
|
subPropertyOf: "ebucore:alternativeTitle".freeze,
|
2907
4368
|
type: "rdf:Property".freeze
|
2908
4369
|
property :wrappingType,
|
2909
|
-
comment: %(To provide additional information on the
|
2910
|
-
wrapping type of ancillary data.).freeze,
|
4370
|
+
comment: [%(Range: string or code/Concept).freeze, %(To provide additional information on the
|
4371
|
+
wrapping type of ancillary data.).freeze],
|
2911
4372
|
domain: "ebucore:AncillaryData".freeze,
|
2912
4373
|
label: "Wrapping type".freeze,
|
2913
|
-
range: "xsd:string".freeze,
|
2914
4374
|
type: "rdf:Property".freeze
|
2915
4375
|
end
|
2916
4376
|
end
|