rdf-vocab 0.8.4 → 0.8.5

Sign up to get free protection for your applications and to get access to all the features.
data/lib/rdf/vocab/cnt.rb CHANGED
@@ -12,17 +12,17 @@ module RDF::Vocab
12
12
  term :ContentAsBase64,
13
13
  comment: %(The base64 encoded content \(can be used for binary content\).).freeze,
14
14
  label: "Base64 content".freeze,
15
- subClassOf: "http://www.w3.org/2011/content#Content".freeze,
15
+ subClassOf: "cnt:Content".freeze,
16
16
  type: ["rdfs:Class".freeze, "owl:Class".freeze]
17
17
  term :ContentAsText,
18
18
  comment: %(The text content \(can be used for text content\).).freeze,
19
19
  label: "Text content".freeze,
20
- subClassOf: "http://www.w3.org/2011/content#Content".freeze,
20
+ subClassOf: "cnt:Content".freeze,
21
21
  type: ["rdfs:Class".freeze, "owl:Class".freeze]
22
22
  term :ContentAsXML,
23
23
  comment: %(The XML content \(can only be used for XML-wellformed content\).).freeze,
24
24
  label: "XML content".freeze,
25
- subClassOf: "http://www.w3.org/2011/content#Content".freeze,
25
+ subClassOf: "cnt:Content".freeze,
26
26
  type: ["rdfs:Class".freeze, "owl:Class".freeze]
27
27
  term :DoctypeDecl,
28
28
  comment: %(The document type declaration.).freeze,
@@ -32,79 +32,79 @@ module RDF::Vocab
32
32
  # Property definitions
33
33
  property :bytes,
34
34
  comment: %(The Base64 encoded byte sequence of the content.).freeze,
35
- domain: "http://www.w3.org/2011/content#ContentAsBase64".freeze,
35
+ domain: "cnt:ContentAsBase64".freeze,
36
36
  label: "Base64 encoded byte sequence".freeze,
37
37
  range: "xsd:base64Binary".freeze,
38
38
  type: ["rdf:Property".freeze, "owl:ObjectProperty".freeze]
39
39
  property :characterEncoding,
40
40
  comment: %(The character encoding used to create a character sequence from a byte sequence or vice versa.).freeze,
41
- domain: "http://www.w3.org/2011/content#Content".freeze,
41
+ domain: "cnt:Content".freeze,
42
42
  label: "Character encoding".freeze,
43
43
  range: "rdfs:Literal".freeze,
44
44
  type: ["rdf:Property".freeze, "owl:ObjectProperty".freeze]
45
45
  property :chars,
46
46
  comment: %(The character sequence of the text content.).freeze,
47
- domain: "http://www.w3.org/2011/content#ContentAsText".freeze,
47
+ domain: "cnt:ContentAsText".freeze,
48
48
  label: "Character sequence".freeze,
49
49
  range: "rdfs:Literal".freeze,
50
50
  type: ["rdf:Property".freeze, "owl:ObjectProperty".freeze]
51
51
  property :declaredEncoding,
52
52
  comment: %(The character encoding declared in the XML declaration.).freeze,
53
- domain: "http://www.w3.org/2011/content#ContentAsXML".freeze,
53
+ domain: "cnt:ContentAsXML".freeze,
54
54
  label: "XML character encoding".freeze,
55
55
  range: "rdfs:Literal".freeze,
56
56
  type: ["rdf:Property".freeze, "owl:ObjectProperty".freeze]
57
57
  property :doctypeName,
58
58
  comment: %(The document type name.).freeze,
59
- domain: "http://www.w3.org/2011/content#DoctypeDecl".freeze,
59
+ domain: "cnt:DoctypeDecl".freeze,
60
60
  label: "Document type name".freeze,
61
61
  range: "rdfs:Literal".freeze,
62
62
  type: ["rdf:Property".freeze, "owl:ObjectProperty".freeze]
63
63
  property :dtDecl,
64
64
  comment: %(The document type declaration.).freeze,
65
- domain: "http://www.w3.org/2011/content#ContentAsXML".freeze,
65
+ domain: "cnt:ContentAsXML".freeze,
66
66
  label: "Document type declaration".freeze,
67
- range: "http://www.w3.org/2011/content#DoctypeDecl".freeze,
67
+ range: "cnt:DoctypeDecl".freeze,
68
68
  type: ["rdf:Property".freeze, "owl:ObjectProperty".freeze]
69
69
  property :internalSubset,
70
70
  comment: %(The internal document type definition subset within the document type declarations.).freeze,
71
- domain: "http://www.w3.org/2011/content#DoctypeDecl".freeze,
71
+ domain: "cnt:DoctypeDecl".freeze,
72
72
  label: "Internal DTD subset".freeze,
73
73
  range: "rdfs:Literal".freeze,
74
74
  type: ["rdf:Property".freeze, "owl:ObjectProperty".freeze]
75
75
  property :leadingMisc,
76
76
  comment: %(The XML content preceding the document type declaration.).freeze,
77
- domain: "http://www.w3.org/2011/content#ContentAsXML".freeze,
77
+ domain: "cnt:ContentAsXML".freeze,
78
78
  label: "XML leading misc".freeze,
79
79
  range: "rdf:XMLLiteral".freeze,
80
80
  type: ["rdf:Property".freeze, "owl:ObjectProperty".freeze]
81
81
  property :publicId,
82
82
  comment: %(The document type declarations's public identifier.).freeze,
83
- domain: "http://www.w3.org/2011/content#DoctypeDecl".freeze,
83
+ domain: "cnt:DoctypeDecl".freeze,
84
84
  label: "Public ID".freeze,
85
85
  range: "rdfs:Literal".freeze,
86
86
  type: ["rdf:Property".freeze, "owl:ObjectProperty".freeze]
87
87
  property :rest,
88
88
  comment: %(The XML content following the document type declaration.).freeze,
89
- domain: "http://www.w3.org/2011/content#ContentAsXML".freeze,
89
+ domain: "cnt:ContentAsXML".freeze,
90
90
  label: "XML rest".freeze,
91
91
  range: "rdf:XMLLiteral".freeze,
92
92
  type: ["rdf:Property".freeze, "owl:ObjectProperty".freeze]
93
93
  property :standalone,
94
94
  comment: %(The standalone declaration in the XML declaration.).freeze,
95
- domain: "http://www.w3.org/2011/content#ContentAsXML".freeze,
95
+ domain: "cnt:ContentAsXML".freeze,
96
96
  label: "XML standalone document declaration".freeze,
97
97
  range: "rdfs:Literal".freeze,
98
98
  type: ["rdf:Property".freeze, "owl:ObjectProperty".freeze]
99
99
  property :systemId,
100
100
  comment: %(The document type declarations's system identifier \(typed: xsd:anyURI\)).freeze,
101
- domain: "http://www.w3.org/2011/content#DoctypeDecl".freeze,
101
+ domain: "cnt:DoctypeDecl".freeze,
102
102
  label: "System ID".freeze,
103
103
  range: "xsd:anyURI".freeze,
104
104
  type: ["rdf:Property".freeze, "owl:ObjectProperty".freeze]
105
105
  property :version,
106
106
  comment: %(The XML version declared in the XML declaration.).freeze,
107
- domain: "http://www.w3.org/2011/content#ContentAsXML".freeze,
107
+ domain: "cnt:ContentAsXML".freeze,
108
108
  label: "XML version".freeze,
109
109
  range: "rdfs:Literal".freeze,
110
110
  type: ["rdf:Property".freeze, "owl:ObjectProperty".freeze]
@@ -13,7 +13,7 @@ module RDF::Vocab
13
13
  "dc:modified" => %(2008-01-14).freeze,
14
14
  "http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
15
15
  label: "Collection".freeze,
16
- "rdfs:isDefinedBy" => %(http://purl.org/dc/dcmitype/).freeze,
16
+ "rdfs:isDefinedBy" => %(dcmitype:).freeze,
17
17
  type: "rdfs:Class".freeze
18
18
  term :Dataset,
19
19
  comment: %(Data encoded in a defined structure.).freeze,
@@ -23,7 +23,7 @@ module RDF::Vocab
23
23
  "dc:modified" => %(2008-01-14).freeze,
24
24
  "http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
25
25
  label: "Dataset".freeze,
26
- "rdfs:isDefinedBy" => %(http://purl.org/dc/dcmitype/).freeze,
26
+ "rdfs:isDefinedBy" => %(dcmitype:).freeze,
27
27
  type: "rdfs:Class".freeze
28
28
  term :Event,
29
29
  comment: %(A non-persistent, time-based occurrence.).freeze,
@@ -33,7 +33,7 @@ module RDF::Vocab
33
33
  "dc:modified" => %(2008-01-14).freeze,
34
34
  "http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
35
35
  label: "Event".freeze,
36
- "rdfs:isDefinedBy" => %(http://purl.org/dc/dcmitype/).freeze,
36
+ "rdfs:isDefinedBy" => %(dcmitype:).freeze,
37
37
  type: "rdfs:Class".freeze
38
38
  term :Image,
39
39
  comment: %(A visual representation other than text.).freeze,
@@ -43,7 +43,7 @@ module RDF::Vocab
43
43
  "dc:modified" => %(2008-01-14).freeze,
44
44
  "http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
45
45
  label: "Image".freeze,
46
- "rdfs:isDefinedBy" => %(http://purl.org/dc/dcmitype/).freeze,
46
+ "rdfs:isDefinedBy" => %(dcmitype:).freeze,
47
47
  type: "rdfs:Class".freeze
48
48
  term :InteractiveResource,
49
49
  comment: %(A resource requiring interaction from the user to be understood, executed, or experienced.).freeze,
@@ -53,7 +53,7 @@ module RDF::Vocab
53
53
  "dc:modified" => %(2008-01-14).freeze,
54
54
  "http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
55
55
  label: "Interactive Resource".freeze,
56
- "rdfs:isDefinedBy" => %(http://purl.org/dc/dcmitype/).freeze,
56
+ "rdfs:isDefinedBy" => %(dcmitype:).freeze,
57
57
  type: "rdfs:Class".freeze
58
58
  term :MovingImage,
59
59
  comment: %(A series of visual representations imparting an impression of motion when shown in succession.).freeze,
@@ -63,8 +63,8 @@ module RDF::Vocab
63
63
  "dc:modified" => %(2008-01-14).freeze,
64
64
  "http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
65
65
  label: "Moving Image".freeze,
66
- "rdfs:isDefinedBy" => %(http://purl.org/dc/dcmitype/).freeze,
67
- subClassOf: "http://purl.org/dc/dcmitype/Image".freeze,
66
+ "rdfs:isDefinedBy" => %(dcmitype:).freeze,
67
+ subClassOf: "dcmitype:Image".freeze,
68
68
  type: "rdfs:Class".freeze
69
69
  term :PhysicalObject,
70
70
  comment: %(An inanimate, three-dimensional object or substance.).freeze,
@@ -74,7 +74,7 @@ module RDF::Vocab
74
74
  "dc:modified" => %(2008-01-14).freeze,
75
75
  "http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
76
76
  label: "Physical Object".freeze,
77
- "rdfs:isDefinedBy" => %(http://purl.org/dc/dcmitype/).freeze,
77
+ "rdfs:isDefinedBy" => %(dcmitype:).freeze,
78
78
  type: "rdfs:Class".freeze
79
79
  term :Service,
80
80
  comment: %(A system that provides one or more functions.).freeze,
@@ -84,7 +84,7 @@ module RDF::Vocab
84
84
  "dc:modified" => %(2008-01-14).freeze,
85
85
  "http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
86
86
  label: "Service".freeze,
87
- "rdfs:isDefinedBy" => %(http://purl.org/dc/dcmitype/).freeze,
87
+ "rdfs:isDefinedBy" => %(dcmitype:).freeze,
88
88
  type: "rdfs:Class".freeze
89
89
  term :Software,
90
90
  comment: %(A computer program in source or compiled form.).freeze,
@@ -94,7 +94,7 @@ module RDF::Vocab
94
94
  "dc:modified" => %(2008-01-14).freeze,
95
95
  "http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
96
96
  label: "Software".freeze,
97
- "rdfs:isDefinedBy" => %(http://purl.org/dc/dcmitype/).freeze,
97
+ "rdfs:isDefinedBy" => %(dcmitype:).freeze,
98
98
  type: "rdfs:Class".freeze
99
99
  term :Sound,
100
100
  comment: %(A resource primarily intended to be heard.).freeze,
@@ -104,7 +104,7 @@ module RDF::Vocab
104
104
  "dc:modified" => %(2008-01-14).freeze,
105
105
  "http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
106
106
  label: "Sound".freeze,
107
- "rdfs:isDefinedBy" => %(http://purl.org/dc/dcmitype/).freeze,
107
+ "rdfs:isDefinedBy" => %(dcmitype:).freeze,
108
108
  type: "rdfs:Class".freeze
109
109
  term :StillImage,
110
110
  comment: %(A static visual representation.).freeze,
@@ -114,8 +114,8 @@ module RDF::Vocab
114
114
  "dc:modified" => %(2008-01-14).freeze,
115
115
  "http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
116
116
  label: "Still Image".freeze,
117
- "rdfs:isDefinedBy" => %(http://purl.org/dc/dcmitype/).freeze,
118
- subClassOf: "http://purl.org/dc/dcmitype/Image".freeze,
117
+ "rdfs:isDefinedBy" => %(dcmitype:).freeze,
118
+ subClassOf: "dcmitype:Image".freeze,
119
119
  type: "rdfs:Class".freeze
120
120
  term :Text,
121
121
  comment: %(A resource consisting primarily of words for reading.).freeze,
@@ -125,7 +125,7 @@ module RDF::Vocab
125
125
  "dc:modified" => %(2008-01-14).freeze,
126
126
  "http://purl.org/dc/dcam/memberOf" => %(dc:DCMIType).freeze,
127
127
  label: "Text".freeze,
128
- "rdfs:isDefinedBy" => %(http://purl.org/dc/dcmitype/).freeze,
128
+ "rdfs:isDefinedBy" => %(dcmitype:).freeze,
129
129
  type: "rdfs:Class".freeze
130
130
 
131
131
  # Extra definitions
@@ -1,19 +1,19 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  # This file generated automatically using vocab-fetch from https://www.ebu.ch/metadata/ontologies/ebucore/ebucore.rdf
3
3
  require 'rdf'
4
-
5
4
  module RDF::Vocab
6
5
  class EBUCore < RDF::StrictVocabulary("http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#")
6
+
7
7
  # Class definitions
8
8
  term :AccessConditions,
9
9
  comment: %(The conditions under which content can be accessed.).freeze,
10
10
  label: "Access conditions".freeze,
11
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze,
11
+ subClassOf: "ebucore:Rights".freeze,
12
12
  type: "rdfs:Class".freeze
13
13
  term :Affiliation,
14
14
  comment: %(An Organisation to which a Contact is affiliated \(with period of validity\).).freeze,
15
15
  label: "Affiliation".freeze,
16
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze,
16
+ subClassOf: "ebucore:Organisation".freeze,
17
17
  type: "rdfs:Class".freeze
18
18
  term :Agent,
19
19
  comment: %(A person / contact or organisation contributing
@@ -25,7 +25,7 @@ module RDF::Vocab
25
25
  comment: %(Any ancillary data provided with the content
26
26
  other than captioning and subtitling.).freeze,
27
27
  label: "Ancillary data".freeze,
28
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#DataTrack".freeze,
28
+ subClassOf: "ebucore:DataTrack".freeze,
29
29
  type: "rdfs:Class".freeze
30
30
  term :AncillaryDataFormat,
31
31
  comment: %(To define the format of AncillaryData such as
@@ -33,7 +33,7 @@ module RDF::Vocab
33
33
  text in an annotation label or as an identifier pointing to a term in a classification
34
34
  scheme.).freeze,
35
35
  label: "Ancillary data format".freeze,
36
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#DataFormat".freeze,
36
+ subClassOf: "ebucore:DataFormat".freeze,
37
37
  type: "rdfs:Class".freeze
38
38
  term :Annotation,
39
39
  comment: %(A set of descriptive or technical metadata.
@@ -56,29 +56,29 @@ module RDF::Vocab
56
56
  comment: %(The audience by which the Resource can be
57
57
  seen according to ratings like MPAA \(http://en.wikipedia.org/wiki/Motion_picture_rating_system\) or other organisational / national / local standards.).freeze,
58
58
  label: "Audience rating".freeze,
59
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze,
59
+ subClassOf: "ebucore:Rating".freeze,
60
60
  type: "rdfs:Class".freeze
61
61
  term :AudioChannel,
62
- comment: %(An audioChannel represents a single sequence of audio samples. It
63
- is sub-divided in the time domain into audioBlocks, which is must contain at
64
- least one of. The typeDefintion of the audioChannel format specifies the type of
65
- audio it is describing, and also determines which parameters are used within its
62
+ comment: %(An audioChannel represents a single sequence of audio samples. It
63
+ is sub-divided in the time domain into audioBlocks, which is must contain at
64
+ least one of. The typeDefintion of the audioChannel format specifies the type of
65
+ audio it is describing, and also determines which parameters are used within its
66
66
  audioBlock children.).freeze,
67
67
  label: "Audio channel".freeze,
68
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Essence".freeze,
68
+ subClassOf: "ebucore:Essence".freeze,
69
69
  type: "rdfs:Class".freeze
70
70
  term :AudioContent,
71
- comment: %(An audioContent defines one component of a programme \(e.g. background
72
- music\), its association with an audioGroup \(e.g. a 2.0 audioPackFormat of
73
- audioChannelFormats for stereo reproduction\), its association with an
71
+ comment: %(An audioContent defines one component of a programme \(e.g. background
72
+ music\), its association with an audioGroup \(e.g. a 2.0 audioPackFormat of
73
+ audioChannelFormats for stereo reproduction\), its association with an
74
74
  audioStreamFormat, and its set of loudness parameters.).freeze,
75
75
  label: "Audio content".freeze,
76
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioProgramme".freeze,
76
+ subClassOf: "ebucore:AudioProgramme".freeze,
77
77
  type: "rdfs:Class".freeze
78
78
  term :AudioEncodingFormat,
79
79
  comment: %(The encoding format for the audio.).freeze,
80
80
  label: "Audio encoding format".freeze,
81
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EncodingFormat".freeze,
81
+ subClassOf: "ebucore:EncodingFormat".freeze,
82
82
  type: "rdfs:Class".freeze
83
83
  term :AudioFormat,
84
84
  comment: %(The technical characteristics of an
@@ -86,49 +86,49 @@ module RDF::Vocab
86
86
  label or as an identifier pointing to a term in a classification scheme e.g.
87
87
  http://www.ebu.ch/metadata/ontologies/skos/ebu_AudioFormatCodeCS.rdf.).freeze,
88
88
  label: "Audio Format".freeze,
89
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze,
89
+ subClassOf: "ebucore:Format".freeze,
90
90
  type: "rdfs:Class".freeze
91
91
  term :AudioPackFormat,
92
92
  comment: %(The format of an AudioPack. Examples of audioPackFormats are 'stereo' and '5.1' for channel-based formats.).freeze,
93
93
  label: "Audio pack format".freeze,
94
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioFormat".freeze,
94
+ subClassOf: "ebucore:AudioFormat".freeze,
95
95
  type: "rdfs:Class".freeze
96
96
  term :AudioProgramme,
97
- comment: %(A set of one or more audioContent that derive from the same material,
98
- i.e. an audioMultiplex, and the definition of its multiplexed audioContents \(e.g.
97
+ comment: %(A set of one or more audioContent that derive from the same material,
98
+ i.e. an audioMultiplex, and the definition of its multiplexed audioContents \(e.g.
99
99
  foreground and commentary, background music\).).freeze,
100
100
  label: "Audio programme".freeze,
101
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Programme".freeze,
101
+ subClassOf: "ebucore:Programme".freeze,
102
102
  type: "rdfs:Class".freeze
103
103
  term :AudioStream,
104
104
  comment: %(An audioStreamFormat describes a decodable signal - PCM signal or a Dolby E stream for example. It is composed of one or more AudioTracks.).freeze,
105
105
  label: "Audio stream".freeze,
106
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Stream".freeze,
106
+ subClassOf: "ebucore:Stream".freeze,
107
107
  type: "rdfs:Class".freeze
108
108
  term :AudioStreamFormat,
109
109
  comment: %(The format of an AudioStream, e.g. PCM_FrontLeft or Dolby E.).freeze,
110
110
  label: "Audio stream format".freeze,
111
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioFormat".freeze,
111
+ subClassOf: "ebucore:AudioFormat".freeze,
112
112
  type: "rdfs:Class".freeze
113
113
  term :AudioTrack,
114
- comment: [%(An audioTrack is the basic audio data container of a medium. Attribute is
115
- an unambiguous reference to this container in a given medium.).freeze, %(Represents a physical container or carrier to hold an audio stream. This
116
- should be usually defined by many attributes such as ID, format \(e.g. 48 kHz/24
117
- bits\), linkage information \(e.g. odd/even\)…).freeze, %(An audioTrack object defines a component of an audioStream.
114
+ comment: [%(An audioTrack is the basic audio data container of a medium. Attribute is
115
+ an unambiguous reference to this container in a given medium.).freeze, %(Represents a physical container or carrier to hold an audio stream. This
116
+ should be usually defined by many attributes such as ID, format \(e.g. 48 kHz/24
117
+ bits\), linkage information \(e.g. odd/even\)…).freeze, %(An audioTrack object defines a component of an audioStream.
118
118
  A single set of samples or data in the storage medium.).freeze],
119
119
  label: "Audio track".freeze,
120
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze,
120
+ subClassOf: "ebucore:Track".freeze,
121
121
  type: "rdfs:Class".freeze
122
122
  term :AudioTrackFormat,
123
123
  comment: %(The format of an AudioTrack e.g. PCM_FrontLeft.).freeze,
124
124
  label: "Audio track format".freeze,
125
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioFormat".freeze,
125
+ subClassOf: "ebucore:AudioFormat".freeze,
126
126
  type: "rdfs:Class".freeze
127
127
  term :Brand,
128
128
  comment: %(A group of EditorialObjects having a Brand as a
129
129
  common denominator).freeze,
130
130
  label: "Brand".freeze,
131
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze,
131
+ subClassOf: "ebucore:Group".freeze,
132
132
  type: "rdfs:Class".freeze
133
133
  term :BusinessObject,
134
134
  comment: %(An image, a document, an annotation
@@ -143,7 +143,7 @@ module RDF::Vocab
143
143
  comment: %(To signal the presence of hard of hearing
144
144
  captioning.).freeze,
145
145
  label: "Captioning".freeze,
146
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#DataTrack".freeze,
146
+ subClassOf: "ebucore:DataTrack".freeze,
147
147
  type: "rdfs:Class".freeze
148
148
  term :CaptioningFormat,
149
149
  comment: %(To define the format of captioning.
@@ -151,30 +151,30 @@ module RDF::Vocab
151
151
  free text in an annotation label or as an identifier pointing to a term in a
152
152
  classification scheme.).freeze,
153
153
  label: "Captioning format".freeze,
154
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#DataFormat".freeze,
154
+ subClassOf: "ebucore:DataFormat".freeze,
155
155
  type: "rdfs:Class".freeze
156
156
  term :Cast,
157
157
  comment: %(A member of the cast list \(a list of fictitious
158
158
  characters\).).freeze,
159
159
  label: "Cast member".freeze,
160
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
160
+ subClassOf: "ebucore:Agent".freeze,
161
161
  type: "rdfs:Class".freeze
162
162
  term :Character,
163
163
  comment: %(A fictitious contact / person.).freeze,
164
164
  label: "Character".freeze,
165
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
165
+ subClassOf: "ebucore:Agent".freeze,
166
166
  type: "rdfs:Class".freeze
167
167
  term :ClosedCaptions,
168
168
  comment: %(Closed captioning is provided as separate
169
169
  content.).freeze,
170
170
  label: "Closed caption".freeze,
171
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Captioning".freeze,
171
+ subClassOf: "ebucore:Captioning".freeze,
172
172
  type: "rdfs:Class".freeze
173
173
  term :ClosedSubtitling,
174
174
  comment: %(Closed subtitles are provided as separate
175
175
  content.).freeze,
176
176
  label: "Closed subtitling".freeze,
177
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Subtitling".freeze,
177
+ subClassOf: "ebucore:Subtitling".freeze,
178
178
  type: "rdfs:Class".freeze
179
179
  term :Codec,
180
180
  comment: %(To provide information on a codec.).freeze,
@@ -187,7 +187,7 @@ module RDF::Vocab
187
187
  archives, A collection corresponds to all items belonging to an individual /
188
188
  collector.).freeze,
189
189
  label: "Collection".freeze,
190
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze,
190
+ subClassOf: "ebucore:Group".freeze,
191
191
  type: "rdfs:Class".freeze
192
192
  term :ColourSpace,
193
193
  comment: %(The CoulourSpace of a VideoResource. A
@@ -195,17 +195,17 @@ module RDF::Vocab
195
195
  to a term in a classification scheme such as
196
196
  http://www.ebu.ch/metadata/ontologies/skos/ebu_ColourCodeCS.rdf.).freeze,
197
197
  label: "Colour space".freeze,
198
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze,
198
+ subClassOf: "ebucore:Format".freeze,
199
199
  type: "rdfs:Class".freeze
200
200
  term :Component,
201
201
  comment: %(A component e.g. audio, video, data or else or a MediaResource or Essence.).freeze,
202
202
  label: "Component".freeze,
203
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Essence".freeze,
203
+ subClassOf: "ebucore:Essence".freeze,
204
204
  type: "rdfs:Class".freeze
205
205
  term :Contact,
206
206
  comment: %(A physical person.).freeze,
207
207
  label: "Contact".freeze,
208
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
208
+ subClassOf: "ebucore:Agent".freeze,
209
209
  type: "rdfs:Class".freeze
210
210
  term :ContainerFormat,
211
211
  comment: %(The container or wrapper format used to package
@@ -213,7 +213,7 @@ module RDF::Vocab
213
213
  or pointing at a term in a classification scheme e.g.
214
214
  http://www.ebu.ch/metadata/ontologies/skos/ebu_ContainerFormatCS.rdf.).freeze,
215
215
  label: "Container format".freeze,
216
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze,
216
+ subClassOf: "ebucore:Format".freeze,
217
217
  type: "rdfs:Class".freeze
218
218
  term :ContainerMimeType,
219
219
  comment: %(The definition of the container if available as
@@ -221,19 +221,19 @@ module RDF::Vocab
221
221
  pointing to a term in a classification scheme. For more information:
222
222
  http://www.iana.org/assignments/media-types/application/index.html.).freeze,
223
223
  label: "Container Mime type".freeze,
224
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze,
224
+ subClassOf: "ebucore:Format".freeze,
225
225
  type: "rdfs:Class".freeze
226
226
  term :Copyright,
227
227
  comment: %(To provide a copyright
228
228
  statement.).freeze,
229
229
  label: "Copyright".freeze,
230
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze,
230
+ subClassOf: "ebucore:Rights".freeze,
231
231
  type: "rdfs:Class".freeze
232
232
  term :CoverageRestrictions,
233
233
  comment: %(To provide information on possible restrictions
234
234
  regarding the temporal and spatial coverage for publication.).freeze,
235
235
  label: "Coverage restrictions".freeze,
236
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze,
236
+ subClassOf: "ebucore:Rights".freeze,
237
237
  type: "rdfs:Class".freeze
238
238
  term :DataFormat,
239
239
  comment: %(To provide addtional technical information on
@@ -241,19 +241,19 @@ module RDF::Vocab
241
241
  AncillaryData, Subtilting and Captioning. Additional specific data format may be defined
242
242
  as subclasses of DataFormat.).freeze,
243
243
  label: "Data format".freeze,
244
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze,
244
+ subClassOf: "ebucore:Format".freeze,
245
245
  type: "rdfs:Class".freeze
246
246
  term :DataTrack,
247
247
  comment: %(Ancillary data track e.g. ¨captioning"
248
248
  or "subtitling" in addition to video and audio tracks.).freeze,
249
249
  label: "Data track".freeze,
250
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze,
250
+ subClassOf: "ebucore:Track".freeze,
251
251
  type: "rdfs:Class".freeze
252
252
  term :Department,
253
253
  comment: %(A department within and
254
254
  organisation.).freeze,
255
255
  label: "Department".freeze,
256
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze,
256
+ subClassOf: "ebucore:Organisation".freeze,
257
257
  type: "rdfs:Class".freeze
258
258
  term :DepictedEvent,
259
259
  comment: %(A DepictedEVent is fictitious or historical or
@@ -266,13 +266,13 @@ module RDF::Vocab
266
266
  comment: %(To provide a disclaimer of any
267
267
  form.).freeze,
268
268
  label: "Disclaimer".freeze,
269
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze,
269
+ subClassOf: "ebucore:Rights".freeze,
270
270
  type: "rdfs:Class".freeze
271
271
  term :Document,
272
272
  comment: %(To describe a publication in the form of a
273
273
  document e.g. a html webpage \(news item\) or a pdf document e.g. a script.).freeze,
274
274
  label: "Document".freeze,
275
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
275
+ subClassOf: "ebucore:Resource".freeze,
276
276
  type: "rdfs:Class".freeze
277
277
  term :DocumentFormat,
278
278
  comment: %(To provide technical information about the
@@ -280,12 +280,12 @@ module RDF::Vocab
280
280
  annotation label or as an identifier pointing to a term in a classification
281
281
  scheme.).freeze,
282
282
  label: "Document format".freeze,
283
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze,
283
+ subClassOf: "ebucore:Format".freeze,
284
284
  type: "rdfs:Class".freeze
285
285
  term :Dopesheet,
286
286
  comment: %(Provides additional information about a NewsItem, e.g. date and place, subject.).freeze,
287
287
  label: "Dopesheet".freeze,
288
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Document".freeze,
288
+ subClassOf: "ebucore:Document".freeze,
289
289
  type: "rdfs:Class".freeze
290
290
  term :EditorialObject,
291
291
  comment: %(In the audiovisual domain, the Class
@@ -297,7 +297,7 @@ module RDF::Vocab
297
297
  of EditorialObjects. For example a series composed of episodes is defined as an
298
298
  EditorialObject.).freeze,
299
299
  label: "Editorial Object".freeze,
300
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze,
300
+ subClassOf: "ebucore:BusinessObject".freeze,
301
301
  type: "rdfs:Class".freeze
302
302
  term :EncodingFormat,
303
303
  comment: %(To provide a definition of the encoding format
@@ -306,14 +306,14 @@ module RDF::Vocab
306
306
  http://www.ebu.ch/metadata/ontologies/skos/ebu_AudioCompressionCodeCS.rdf or
307
307
  http://www.ebu.ch/metadata/ontologies/skos/ebu_VideoCompressionCodeCS.rdf.).freeze,
308
308
  label: "Encoding".freeze,
309
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze,
309
+ subClassOf: "ebucore:Format".freeze,
310
310
  type: "rdfs:Class".freeze
311
311
  term :Essence,
312
312
  comment: %(In some audiovisual standardisation groups,
313
313
  Essence is preferred to MediaResource. In also has subclasses well known as MediaObject
314
314
  clustered in AudioObjects and VideoObjects.).freeze,
315
315
  label: "Essence".freeze,
316
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze,
316
+ subClassOf: "ebucore:MediaResource".freeze,
317
317
  type: "rdfs:Class".freeze
318
318
  term :Event,
319
319
  comment: [%(An event related to the media resource, e.g.
@@ -326,7 +326,7 @@ module RDF::Vocab
326
326
  comment: %(To highlight potential exploitation
327
327
  issues.).freeze,
328
328
  label: "Exploitation issues".freeze,
329
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze,
329
+ subClassOf: "ebucore:Rights".freeze,
330
330
  type: "rdfs:Class".freeze
331
331
  term :FileFormat,
332
332
  comment: %(A file format for Resources other than
@@ -334,7 +334,7 @@ module RDF::Vocab
334
334
  classification scheme e.g.
335
335
  http://www.ebu.ch/metadata/ontologies/skos/ebu_FileFormatCS.rdf.).freeze,
336
336
  label: "File format".freeze,
337
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze,
337
+ subClassOf: "ebucore:Format".freeze,
338
338
  type: "rdfs:Class".freeze
339
339
  term :Format,
340
340
  comment: %(The format provides technical information on
@@ -351,25 +351,25 @@ module RDF::Vocab
351
351
  http://www.ebu.ch/metadata/ontologies/skos/ebu_ContentGenreCS.rdf or
352
352
  http://www.ebu.ch/metadata/ontologies/skos/ebu_EditorialFormatCodeCS.rdf.).freeze,
353
353
  label: "Genre".freeze,
354
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Type".freeze,
354
+ subClassOf: "ebucore:Type".freeze,
355
355
  type: "rdfs:Class".freeze
356
356
  term :Group,
357
357
  comment: %(To define a collection / group of media
358
358
  resources, for example a series made of episodes.).freeze,
359
359
  label: "Group".freeze,
360
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze,
360
+ subClassOf: "ebucore:EditorialObject".freeze,
361
361
  type: "rdfs:Class".freeze
362
362
  term :IPRRestrictions,
363
363
  comment: %(To provide information on intellectual
364
364
  property.).freeze,
365
365
  label: "IPR restrictions".freeze,
366
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze,
366
+ subClassOf: "ebucore:Rights".freeze,
367
367
  type: "rdfs:Class".freeze
368
368
  term :Image,
369
369
  comment: %(A still image / thumbnail / key frame / logo
370
370
  related to the media resource or being the media resource itself).freeze,
371
371
  label: "Image".freeze,
372
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze,
372
+ subClassOf: "ebucore:BusinessObject".freeze,
373
373
  type: "rdfs:Class".freeze
374
374
  term :ImageFormat,
375
375
  comment: %(To provide technical information about the
@@ -377,16 +377,16 @@ module RDF::Vocab
377
377
  annotation label or as an identifier pointing to a term in a classification
378
378
  scheme.).freeze,
379
379
  label: "Image format".freeze,
380
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze,
380
+ subClassOf: "ebucore:Format".freeze,
381
381
  type: "rdfs:Class".freeze
382
382
  term :Item,
383
383
  comment: %(An item e.g. newsItem or sportItem).freeze,
384
384
  label: "Item".freeze,
385
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze,
385
+ subClassOf: "ebucore:EditorialObject".freeze,
386
386
  type: "rdfs:Class".freeze
387
387
  term :KeyCareerEvent,
388
388
  label: "Key career event".freeze,
389
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#KeyEvent".freeze,
389
+ subClassOf: "ebucore:KeyEvent".freeze,
390
390
  type: "rdfs:Class".freeze
391
391
  term :KeyEvent,
392
392
  label: "Key event".freeze,
@@ -394,13 +394,13 @@ module RDF::Vocab
394
394
  type: "rdfs:Class".freeze
395
395
  term :KeyPersonalEvent,
396
396
  label: "Key personal event".freeze,
397
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#KeyEvent".freeze,
397
+ subClassOf: "ebucore:KeyEvent".freeze,
398
398
  type: "rdfs:Class".freeze
399
399
  term :Keyframe,
400
400
  comment: %(A key frame is a frame extarcted from video,
401
401
  e.g. representative of a part of a MediaResource.).freeze,
402
402
  label: "key frame".freeze,
403
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Picture".freeze,
403
+ subClassOf: "ebucore:Picture".freeze,
404
404
  type: "rdfs:Class".freeze
405
405
  term :Keyword,
406
406
  comment: %(To proivde keywords and define key concepts
@@ -422,7 +422,7 @@ module RDF::Vocab
422
422
  comment: [%(This is provided as free text in an annotation
423
423
  label or as an identifier pointing to a term in a classification scheme.).freeze, %(A location related to the media resource, e.g.
424
424
  depicted in the resource \(possibly fictional\) or where the resource was created
425
- \(shooting location\), etc.).freeze, %(A type of location is defined as a sub-class of
425
+ \(shooting location\), etc.).freeze, %(A type of location is defined as a sub-class of
426
426
  location.).freeze],
427
427
  label: "Location".freeze,
428
428
  subClassOf: "owl:Thing".freeze,
@@ -432,30 +432,30 @@ module RDF::Vocab
432
432
  organisation, publicationService, publicationChannel, or ratings /
433
433
  parentalGuidance).freeze,
434
434
  label: "Logo".freeze,
435
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Picture".freeze,
435
+ subClassOf: "ebucore:Picture".freeze,
436
436
  type: "rdfs:Class".freeze
437
437
  term :MediaFragment,
438
438
  comment: %(A MediaFragment is a temporal or spatial segment of a resource identified by a MediaGragment URI \(http://www.w3.org/2008/WebVideo/Fragments/WD-media-fragments-spec/\).).freeze,
439
439
  label: "Media Fragment".freeze,
440
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze,
440
+ subClassOf: "ebucore:MediaResource".freeze,
441
441
  type: "rdfs:Class".freeze
442
442
  term :MediaResource,
443
443
  comment: %(The use of MediaResource is reserved to
444
444
  audiovisual content.).freeze,
445
445
  label: "Media Resource".freeze,
446
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
446
+ subClassOf: "ebucore:Resource".freeze,
447
447
  type: "rdfs:Class".freeze
448
448
  term :Medium,
449
449
  comment: %(To provide information on the medium formats in
450
450
  which the resource is available. This is provided as free text in an annotation label or
451
451
  as an identifier pointing to a term in a classification scheme.).freeze,
452
452
  label: "Medium".freeze,
453
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze,
453
+ subClassOf: "ebucore:Format".freeze,
454
454
  type: "rdfs:Class".freeze
455
455
  term :MetadataTrack,
456
456
  label: "Metadata track".freeze,
457
457
  "skos:prefLabel" => %(Metadata track).freeze,
458
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze,
458
+ subClassOf: "ebucore:Track".freeze,
459
459
  type: "rdfs:Class".freeze
460
460
  term :MimeType,
461
461
  comment: %(The definition of the container if available as
@@ -463,12 +463,12 @@ module RDF::Vocab
463
463
  pointing to a term in a classification scheme. For more information:
464
464
  http://www.iana.org/assignments/media-types/index.html.).freeze,
465
465
  label: "Mime type".freeze,
466
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze,
466
+ subClassOf: "ebucore:Format".freeze,
467
467
  type: "rdfs:Class".freeze
468
468
  term :NewsItem,
469
469
  comment: %(A NewsItem aggregates all information about a particular news event.).freeze,
470
470
  label: "News Item".freeze,
471
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Item".freeze,
471
+ subClassOf: "ebucore:Item".freeze,
472
472
  type: "rdfs:Class".freeze
473
473
  term :ObjectType,
474
474
  comment: %(To specify the type of BusinessObject e.g. and
@@ -477,24 +477,24 @@ module RDF::Vocab
477
477
  classification scheme e.g.
478
478
  http://www.ebu.ch/metadata/ontologies/skos/ebu_ObjectTypeCodeCS.rdf.).freeze,
479
479
  label: "Object type".freeze,
480
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Type".freeze,
480
+ subClassOf: "ebucore:Type".freeze,
481
481
  type: "rdfs:Class".freeze
482
482
  term :OpenCaptions,
483
483
  comment: %(Open Captions are burned in the
484
484
  image.).freeze,
485
485
  label: "Open captions".freeze,
486
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Captioning".freeze,
486
+ subClassOf: "ebucore:Captioning".freeze,
487
487
  type: "rdfs:Class".freeze
488
488
  term :OpenSubtitling,
489
489
  comment: %(Open subtitles are burned in the
490
490
  image.).freeze,
491
491
  label: "Open subtitling".freeze,
492
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Subtitling".freeze,
492
+ subClassOf: "ebucore:Subtitling".freeze,
493
493
  type: "rdfs:Class".freeze
494
494
  term :Organisation,
495
495
  comment: %(An organisation \(business, corporation, federation, etc.\) or moral agent \(gvernment body\).).freeze,
496
496
  label: "Organisation".freeze,
497
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
497
+ subClassOf: "ebucore:Agent".freeze,
498
498
  type: "rdfs:Class".freeze
499
499
  term :OriginalLanguage,
500
500
  comment: %(The original language in which the
@@ -502,7 +502,7 @@ module RDF::Vocab
502
502
  in an annotation label or as an identifier pointing to a term in a classification
503
503
  scheme.).freeze,
504
504
  label: "OriginalLanguage".freeze,
505
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Language".freeze,
505
+ subClassOf: "ebucore:Language".freeze,
506
506
  type: "rdfs:Class".freeze
507
507
  term :Part,
508
508
  comment: [%(A Fragment is a particular section of a
@@ -512,23 +512,23 @@ module RDF::Vocab
512
512
  to e.g. as a 'part' or 'segment' or
513
513
  'fragment'.).freeze],
514
514
  label: "Part, Fragment, Segment".freeze,
515
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze,
515
+ subClassOf: "ebucore:EditorialObject".freeze,
516
516
  type: "rdfs:Class".freeze
517
517
  term :Pictogram,
518
518
  comment: %(A visual / graphical representation of a concept.).freeze,
519
519
  label: "Pictogram".freeze,
520
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Picture".freeze,
520
+ subClassOf: "ebucore:Picture".freeze,
521
521
  type: "rdfs:Class".freeze
522
522
  term :Picture,
523
523
  comment: %(A photography, a logo, a pictogram, etc.).freeze,
524
524
  label: "Picture".freeze,
525
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
525
+ subClassOf: "ebucore:Resource".freeze,
526
526
  type: "rdfs:Class".freeze
527
527
  term :Programme,
528
528
  comment: %(An EditorialObject corresponding to a
529
529
  MediaResource ready for publication.).freeze,
530
530
  label: "Programme".freeze,
531
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze,
531
+ subClassOf: "ebucore:EditorialObject".freeze,
532
532
  type: "rdfs:Class".freeze
533
533
  term :PublicationChannel,
534
534
  comment: %(The name of the channel through which a
@@ -559,7 +559,7 @@ module RDF::Vocab
559
559
  comment: %(A programme for distribution on radio
560
560
  channels.).freeze,
561
561
  label: "Radio Programme".freeze,
562
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Programme".freeze,
562
+ subClassOf: "ebucore:Programme".freeze,
563
563
  type: "rdfs:Class".freeze
564
564
  term :Rating,
565
565
  comment: [%(This is provided as free text in an annotation
@@ -585,7 +585,7 @@ module RDF::Vocab
585
585
  comment: %(To signal that rights have been cleared \(or
586
586
  not\)).freeze,
587
587
  label: "RightsClearance".freeze,
588
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze,
588
+ subClassOf: "ebucore:Rights".freeze,
589
589
  type: "rdfs:Class".freeze
590
590
  term :Role,
591
591
  comment: %(To define the role / action of an agent. This
@@ -599,13 +599,13 @@ module RDF::Vocab
599
599
  clustering a certain number of episodes. Fro this reason, seasons are related to series
600
600
  using the isRelatedTo property.).freeze,
601
601
  label: "Season".freeze,
602
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze,
602
+ subClassOf: "ebucore:Group".freeze,
603
603
  type: "rdfs:Class".freeze
604
604
  term :Series,
605
605
  comment: %(Series is a particular type of collection. TV
606
606
  or Radio Series are composed of Episodes.).freeze,
607
607
  label: "Series".freeze,
608
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze,
608
+ subClassOf: "ebucore:Group".freeze,
609
609
  type: "rdfs:Class".freeze
610
610
  term :Service,
611
611
  comment: %(A service is the umbrella under which one or
@@ -618,24 +618,24 @@ module RDF::Vocab
618
618
  hearing users. The type of Signing \(e.g. incursted in or else\) or language of Signing
619
619
  can be specified using the appropriate properties.).freeze,
620
620
  label: "Signing".freeze,
621
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#VideoTrack".freeze,
621
+ subClassOf: "ebucore:VideoTrack".freeze,
622
622
  type: "rdfs:Class".freeze
623
623
  term :SigningFormat,
624
624
  comment: %(To provide additional information on the
625
625
  signing format. This is provided as free text in an annotation label or as an identifier
626
626
  pointing to a term in a classification scheme.).freeze,
627
627
  label: "Signing format".freeze,
628
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#VideoFormat".freeze,
628
+ subClassOf: "ebucore:VideoFormat".freeze,
629
629
  type: "rdfs:Class".freeze
630
630
  term :SportItem,
631
631
  comment: %(A SportItem aggregates all information about a sport event.).freeze,
632
632
  label: "Sport item".freeze,
633
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Item".freeze,
633
+ subClassOf: "ebucore:Item".freeze,
634
634
  type: "rdfs:Class".freeze
635
635
  term :Staff,
636
636
  comment: %(Staff or crew member.).freeze,
637
637
  label: "Staff member.".freeze,
638
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
638
+ subClassOf: "ebucore:Agent".freeze,
639
639
  type: "rdfs:Class".freeze
640
640
  term :StorageType,
641
641
  comment: %(The type of storage used for the repository.
@@ -647,7 +647,7 @@ module RDF::Vocab
647
647
  term :Stream,
648
648
  comment: %(A continuous stream of bits.).freeze,
649
649
  label: "Stream".freeze,
650
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Component".freeze,
650
+ subClassOf: "ebucore:Component".freeze,
651
651
  type: "rdfs:Class".freeze
652
652
  term :Subject,
653
653
  comment: %(A term describing the topic covered by the
@@ -660,7 +660,7 @@ module RDF::Vocab
660
660
  comment: %(To signal the presence of subtitles for
661
661
  translation in alternative languages.).freeze,
662
662
  label: "Subtitling".freeze,
663
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#DataTrack".freeze,
663
+ subClassOf: "ebucore:DataTrack".freeze,
664
664
  type: "rdfs:Class".freeze
665
665
  term :SubtitlingFormat,
666
666
  comment: %(To define the format of subtitling.
@@ -668,44 +668,44 @@ module RDF::Vocab
668
668
  annotation label or as an identifier pointing to a term in a classification
669
669
  scheme.).freeze,
670
670
  label: "Subtitling format".freeze,
671
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#DataFormat".freeze,
671
+ subClassOf: "ebucore:DataFormat".freeze,
672
672
  type: "rdfs:Class".freeze
673
673
  term :TVProgramme,
674
674
  comment: %(A programme for distribution on television
675
675
  channels.).freeze,
676
676
  label: "TV Programme".freeze,
677
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Programme".freeze,
677
+ subClassOf: "ebucore:Programme".freeze,
678
678
  type: "rdfs:Class".freeze
679
679
  term :Tag,
680
680
  comment: %(An annotation specific to a particular
681
681
  timestamp in audiovisual MediaResources.).freeze,
682
682
  label: "Tag".freeze,
683
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze,
683
+ subClassOf: "ebucore:Annotation".freeze,
684
684
  type: "rdfs:Class".freeze
685
685
  term :Thumbnail,
686
686
  comment: %(A thumbnail is a low resolution picture that
687
687
  can be associated with EditorialObjects or e.g. MediaResources or
688
688
  Contacts.).freeze,
689
689
  label: "Thumbnail".freeze,
690
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Picture".freeze,
690
+ subClassOf: "ebucore:Picture".freeze,
691
691
  type: "rdfs:Class".freeze
692
692
  term :TimecodeTrack,
693
693
  comment: %(A track with timecode information.).freeze,
694
694
  label: "Timecode track".freeze,
695
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze,
695
+ subClassOf: "ebucore:Track".freeze,
696
696
  type: "rdfs:Class".freeze
697
697
  term :Topic,
698
698
  comment: %(A type subject for use in some contexts. This
699
699
  is provided as free text in an annotation label or as an identifier pointing to a term
700
700
  in a classification scheme.).freeze,
701
701
  label: "Topic".freeze,
702
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Subject".freeze,
702
+ subClassOf: "ebucore:Subject".freeze,
703
703
  type: "rdfs:Class".freeze
704
704
  term :Track,
705
705
  comment: %(Audiovisual content can be composed of audio,
706
706
  video and data Tracks \(including captioning and subtitling\).).freeze,
707
707
  label: "Track".freeze,
708
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Essence".freeze,
708
+ subClassOf: "ebucore:Essence".freeze,
709
709
  type: "rdfs:Class".freeze
710
710
  term :Type,
711
711
  comment: %(An expression of type in textual form or as a term from a classification scheme.).freeze,
@@ -715,12 +715,12 @@ module RDF::Vocab
715
715
  term :UsageRights,
716
716
  comment: %(Usage rights associated with content.).freeze,
717
717
  label: "Usage rights".freeze,
718
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze,
718
+ subClassOf: "ebucore:Rights".freeze,
719
719
  type: "rdfs:Class".freeze
720
720
  term :VideoEncodingFormat,
721
721
  comment: %(The encoding format of the video.).freeze,
722
722
  label: "Video encoding format".freeze,
723
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EncodingFormat".freeze,
723
+ subClassOf: "ebucore:EncodingFormat".freeze,
724
724
  type: "rdfs:Class".freeze
725
725
  term :VideoFormat,
726
726
  comment: %(To provide additional technical information
@@ -728,12 +728,12 @@ module RDF::Vocab
728
728
  annotation label or as an identifier pointing to a term in a classification
729
729
  scheme.).freeze,
730
730
  label: "Video format".freeze,
731
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Format".freeze,
731
+ subClassOf: "ebucore:Format".freeze,
732
732
  type: "rdfs:Class".freeze
733
733
  term :VideoStream,
734
734
  comment: %(A decodable video stream of bits.).freeze,
735
735
  label: "Video stream".freeze,
736
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Stream".freeze,
736
+ subClassOf: "ebucore:Stream".freeze,
737
737
  type: "rdfs:Class".freeze
738
738
  term :VideoTrack,
739
739
  comment: %(A specialisation of Track for Video to provide
@@ -742,11 +742,11 @@ module RDF::Vocab
742
742
  VideoTracks.. In advanced systems, different VideoTracks can be used to provide e.g.
743
743
  different viewing angles.).freeze,
744
744
  label: "Video track".freeze,
745
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze,
745
+ subClassOf: "ebucore:Track".freeze,
746
746
  type: "rdfs:Class".freeze
747
747
  term :YouTubeVideo,
748
748
  label: "You tube video".freeze,
749
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze,
749
+ subClassOf: "ebucore:MediaResource".freeze,
750
750
  type: "rdfs:Class".freeze
751
751
  term :audienceLevel,
752
752
  comment: [%(The target audience \(target region, target
@@ -754,7 +754,7 @@ module RDF::Vocab
754
754
  resource is intended.).freeze, %(This is provided as free text in an annotation
755
755
  label or as an identifier pointing to a term in a classification scheme.).freeze],
756
756
  label: "Target audience".freeze,
757
- subClassOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Type".freeze,
757
+ subClassOf: "ebucore:Type".freeze,
758
758
  type: "rdfs:Class".freeze
759
759
 
760
760
  # Property definitions
@@ -771,7 +771,7 @@ module RDF::Vocab
771
771
  comment: %(The Data Identifier word \(along with the SDID,
772
772
  if used\), indicates the type of ancillary data that the packet corresponds
773
773
  to.).freeze,
774
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AncillaryData".freeze,
774
+ domain: "ebucore:AncillaryData".freeze,
775
775
  label: "DID".freeze,
776
776
  range: "xsd:integer".freeze,
777
777
  type: "rdf:Property".freeze
@@ -779,14 +779,14 @@ module RDF::Vocab
779
779
  comment: %(Secondary data identification word for
780
780
  ancillary data. Send mode identifier. An identifier which indicates the transmission
781
781
  timing for closed caption data.).freeze,
782
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AncillaryData".freeze,
782
+ domain: "ebucore:AncillaryData".freeze,
783
783
  label: "SDID".freeze,
784
784
  range: "xsd:integer".freeze,
785
785
  type: "rdf:Property".freeze
786
786
  property :abridgedTitle,
787
787
  comment: %(A shorter version of the title.).freeze,
788
788
  label: "Abridged title".freeze,
789
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#alternativeTitle".freeze,
789
+ subPropertyOf: "ebucore:alternativeTitle".freeze,
790
790
  type: "rdf:Property".freeze
791
791
  property :absoluteDistance,
792
792
  comment: %(To express an absolute distance in meters.).freeze,
@@ -796,7 +796,7 @@ module RDF::Vocab
796
796
  property :abstract,
797
797
  comment: %(To provide a brief summary.).freeze,
798
798
  label: "Abstract".freeze,
799
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze,
799
+ subPropertyOf: "ebucore:description".freeze,
800
800
  type: "rdf:Property".freeze
801
801
  property :adultContent,
802
802
  label: "adult content".freeze,
@@ -805,24 +805,24 @@ module RDF::Vocab
805
805
  property :agentAddress,
806
806
  comment: %(To provide the address of an Agent
807
807
  \(Contact/person or organisation\).).freeze,
808
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
808
+ domain: "ebucore:Agent".freeze,
809
809
  label: "Address".freeze,
810
810
  range: "xsd:string".freeze,
811
811
  type: "rdf:Property".freeze
812
812
  property :agentAge,
813
813
  comment: %(The age of a Contact/Person).freeze,
814
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Contact".freeze,
814
+ domain: "ebucore:Contact".freeze,
815
815
  label: "Age".freeze,
816
816
  range: "xsd:integer".freeze,
817
817
  type: "rdf:Property".freeze
818
818
  property :agentCountryOfResidence,
819
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
819
+ domain: "ebucore:Agent".freeze,
820
820
  label: "agent country of residence".freeze,
821
821
  type: "rdf:Property".freeze
822
822
  property :agentEmailAddress,
823
823
  comment: %(To provide the email address of an agent
824
824
  \(Contact/person or organisation\).).freeze,
825
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
825
+ domain: "ebucore:Agent".freeze,
826
826
  label: "Email".freeze,
827
827
  "owl:equivalentProperty" => %(foaf:mbox).freeze,
828
828
  range: "xsd:string".freeze,
@@ -830,41 +830,41 @@ module RDF::Vocab
830
830
  property :agentMobileTelephoneNumber,
831
831
  comment: %(To provide the mobile telephone number of an
832
832
  Agent \(Contact/person or organisation\)).freeze,
833
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
833
+ domain: "ebucore:Agent".freeze,
834
834
  label: "Mobile".freeze,
835
835
  range: "xsd:string".freeze,
836
836
  type: "rdf:Property".freeze
837
837
  property :agentName,
838
838
  comment: %(To provide the full name of Contact/person - family and given name.).freeze,
839
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
839
+ domain: "ebucore:Agent".freeze,
840
840
  label: "Name".freeze,
841
841
  range: "xsd:string".freeze,
842
842
  type: "rdf:Property".freeze
843
843
  property :agentNationality,
844
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
844
+ domain: "ebucore:Agent".freeze,
845
845
  label: "agent nationality".freeze,
846
846
  type: "rdf:Property".freeze
847
847
  property :agentNickname,
848
848
  comment: %(To provide a nickname of a Contact/person.).freeze,
849
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
849
+ domain: "ebucore:Agent".freeze,
850
850
  label: "Nickname".freeze,
851
851
  range: "xsd:string".freeze,
852
852
  type: "rdf:Property".freeze
853
853
  property :agentPictureIdLocator,
854
854
  label: "agent picture id locator".freeze,
855
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#locator".freeze,
855
+ subPropertyOf: "ebucore:locator".freeze,
856
856
  type: "rdf:Property".freeze
857
857
  property :agentTelephoneNumber,
858
858
  comment: %(To provide the telephone number of an Agent
859
859
  \(Contact/person or Organisation\).).freeze,
860
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
860
+ domain: "ebucore:Agent".freeze,
861
861
  label: "Telephone".freeze,
862
862
  range: "xsd:string".freeze,
863
863
  type: "rdf:Property".freeze
864
864
  property :agentWebHomepage,
865
865
  comment: %(To provide the address of the webpage of an
866
866
  Agent \(Contact/person or Organisation\).).freeze,
867
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
867
+ domain: "ebucore:Agent".freeze,
868
868
  label: "Homepage".freeze,
869
869
  "owl:equivalentProperty" => %(foaf:homepage).freeze,
870
870
  range: "xsd:anyURI".freeze,
@@ -878,12 +878,12 @@ module RDF::Vocab
878
878
  property :appliesOutOf,
879
879
  comment: %(To define the Location \(e.g. country, region\) to which Rating and TargetAudience do NOT apply.).freeze,
880
880
  label: "Exclusion area".freeze,
881
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze,
881
+ range: "ebucore:Location".freeze,
882
882
  type: "rdf:Property".freeze
883
883
  property :appliesTo,
884
884
  comment: %(To define the location/region to which Rating and TargetAudience apply.).freeze,
885
885
  label: "Coverage".freeze,
886
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze,
886
+ range: "ebucore:Location".freeze,
887
887
  type: "rdf:Property".freeze
888
888
  property :aspectRatio,
889
889
  comment: %(To provide the aspect ratio of a video frame or
@@ -895,7 +895,7 @@ module RDF::Vocab
895
895
  property :audioChannelNumber,
896
896
  comment: %(The total number of audio channels contained in
897
897
  the MediaResource.).freeze,
898
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze,
898
+ domain: "ebucore:MediaResource".freeze,
899
899
  label: "Audio channel number".freeze,
900
900
  range: "xsd:nonNegativeInteger".freeze,
901
901
  type: "rdf:Property".freeze
@@ -907,7 +907,7 @@ module RDF::Vocab
907
907
  property :audioTrackConfiguration,
908
908
  comment: %(To provide the configuration of an audio track
909
909
  \(e.g. stereo pair\) in a MediaResource.).freeze,
910
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze,
910
+ domain: "ebucore:MediaResource".freeze,
911
911
  label: "Audio track configuration".freeze,
912
912
  range: "xsd:string".freeze,
913
913
  type: "rdf:Property".freeze
@@ -919,111 +919,111 @@ module RDF::Vocab
919
919
  property :bitRate,
920
920
  comment: %(To provide the bitrate at which the
921
921
  MediaResource can be played in bits/second. Current bitrate if constant, and average bitrate if variable.).freeze,
922
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze,
922
+ domain: "ebucore:MediaResource".freeze,
923
923
  label: "Bitrate".freeze,
924
924
  "owl:equivalentProperty" => %(ma:averageBitRate).freeze,
925
925
  range: "xsd:nonNegativeInteger".freeze,
926
926
  type: "rdf:Property".freeze
927
927
  property :bitRateMax,
928
928
  comment: %(The maximum bitrate when variable, in bits per second.).freeze,
929
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze,
929
+ domain: "ebucore:MediaResource".freeze,
930
930
  label: "Maximum bitrate".freeze,
931
931
  range: "xsd:integer".freeze,
932
932
  type: "rdf:Property".freeze
933
933
  property :bitRateMode,
934
934
  comment: %(A flag to indicate if the bit rate is fixed or
935
935
  variable.).freeze,
936
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze,
936
+ domain: "ebucore:MediaResource".freeze,
937
937
  label: "Bitrate mode".freeze,
938
938
  range: "xsd:string".freeze,
939
939
  type: "rdf:Property".freeze
940
940
  property :bookmark,
941
941
  comment: %(To provide a bookmark.).freeze,
942
942
  label: "Bookmark".freeze,
943
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze,
943
+ subPropertyOf: "ebucore:description".freeze,
944
944
  type: "rdf:Property".freeze
945
945
  property :businessObjectName,
946
946
  comment: %(A name attributed to a
947
947
  BusinessObject.).freeze,
948
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze,
948
+ domain: "ebucore:BusinessObject".freeze,
949
949
  label: "Name".freeze,
950
950
  range: "xsd:string".freeze,
951
951
  type: "rdf:Property".freeze
952
952
  property :captioningSource,
953
953
  comment: %(To provide information on the source of a
954
954
  captioning file.).freeze,
955
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze,
955
+ domain: "ebucore:MediaResource".freeze,
956
956
  label: "Captioning source".freeze,
957
957
  range: "xsd:string".freeze,
958
958
  type: "rdf:Property".freeze
959
959
  property :codecFamily,
960
960
  comment: %(To provide information on the product family of the Codec.).freeze,
961
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Codec".freeze,
961
+ domain: "ebucore:Codec".freeze,
962
962
  label: "Codec family".freeze,
963
963
  range: "xsd:string".freeze,
964
964
  type: "rdf:Property".freeze
965
965
  property :codecName,
966
966
  comment: %(To provide a name for the Codec, e.g. a product name.).freeze,
967
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Codec".freeze,
967
+ domain: "ebucore:Codec".freeze,
968
968
  label: "Codec name".freeze,
969
969
  range: "xsd:string".freeze,
970
970
  type: "rdf:Property".freeze
971
971
  property :codecVendor,
972
972
  comment: %(To provide a name for the vendor of the Codec.).freeze,
973
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Codec".freeze,
973
+ domain: "ebucore:Codec".freeze,
974
974
  label: "Codec vendor".freeze,
975
975
  range: "xsd:string".freeze,
976
976
  type: "rdf:Property".freeze
977
977
  property :codecVersion,
978
978
  comment: %(To provide information on the version of the Codec.).freeze,
979
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Codec".freeze,
979
+ domain: "ebucore:Codec".freeze,
980
980
  label: "Codec version".freeze,
981
981
  range: "xsd:string".freeze,
982
982
  type: "rdf:Property".freeze
983
983
  property :comments,
984
984
  comment: %(To provide a comment.).freeze,
985
985
  label: "Comments".freeze,
986
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze,
986
+ subPropertyOf: "ebucore:description".freeze,
987
987
  type: "rdf:Property".freeze
988
988
  property :contactEducation,
989
989
  comment: %(The education details of a Contact /
990
990
  person.).freeze,
991
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Contact".freeze,
991
+ domain: "ebucore:Contact".freeze,
992
992
  label: "Education".freeze,
993
993
  range: "xsd:string".freeze,
994
994
  type: "rdf:Property".freeze
995
995
  property :contactFamilyInformation,
996
996
  comment: %(Information on the family of a Contact /
997
997
  person.).freeze,
998
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Contact".freeze,
998
+ domain: "ebucore:Contact".freeze,
999
999
  label: "Family information".freeze,
1000
1000
  range: "xsd:string".freeze,
1001
1001
  type: "rdf:Property".freeze
1002
1002
  property :contactHobbies,
1003
1003
  comment: %(The hobbies of a Contact /
1004
1004
  person.).freeze,
1005
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Contact".freeze,
1005
+ domain: "ebucore:Contact".freeze,
1006
1006
  label: "Hobbies".freeze,
1007
1007
  range: "xsd:string".freeze,
1008
1008
  type: "rdf:Property".freeze
1009
1009
  property :contactMaritalStatus,
1010
1010
  comment: %(The marital status of a Contact /
1011
1011
  person.).freeze,
1012
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Contact".freeze,
1012
+ domain: "ebucore:Contact".freeze,
1013
1013
  label: "Marital status".freeze,
1014
1014
  range: "xsd:string".freeze,
1015
1015
  type: "rdf:Property".freeze
1016
1016
  property :contactOccupation,
1017
1017
  comment: %(The job / occupation name of a Contact /
1018
1018
  person.).freeze,
1019
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Contact".freeze,
1019
+ domain: "ebucore:Contact".freeze,
1020
1020
  label: "Occupation".freeze,
1021
1021
  range: "xsd:string".freeze,
1022
1022
  type: "rdf:Property".freeze
1023
1023
  property :contactUsername,
1024
1024
  comment: %(The username by which a Contact / person is
1025
1025
  known e.g. when attributing a rating value.).freeze,
1026
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Contact".freeze,
1026
+ domain: "ebucore:Contact".freeze,
1027
1027
  label: "Username".freeze,
1028
1028
  "owl:equivalentProperty" => %(foaf:nick).freeze,
1029
1029
  range: "xsd:string".freeze,
@@ -1055,7 +1055,7 @@ module RDF::Vocab
1055
1055
  like defined in http://www.ebu.ch/metadata/cs/web/ebu_DescriptionTypeCodeCS_p.xml.htm
1056
1056
  implemented as examples as e.g. 'summary' or
1057
1057
  'script'.).freeze,
1058
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze,
1058
+ domain: "ebucore:BusinessObject".freeze,
1059
1059
  label: "Description".freeze,
1060
1060
  "owl:equivalentProperty" => %(ma:description).freeze,
1061
1061
  subPropertyOf: "dc11:description".freeze,
@@ -1068,7 +1068,7 @@ module RDF::Vocab
1068
1068
  property :dopesheet,
1069
1069
  comment: %(To provide a dopesheet with a title and brief description for news.).freeze,
1070
1070
  label: "Dopesheet".freeze,
1071
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze,
1071
+ subPropertyOf: "ebucore:description".freeze,
1072
1072
  type: "rdf:Property".freeze
1073
1073
  property :duration,
1074
1074
  comment: %(To provide information on the duration of a MediaResource. It corresponds to 'duration' in the
@@ -1082,7 +1082,7 @@ module RDF::Vocab
1082
1082
  time.).freeze,
1083
1083
  label: "Duration (time)".freeze,
1084
1084
  range: "xsd:time".freeze,
1085
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#duration".freeze,
1085
+ subPropertyOf: "ebucore:duration".freeze,
1086
1086
  type: "rdf:Property".freeze
1087
1087
  property :durationNumberEditUnit,
1088
1088
  comment: %(To provide a duration as a number of EditUnits
@@ -1090,11 +1090,11 @@ module RDF::Vocab
1090
1090
  rate.).freeze,
1091
1091
  label: "Duration (edit units)".freeze,
1092
1092
  range: "xsd:double".freeze,
1093
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#duration".freeze,
1093
+ subPropertyOf: "ebucore:duration".freeze,
1094
1094
  type: "rdf:Property".freeze
1095
1095
  property :durationPublished,
1096
1096
  comment: %(To provide information on the published / announced duration of an EditorialObject.).freeze,
1097
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze,
1097
+ domain: "ebucore:EditorialObject".freeze,
1098
1098
  label: "Published Duration".freeze,
1099
1099
  range: "rdfs:Literal".freeze,
1100
1100
  type: "rdf:Property".freeze
@@ -1103,7 +1103,7 @@ module RDF::Vocab
1103
1103
  time.).freeze,
1104
1104
  label: "Published duration (time)".freeze,
1105
1105
  range: "xsd:dateTime".freeze,
1106
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#durationPublished".freeze,
1106
+ subPropertyOf: "ebucore:durationPublished".freeze,
1107
1107
  type: "rdf:Property".freeze
1108
1108
  property :durationPublishedNumberEditUnit,
1109
1109
  comment: %(To provide a published duration as a number of EditUnits
@@ -1111,43 +1111,43 @@ module RDF::Vocab
1111
1111
  rate.).freeze,
1112
1112
  label: "Published duration (edit units)".freeze,
1113
1113
  range: "xsd:double".freeze,
1114
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#durationPublished".freeze,
1114
+ subPropertyOf: "ebucore:durationPublished".freeze,
1115
1115
  type: "rdf:Property".freeze
1116
1116
  property :durationPublishedTimecode,
1117
1117
  comment: %(The published duration expressed as a
1118
1118
  timecode.).freeze,
1119
1119
  label: "Published duration (timecode)".freeze,
1120
1120
  range: "xsd:string".freeze,
1121
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#durationPublished".freeze,
1121
+ subPropertyOf: "ebucore:durationPublished".freeze,
1122
1122
  type: "rdf:Property".freeze
1123
1123
  property :durationTimecode,
1124
1124
  comment: %(The duration expressed as a
1125
1125
  timecode.).freeze,
1126
1126
  label: "Duration (timecode)".freeze,
1127
1127
  range: "xsd:string".freeze,
1128
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#duration".freeze,
1128
+ subPropertyOf: "ebucore:duration".freeze,
1129
1129
  type: "rdf:Property".freeze
1130
1130
  property :editUnit,
1131
1131
  comment: %(The edit unit is e.g. the inverse of the audio
1132
1132
  sample rate or video frame rate.).freeze,
1133
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze,
1133
+ domain: "ebucore:MediaResource".freeze,
1134
1134
  label: "Edit unit".freeze,
1135
1135
  range: "xsd:float".freeze,
1136
1136
  type: "rdf:Property".freeze
1137
1137
  property :encodingLevel,
1138
1138
  comment: %(The encoding level.).freeze,
1139
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
1139
+ domain: "ebucore:Resource".freeze,
1140
1140
  label: "Encoding level".freeze,
1141
1141
  type: "rdf:Property".freeze
1142
1142
  property :encodingProfile,
1143
1143
  comment: %(The encoding profile).freeze,
1144
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
1144
+ domain: "ebucore:Resource".freeze,
1145
1145
  label: "Encoding profile".freeze,
1146
1146
  type: "rdf:Property".freeze
1147
1147
  property :end,
1148
1148
  comment: %(The start point of the media
1149
1149
  resource.).freeze,
1150
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze,
1150
+ domain: "ebucore:MediaResource".freeze,
1151
1151
  label: "End time".freeze,
1152
1152
  range: "rdfs:Literal".freeze,
1153
1153
  type: "rdf:Property".freeze
@@ -1156,50 +1156,50 @@ module RDF::Vocab
1156
1156
  expression.).freeze,
1157
1157
  label: "End time (time)".freeze,
1158
1158
  range: "xsd:time".freeze,
1159
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#end".freeze,
1159
+ subPropertyOf: "ebucore:end".freeze,
1160
1160
  type: "rdf:Property".freeze
1161
1161
  property :endNumberEditUnits,
1162
1162
  comment: %(A start time expressed as a number of edit
1163
1163
  units.).freeze,
1164
1164
  label: "End time (edit units)".freeze,
1165
1165
  range: "xsd:double".freeze,
1166
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#end".freeze,
1166
+ subPropertyOf: "ebucore:end".freeze,
1167
1167
  type: "rdf:Property".freeze
1168
1168
  property :endTimecode,
1169
1169
  comment: %(A start time expressed as
1170
1170
  timecode.).freeze,
1171
1171
  label: "End time (timecode)".freeze,
1172
1172
  range: "xsd:string".freeze,
1173
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#end".freeze,
1173
+ subPropertyOf: "ebucore:end".freeze,
1174
1174
  type: "rdf:Property".freeze
1175
1175
  property :eventDescription,
1176
1176
  comment: %(To provide a deescription for an
1177
1177
  Event.).freeze,
1178
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze,
1178
+ domain: "ebucore:Event".freeze,
1179
1179
  label: "Description".freeze,
1180
1180
  range: "xsd:string".freeze,
1181
1181
  type: "rdf:Property".freeze
1182
1182
  property :eventDuration,
1183
1183
  comment: %(The duration of an event.).freeze,
1184
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze,
1184
+ domain: "ebucore:Event".freeze,
1185
1185
  label: "Duration".freeze,
1186
1186
  range: "xsd:duration".freeze,
1187
1187
  type: "rdf:Property".freeze
1188
1188
  property :eventEndDate,
1189
1189
  comment: %(The end date of an Event.).freeze,
1190
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze,
1190
+ domain: "ebucore:Event".freeze,
1191
1191
  label: "Event end date".freeze,
1192
1192
  range: "xsd:string".freeze,
1193
1193
  type: "rdf:Property".freeze
1194
1194
  property :eventName,
1195
1195
  comment: %(To provide a name for an Event.).freeze,
1196
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze,
1196
+ domain: "ebucore:Event".freeze,
1197
1197
  label: "Event name".freeze,
1198
1198
  range: "xsd:string".freeze,
1199
1199
  type: "rdf:Property".freeze
1200
1200
  property :eventStartDate,
1201
1201
  comment: %(The start date of an Event.).freeze,
1202
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze,
1202
+ domain: "ebucore:Event".freeze,
1203
1203
  label: "Event start date".freeze,
1204
1204
  range: "xsd:string".freeze,
1205
1205
  type: "rdf:Property".freeze
@@ -1207,26 +1207,26 @@ module RDF::Vocab
1207
1207
  comment: %(To provide a family name / last name.).freeze,
1208
1208
  label: "Family name".freeze,
1209
1209
  "owl:equivalentProperty" => %(foaf:familyName).freeze,
1210
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentName".freeze,
1210
+ subPropertyOf: "ebucore:agentName".freeze,
1211
1211
  type: "rdf:Property".freeze
1212
1212
  property :fictitious,
1213
1213
  comment: %(A flag to indicate if an agent of fictitious
1214
1214
  \(set to true\).).freeze,
1215
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
1215
+ domain: "ebucore:Agent".freeze,
1216
1216
  label: "Fictitious agent indicator".freeze,
1217
1217
  range: "xsd:boolean".freeze,
1218
1218
  type: "rdf:Property".freeze
1219
1219
  property :fileSize,
1220
1220
  comment: %(to provide the size of a MediaResource in
1221
1221
  bytes.).freeze,
1222
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
1222
+ domain: "ebucore:Resource".freeze,
1223
1223
  label: "File size".freeze,
1224
1224
  range: "xsd:double".freeze,
1225
1225
  type: "rdf:Property".freeze
1226
1226
  property :filename,
1227
1227
  comment: %(The name of the file containing the
1228
1228
  Resource.).freeze,
1229
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
1229
+ domain: "ebucore:Resource".freeze,
1230
1230
  label: "File name".freeze,
1231
1231
  range: "xsd:string".freeze,
1232
1232
  type: "rdf:Property".freeze
@@ -1238,7 +1238,7 @@ module RDF::Vocab
1238
1238
  property :frameRate,
1239
1239
  comment: %(The frame rate of the video signal in frame per
1240
1240
  second.).freeze,
1241
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#VideoTrack".freeze,
1241
+ domain: "ebucore:VideoTrack".freeze,
1242
1242
  label: "Frame rate".freeze,
1243
1243
  "owl:equivalentProperty" => %(ma:frameRate).freeze,
1244
1244
  range: "xsd:double".freeze,
@@ -1246,14 +1246,14 @@ module RDF::Vocab
1246
1246
  property :frameSizeUnit,
1247
1247
  comment: %(The unit used to express the frame width or
1248
1248
  height. The unit by default is 'pixel'.).freeze,
1249
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#VideoTrack".freeze,
1249
+ domain: "ebucore:VideoTrack".freeze,
1250
1250
  label: "Frame size unit".freeze,
1251
1251
  "owl:equivalentProperty" => %(ma:frameSizeUnit).freeze,
1252
1252
  range: "xsd:string".freeze,
1253
1253
  type: "rdf:Property".freeze
1254
1254
  property :frequency,
1255
1255
  comment: %(To provide the frequency of an AudioChannel filter).freeze,
1256
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioChannel".freeze,
1256
+ domain: "ebucore:AudioChannel".freeze,
1257
1257
  label: "Frequency".freeze,
1258
1258
  range: "xsd:integer".freeze,
1259
1259
  type: "rdf:Property".freeze
@@ -1261,37 +1261,37 @@ module RDF::Vocab
1261
1261
  comment: %(To provide one or more given names.).freeze,
1262
1262
  label: "Given name".freeze,
1263
1263
  "owl:equivalentProperty" => %(foaf:givenName).freeze,
1264
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentName".freeze,
1264
+ subPropertyOf: "ebucore:agentName".freeze,
1265
1265
  type: "rdf:Property".freeze
1266
1266
  property :groupDescription,
1267
1267
  comment: %(A textual description of a
1268
1268
  Group.).freeze,
1269
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze,
1269
+ domain: "ebucore:Group".freeze,
1270
1270
  label: "Group description".freeze,
1271
1271
  range: "xsd:string".freeze,
1272
1272
  type: "rdf:Property".freeze
1273
1273
  property :groupName,
1274
1274
  comment: %(The name attributed to a Group.).freeze,
1275
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze,
1275
+ domain: "ebucore:Group".freeze,
1276
1276
  label: "Group name".freeze,
1277
1277
  range: "xsd:string".freeze,
1278
1278
  type: "rdf:Property".freeze
1279
1279
  property :hasAffiliation,
1280
1280
  comment: %(A property to establish the relation between a
1281
1281
  Contact/person and an Organisation.).freeze,
1282
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Contact".freeze,
1282
+ domain: "ebucore:Contact".freeze,
1283
1283
  label: "Affiliation".freeze,
1284
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Affiliation".freeze,
1284
+ range: "ebucore:Affiliation".freeze,
1285
1285
  type: "rdf:Property".freeze
1286
1286
  property :hasAncillaryData,
1287
1287
  comment: %(A property to signal the presence of
1288
1288
  AncillaryData associated with the EditorialObject and / or MediaResource.).freeze,
1289
1289
  label: "Ancillary data".freeze,
1290
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AncillaryData".freeze,
1290
+ range: "ebucore:AncillaryData".freeze,
1291
1291
  type: "rdf:Property".freeze
1292
1292
  property :hasAncillaryDataFormat,
1293
1293
  label: "Ancillary data format".freeze,
1294
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasDataFormat".freeze,
1294
+ subPropertyOf: "ebucore:hasDataFormat".freeze,
1295
1295
  type: "rdf:Property".freeze
1296
1296
  property :hasAnnotation,
1297
1297
  comment: %(A property to signal the presence of Annotation
@@ -1301,58 +1301,58 @@ module RDF::Vocab
1301
1301
  property :hasAnnotationSource,
1302
1302
  comment: %(To identify the Agent, Contact/person or
1303
1303
  Organisation who has provided the Annotation.).freeze,
1304
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze,
1304
+ domain: "ebucore:Annotation".freeze,
1305
1305
  label: "Annotation Source".freeze,
1306
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
1306
+ range: "ebucore:Agent".freeze,
1307
1307
  type: "rdf:Property".freeze
1308
1308
  property :hasAudioEncodingFormat,
1309
1309
  label: "Audio encoding format".freeze,
1310
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasEncodingFormat".freeze,
1310
+ subPropertyOf: "ebucore:hasEncodingFormat".freeze,
1311
1311
  type: "rdf:Property".freeze
1312
1312
  property :hasAudioFormat,
1313
1313
  label: "Audio format".freeze,
1314
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze,
1314
+ subPropertyOf: "ebucore:hasFormat".freeze,
1315
1315
  type: "rdf:Property".freeze
1316
1316
  property :hasCaptioning,
1317
1317
  comment: %(To signal the presence of
1318
1318
  Captioning.).freeze,
1319
1319
  label: "Captioning".freeze,
1320
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Captioning".freeze,
1320
+ range: "ebucore:Captioning".freeze,
1321
1321
  type: "rdf:Property".freeze
1322
1322
  property :hasCaptioningFormat,
1323
1323
  label: "Captioning format".freeze,
1324
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasDataFormat".freeze,
1324
+ subPropertyOf: "ebucore:hasDataFormat".freeze,
1325
1325
  type: "rdf:Property".freeze
1326
1326
  property :hasCastRole,
1327
1327
  comment: %(To define the roles involved in the creation of or related to the BusinessObject. The Role acts as a link to the Agent fulfilling that function.).freeze,
1328
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze,
1328
+ domain: "ebucore:BusinessObject".freeze,
1329
1329
  label: "Cast role".freeze,
1330
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Role".freeze,
1330
+ range: "ebucore:Role".freeze,
1331
1331
  type: "rdf:Property".freeze
1332
1332
  property :hasCodec,
1333
1333
  comment: %(To identify the Codec with which the Resource has been encoded.).freeze,
1334
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
1334
+ domain: "ebucore:Resource".freeze,
1335
1335
  label: "Encoder".freeze,
1336
1336
  "owl:equivalentProperty" => %(ma:hasCompression).freeze,
1337
1337
  type: "rdf:Property".freeze
1338
1338
  property :hasColourSpace,
1339
1339
  label: "Colour space".freeze,
1340
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze,
1340
+ subPropertyOf: "ebucore:hasFormat".freeze,
1341
1341
  type: "rdf:Property".freeze
1342
1342
  property :hasContact,
1343
1343
  comment: %(To provide information on a Contact for an
1344
1344
  Organisation or a physical person \(e.g. the agent of an actor\).).freeze,
1345
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
1345
+ domain: "ebucore:Agent".freeze,
1346
1346
  label: "Contact".freeze,
1347
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Contact".freeze,
1347
+ range: "ebucore:Contact".freeze,
1348
1348
  type: "rdf:Property".freeze
1349
1349
  property :hasContainerFormat,
1350
1350
  label: "Container format".freeze,
1351
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze,
1351
+ subPropertyOf: "ebucore:hasFormat".freeze,
1352
1352
  type: "rdf:Property".freeze
1353
1353
  property :hasContainerMimeType,
1354
1354
  label: "Mime type".freeze,
1355
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze,
1355
+ subPropertyOf: "ebucore:hasFormat".freeze,
1356
1356
  type: "rdf:Property".freeze
1357
1357
  property :hasContributor,
1358
1358
  comment: %(To provide information on Contacts/persons or
@@ -1363,7 +1363,7 @@ module RDF::Vocab
1363
1363
  type: "rdf:Property".freeze
1364
1364
  property :hasCoverage,
1365
1365
  comment: %(A property to identify the Events and or
1366
- Locations, all real or fictional, covered by the
1366
+ Locations, all real or fictional, covered by the
1367
1367
  BusinessObject.).freeze,
1368
1368
  label: "Coverage".freeze,
1369
1369
  "owl:equivalentProperty" => %(ma:hasRelatedLocation).freeze,
@@ -1372,7 +1372,7 @@ module RDF::Vocab
1372
1372
  property :hasCreationLocation,
1373
1373
  comment: %(The Location where content has been created.).freeze,
1374
1374
  label: "Creation location".freeze,
1375
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze,
1375
+ range: "ebucore:Location".freeze,
1376
1376
  subPropertyOf: "dc11:coverage".freeze,
1377
1377
  type: "rdf:Property".freeze
1378
1378
  property :hasCreator,
@@ -1383,48 +1383,48 @@ module RDF::Vocab
1383
1383
  type: "rdf:Property".freeze
1384
1384
  property :hasDataFormat,
1385
1385
  label: "Data format".freeze,
1386
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze,
1386
+ subPropertyOf: "ebucore:hasFormat".freeze,
1387
1387
  type: "rdf:Property".freeze
1388
1388
  property :hasDepartment,
1389
1389
  comment: %(To identify Departments within an
1390
1390
  Organisation.).freeze,
1391
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze,
1391
+ domain: "ebucore:Organisation".freeze,
1392
1392
  label: "Department".freeze,
1393
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Department".freeze,
1393
+ range: "ebucore:Department".freeze,
1394
1394
  type: "rdf:Property".freeze
1395
1395
  property :hasDocumentFormat,
1396
1396
  label: "has document format".freeze,
1397
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze,
1397
+ subPropertyOf: "ebucore:hasFormat".freeze,
1398
1398
  type: "rdf:Property".freeze
1399
1399
  property :hasDopesheet,
1400
1400
  comment: %(To associate a Dopesheet with a NewsItem.).freeze,
1401
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#NewsItem".freeze,
1401
+ domain: "ebucore:NewsItem".freeze,
1402
1402
  label: "Dopesheet".freeze,
1403
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Dopesheet".freeze,
1403
+ range: "ebucore:Dopesheet".freeze,
1404
1404
  type: "rdf:Property".freeze
1405
1405
  property :hasEncodingFormat,
1406
1406
  label: "Encoding format".freeze,
1407
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze,
1407
+ subPropertyOf: "ebucore:hasFormat".freeze,
1408
1408
  type: "rdf:Property".freeze
1409
1409
  property :hasEpisode,
1410
1410
  comment: %(To identify an episode of a
1411
1411
  Series or a Season.).freeze,
1412
1412
  label: "Episode".freeze,
1413
- "owl:inverseOf" => %(http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isEpisodeOf).freeze,
1414
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Programme".freeze,
1415
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedBusinessObject".freeze,
1413
+ "owl:inverseOf" => %(ebucore:isEpisodeOf).freeze,
1414
+ range: "ebucore:Programme".freeze,
1415
+ subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
1416
1416
  type: "rdf:Property".freeze
1417
1417
  property :hasEvent,
1418
1418
  comment: %(To associate an Event with a
1419
1419
  Location.).freeze,
1420
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze,
1420
+ domain: "ebucore:Location".freeze,
1421
1421
  label: "Event".freeze,
1422
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze,
1422
+ range: "ebucore:Event".freeze,
1423
1423
  subPropertyOf: "dc11:coverage".freeze,
1424
1424
  type: "rdf:Property".freeze
1425
1425
  property :hasFileFormat,
1426
1426
  label: "File format".freeze,
1427
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze,
1427
+ subPropertyOf: "ebucore:hasFormat".freeze,
1428
1428
  type: "rdf:Property".freeze
1429
1429
  property :hasFormat,
1430
1430
  comment: %(A property to define the Format of a Resource.).freeze,
@@ -1435,37 +1435,37 @@ module RDF::Vocab
1435
1435
  property :hasGenre,
1436
1436
  comment: %(To define a Genre/category associated to the
1437
1437
  BusinesssObject.).freeze,
1438
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze,
1438
+ domain: "ebucore:BusinessObject".freeze,
1439
1439
  label: "Genre".freeze,
1440
1440
  "owl:equivalentProperty" => %(ma:hasGenre).freeze,
1441
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasType".freeze,
1441
+ subPropertyOf: "ebucore:hasType".freeze,
1442
1442
  type: "rdf:Property".freeze
1443
1443
  property :hasHomepage,
1444
1444
  label: "Homepage".freeze,
1445
1445
  "skos:prefLabel" => %(Homepage).freeze,
1446
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedResource".freeze,
1446
+ subPropertyOf: "ebucore:hasRelatedResource".freeze,
1447
1447
  type: "rdf:Property".freeze
1448
1448
  property :hasIdPicture,
1449
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Contact".freeze,
1449
+ domain: "ebucore:Contact".freeze,
1450
1450
  label: "Id picture".freeze,
1451
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Picture".freeze,
1451
+ range: "ebucore:Picture".freeze,
1452
1452
  "skos:prefLabel" => %(Id picture).freeze,
1453
1453
  type: "rdf:Property".freeze
1454
1454
  property :hasImageFormat,
1455
1455
  label: "Image format".freeze,
1456
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze,
1456
+ subPropertyOf: "ebucore:hasFormat".freeze,
1457
1457
  type: "rdf:Property".freeze
1458
1458
  property :hasKeyCareerEvent,
1459
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
1459
+ domain: "ebucore:Agent".freeze,
1460
1460
  label: "Career event".freeze,
1461
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#KeyCareerEvent".freeze,
1462
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedEvent".freeze,
1461
+ range: "ebucore:KeyCareerEvent".freeze,
1462
+ subPropertyOf: "ebucore:hasRelatedEvent".freeze,
1463
1463
  type: "rdf:Property".freeze
1464
1464
  property :hasKeyPersonalEvent,
1465
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
1465
+ domain: "ebucore:Agent".freeze,
1466
1466
  label: "Personal event".freeze,
1467
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#KeyPersonalEvent".freeze,
1468
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedEvent".freeze,
1467
+ range: "ebucore:KeyPersonalEvent".freeze,
1468
+ subPropertyOf: "ebucore:hasRelatedEvent".freeze,
1469
1469
  type: "rdf:Property".freeze
1470
1470
  property :hasKeyword,
1471
1471
  comment: %(To associate a concept, descriptive phrase or
@@ -1487,7 +1487,7 @@ module RDF::Vocab
1487
1487
  type: "rdf:Property".freeze
1488
1488
  property :hasLocation,
1489
1489
  comment: %(To associate a Location with a BusinessObject.).freeze,
1490
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze,
1490
+ domain: "ebucore:Event".freeze,
1491
1491
  label: "Location".freeze,
1492
1492
  subPropertyOf: "dc11:coverage".freeze,
1493
1493
  type: "rdf:Property".freeze
@@ -1495,78 +1495,78 @@ module RDF::Vocab
1495
1495
  comment: %(Logos can be used in a variety of contexts.
1496
1496
  Logo can be associated with an Organisation or a Service or a PublicationChannel.).freeze,
1497
1497
  label: "Logo".freeze,
1498
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Logo".freeze,
1498
+ range: "ebucore:Logo".freeze,
1499
1499
  type: "rdf:Property".freeze
1500
1500
  property :hasMediaFragment,
1501
1501
  comment: %(To define Parts \(segments, fragments, etc.\)
1502
1502
  withiin a MediaResource.).freeze,
1503
1503
  label: "Part".freeze,
1504
1504
  "owl:equivalentProperty" => %(ma:hasFragment).freeze,
1505
- "owl:inverseOf" => %(http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isMediaFragmentOf).freeze,
1506
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaFragment".freeze,
1507
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedResource".freeze,
1505
+ "owl:inverseOf" => %(ebucore:isMediaFragmentOf).freeze,
1506
+ range: "ebucore:MediaFragment".freeze,
1507
+ subPropertyOf: "ebucore:hasRelatedResource".freeze,
1508
1508
  type: "rdf:Property".freeze
1509
1509
  property :hasMedium,
1510
1510
  label: "Medium".freeze,
1511
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze,
1511
+ subPropertyOf: "ebucore:hasFormat".freeze,
1512
1512
  type: "rdf:Property".freeze
1513
1513
  property :hasMember,
1514
1514
  comment: %(To establish group/collection relationship between EditorialObjects.).freeze,
1515
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze,
1515
+ domain: "ebucore:Group".freeze,
1516
1516
  label: "Member.".freeze,
1517
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze,
1517
+ range: "ebucore:EditorialObject".freeze,
1518
1518
  type: "rdf:Property".freeze
1519
1519
  property :hasMetadataAttributor,
1520
1520
  comment: %(To identify the Agent \(Contact/person or
1521
1521
  Organisation\) who has created the metadata.).freeze,
1522
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Subject".freeze,
1522
+ domain: "ebucore:Subject".freeze,
1523
1523
  label: "Metadata attributor".freeze,
1524
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
1524
+ range: "ebucore:Agent".freeze,
1525
1525
  type: "rdf:Property".freeze
1526
1526
  property :hasMimeType,
1527
1527
  label: "Mime type".freeze,
1528
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze,
1528
+ subPropertyOf: "ebucore:hasFormat".freeze,
1529
1529
  type: "rdf:Property".freeze
1530
1530
  property :hasObjectType,
1531
1531
  comment: %(To define an ObjectType for the BusinessObject
1532
1532
  \(e.g. book, report, programme, clip\) if not defined as a subClass of BusinessObject.).freeze,
1533
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze,
1533
+ domain: "ebucore:BusinessObject".freeze,
1534
1534
  label: "Object/asset type".freeze,
1535
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasType".freeze,
1535
+ subPropertyOf: "ebucore:hasType".freeze,
1536
1536
  type: "rdf:Property".freeze
1537
1537
  property :hasOriginalLanguage,
1538
1538
  label: "Original language".freeze,
1539
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasLanguage".freeze,
1539
+ subPropertyOf: "ebucore:hasLanguage".freeze,
1540
1540
  type: "rdf:Property".freeze
1541
1541
  property :hasPart,
1542
1542
  comment: %(To define Parts \(segments, fragments, etc.\)
1543
1543
  within a BusinessObject.).freeze,
1544
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze,
1544
+ domain: "ebucore:EditorialObject".freeze,
1545
1545
  label: "Part".freeze,
1546
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze,
1547
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedBusinessObject".freeze,
1546
+ range: "ebucore:EditorialObject".freeze,
1547
+ subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
1548
1548
  type: "rdf:Property".freeze
1549
1549
  property :hasPictogram,
1550
1550
  comment: %(To provide a visual representation of TargetAudience or Rating.).freeze,
1551
1551
  label: "Pictogram".freeze,
1552
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Pictogram".freeze,
1552
+ range: "ebucore:Pictogram".freeze,
1553
1553
  type: "rdf:Property".freeze
1554
1554
  property :hasPublicationChannel,
1555
1555
  comment: %(To associate a PublicationEvent with a
1556
1556
  PublicationChannel.).freeze,
1557
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze,
1557
+ domain: "ebucore:PublicationEvent".freeze,
1558
1558
  label: "Publication channel".freeze,
1559
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationChannel".freeze,
1559
+ range: "ebucore:PublicationChannel".freeze,
1560
1560
  type: "rdf:Property".freeze
1561
1561
  property :hasPublicationEvent,
1562
1562
  comment: %(To associate PublicationEvents with
1563
1563
  PublicationChannels or as elements of a PublicationHistory or PublicationPlanning.).freeze,
1564
1564
  label: "Publication event".freeze,
1565
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze,
1565
+ range: "ebucore:PublicationEvent".freeze,
1566
1566
  type: "rdf:Property".freeze
1567
1567
  property :hasPublicationHistory,
1568
1568
  label: "has publication history".freeze,
1569
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationHistory".freeze,
1569
+ range: "ebucore:PublicationHistory".freeze,
1570
1570
  type: "rdf:Property".freeze
1571
1571
  property :hasPublisher,
1572
1572
  comment: %(To identify an Agent involved in the publication of the Resource or BusinessObject.).freeze,
@@ -1579,95 +1579,95 @@ module RDF::Vocab
1579
1579
  to a Resource or BusinessObject.).freeze,
1580
1580
  label: "Rating".freeze,
1581
1581
  "owl:equivalentProperty" => %(ma:hasRating).freeze,
1582
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze,
1582
+ range: "ebucore:Rating".freeze,
1583
1583
  type: "rdf:Property".freeze
1584
1584
  property :hasRatingSource,
1585
1585
  comment: %(To identify an Agent \(Contact/person or
1586
1586
  Organisation\) who has proposed a Rating.).freeze,
1587
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze,
1587
+ domain: "ebucore:Rating".freeze,
1588
1588
  label: "Rating provider".freeze,
1589
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
1589
+ range: "ebucore:Agent".freeze,
1590
1590
  type: "rdf:Property".freeze
1591
1591
  property :hasRelatedAudioChannel,
1592
1592
  comment: %(To associate an AudioChannel with an AudioPack or an AudioStream.).freeze,
1593
1593
  label: "Audio channel".freeze,
1594
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioChannel".freeze,
1595
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedResource".freeze,
1594
+ range: "ebucore:AudioChannel".freeze,
1595
+ subPropertyOf: "ebucore:hasRelatedResource".freeze,
1596
1596
  type: "rdf:Property".freeze
1597
1597
  property :hasRelatedAudioContent,
1598
1598
  comment: %(To identify the AudioContent associated with an AudioProgramme.).freeze,
1599
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioProgramme".freeze,
1599
+ domain: "ebucore:AudioProgramme".freeze,
1600
1600
  label: "Audio content".freeze,
1601
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioContent".freeze,
1602
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedBusinessObject".freeze,
1601
+ range: "ebucore:AudioContent".freeze,
1602
+ subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
1603
1603
  type: "rdf:Property".freeze
1604
1604
  property :hasRelatedAudioObject,
1605
1605
  comment: %(To identify AudioObjects associated with AudioContent or other AudioObjects.).freeze,
1606
1606
  label: "Audio object".freeze,
1607
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedBusinessObject".freeze,
1607
+ subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
1608
1608
  type: "rdf:Property".freeze
1609
1609
  property :hasRelatedAudioStream,
1610
1610
  comment: %(To associate an AudioStream with an AudioTrack.).freeze,
1611
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioTrack".freeze,
1611
+ domain: "ebucore:AudioTrack".freeze,
1612
1612
  label: "Audio stream".freeze,
1613
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioStream".freeze,
1614
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedResource".freeze,
1613
+ range: "ebucore:AudioStream".freeze,
1614
+ subPropertyOf: "ebucore:hasRelatedResource".freeze,
1615
1615
  type: "rdf:Property".freeze
1616
1616
  property :hasRelatedAudioTrack,
1617
1617
  comment: %(To associate an AudioTrack with an AudioStream or an AudioTrackUID.).freeze,
1618
1618
  label: "Audio track".freeze,
1619
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioTrack".freeze,
1620
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedResource".freeze,
1619
+ range: "ebucore:AudioTrack".freeze,
1620
+ subPropertyOf: "ebucore:hasRelatedResource".freeze,
1621
1621
  type: "rdf:Property".freeze
1622
1622
  property :hasRelatedBusinessObject,
1623
1623
  comment: %(EditorialObjects can be related to other BusinessOjects, Assets \(and associated rights\), PublicationEvents\(defined when commissioning the EditorialObject before it is instantiated as a Resource \(manifestation\), or Resources, or Ratings.).freeze,
1624
1624
  label: "Editorial object".freeze,
1625
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze,
1625
+ range: "ebucore:BusinessObject".freeze,
1626
1626
  subPropertyOf: "dc11:relation".freeze,
1627
1627
  type: "rdf:Property".freeze
1628
1628
  property :hasRelatedEvent,
1629
1629
  label: "has related event".freeze,
1630
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Event".freeze,
1630
+ range: "ebucore:Event".freeze,
1631
1631
  subPropertyOf: "dc11:relation".freeze,
1632
1632
  type: "rdf:Property".freeze
1633
1633
  property :hasRelatedImage,
1634
1634
  comment: %(To associate an Image with a BusinessObject.).freeze,
1635
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze,
1635
+ domain: "ebucore:BusinessObject".freeze,
1636
1636
  label: "Image".freeze,
1637
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Image".freeze,
1638
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedBusinessObject".freeze,
1637
+ range: "ebucore:Image".freeze,
1638
+ subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
1639
1639
  type: "rdf:Property".freeze
1640
1640
  property :hasRelatedLocation,
1641
1641
  label: "has related event".freeze,
1642
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze,
1642
+ range: "ebucore:Location".freeze,
1643
1643
  subPropertyOf: "dc11:relation".freeze,
1644
1644
  type: "rdf:Property".freeze
1645
1645
  property :hasRelatedMediaFragment,
1646
1646
  comment: %(To associate a Part of an EditorialObject with a MediaFragment within the association MediaResource instantiating the EditorialObject.).freeze,
1647
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Part".freeze,
1647
+ domain: "ebucore:Part".freeze,
1648
1648
  label: "Media fragment".freeze,
1649
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaFragment".freeze,
1650
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasMediaFragment".freeze,
1649
+ range: "ebucore:MediaFragment".freeze,
1650
+ subPropertyOf: "ebucore:hasMediaFragment".freeze,
1651
1651
  type: "rdf:Property".freeze
1652
1652
  property :hasRelatedPicture,
1653
1653
  comment: %(To associate a Picture with a BusinessObject or a Resource.).freeze,
1654
1654
  label: "Picture".freeze,
1655
1655
  "owl:equivalentProperty" => %(ma:hasRelatedImage).freeze,
1656
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Picture".freeze,
1657
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedResource".freeze,
1656
+ range: "ebucore:Picture".freeze,
1657
+ subPropertyOf: "ebucore:hasRelatedResource".freeze,
1658
1658
  type: "rdf:Property".freeze
1659
1659
  property :hasRelatedPublicationEvent,
1660
1660
  comment: %(To identify the PublicationEvent associated with a MediaResource \(manifestation of an EditorialObject\).).freeze,
1661
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze,
1661
+ domain: "ebucore:MediaResource".freeze,
1662
1662
  label: "Publication event".freeze,
1663
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze,
1663
+ range: "ebucore:PublicationEvent".freeze,
1664
1664
  subPropertyOf: "dc11:relation".freeze,
1665
1665
  type: "rdf:Property".freeze
1666
1666
  property :hasRelatedResource,
1667
1667
  comment: %(To identify a Resource associated with an Asset or a BusinessObject or a PublicationEvent or another Resource.).freeze,
1668
1668
  label: "Related resource".freeze,
1669
1669
  "owl:equivalentProperty" => %(ma:hasRelatedResource).freeze,
1670
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
1670
+ range: "ebucore:Resource".freeze,
1671
1671
  subPropertyOf: "dc11:relation".freeze,
1672
1672
  type: "rdf:Property".freeze
1673
1673
  property :hasRights,
@@ -1677,60 +1677,60 @@ module RDF::Vocab
1677
1677
  property :hasRightsContact,
1678
1678
  comment: %(To identify a Contact/person who can provide
1679
1679
  assistance / guidance regarding the associated Rights.).freeze,
1680
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze,
1680
+ domain: "ebucore:Rights".freeze,
1681
1681
  label: "Contact".freeze,
1682
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Contact".freeze,
1682
+ range: "ebucore:Contact".freeze,
1683
1683
  type: "rdf:Property".freeze
1684
1684
  property :hasRightsHolder,
1685
1685
  comment: %(To identify an Agent \(Contact/person or
1686
1686
  Organisation\) having/managing Rights.).freeze,
1687
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze,
1687
+ domain: "ebucore:Rights".freeze,
1688
1688
  label: "Rights holder".freeze,
1689
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
1689
+ range: "ebucore:Agent".freeze,
1690
1690
  type: "rdf:Property".freeze
1691
1691
  property :hasRole,
1692
1692
  comment: %(To define the role of an Agent \(Contact/person
1693
1693
  or Organisation\). The association in a particular context is made by declaring the hasCastRole associated with the BusinessObject.).freeze,
1694
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
1694
+ domain: "ebucore:Agent".freeze,
1695
1695
  label: "Role".freeze,
1696
1696
  type: "rdf:Property".freeze
1697
1697
  property :hasSeason,
1698
1698
  comment: %(The Season of a Series.).freeze,
1699
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Series".freeze,
1699
+ domain: "ebucore:Series".freeze,
1700
1700
  label: "Season".freeze,
1701
- "owl:inverseOf" => %(http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isSeasonOf).freeze,
1702
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Season".freeze,
1703
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedBusinessObject".freeze,
1701
+ "owl:inverseOf" => %(ebucore:isSeasonOf).freeze,
1702
+ range: "ebucore:Season".freeze,
1703
+ subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
1704
1704
  type: "rdf:Property".freeze
1705
1705
  property :hasSigning,
1706
1706
  comment: %(To identify the presence of Signing associated
1707
1707
  to the BusinessObject/Resource.).freeze,
1708
1708
  label: "Accessibility - signing".freeze,
1709
1709
  "owl:equivalentProperty" => %(ma:hasSigning).freeze,
1710
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Signing".freeze,
1710
+ range: "ebucore:Signing".freeze,
1711
1711
  type: "rdf:Property".freeze
1712
1712
  property :hasSigningFormat,
1713
1713
  label: "Signing format".freeze,
1714
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasVideoFormat".freeze,
1714
+ subPropertyOf: "ebucore:hasVideoFormat".freeze,
1715
1715
  type: "rdf:Property".freeze
1716
1716
  property :hasSource,
1717
1717
  comment: %(To identify a Resource as the source of another Resource.).freeze,
1718
1718
  label: "Source".freeze,
1719
1719
  "owl:equivalentProperty" => %(ma:hasSource).freeze,
1720
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
1720
+ range: "ebucore:Resource".freeze,
1721
1721
  subPropertyOf: "dc11:source".freeze,
1722
1722
  type: "rdf:Property".freeze
1723
1723
  property :hasStaff,
1724
1724
  comment: %(To identify staff working within an Organisation.).freeze,
1725
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Organisation".freeze,
1725
+ domain: "ebucore:Organisation".freeze,
1726
1726
  label: "Staff".freeze,
1727
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Contact".freeze,
1727
+ range: "ebucore:Contact".freeze,
1728
1728
  type: "rdf:Property".freeze
1729
1729
  property :hasStorageType,
1730
1730
  comment: %(To define a particular type of storage /
1731
1731
  repository associated with the Locator from where a Resource can be
1732
1732
  accessed.).freeze,
1733
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
1733
+ domain: "ebucore:Resource".freeze,
1734
1734
  label: "Storage type".freeze,
1735
1735
  type: "rdf:Property".freeze
1736
1736
  property :hasSubject,
@@ -1744,62 +1744,62 @@ module RDF::Vocab
1744
1744
  with the EditorialObject or MediaResource.).freeze,
1745
1745
  label: "Subtitling".freeze,
1746
1746
  "owl:equivalentProperty" => %(ma:hasSubtitling).freeze,
1747
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Subtitling".freeze,
1747
+ range: "ebucore:Subtitling".freeze,
1748
1748
  type: "rdf:Property".freeze
1749
1749
  property :hasSubtitlingFormat,
1750
1750
  label: "Subtitling format".freeze,
1751
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasDataFormat".freeze,
1751
+ subPropertyOf: "ebucore:hasDataFormat".freeze,
1752
1752
  type: "rdf:Property".freeze
1753
1753
  property :hasTargetAudience,
1754
1754
  comment: %(To associate a TargetAudience \(e.g. for
1755
1755
  parental guiddance or targeting a particular social group\) with a
1756
1756
  BusinessObject/Resource.).freeze,
1757
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze,
1757
+ domain: "ebucore:BusinessObject".freeze,
1758
1758
  label: "Target audience".freeze,
1759
1759
  "owl:equivalentProperty" => %(ma:hasTargetAudience).freeze,
1760
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasType".freeze,
1760
+ subPropertyOf: "ebucore:hasType".freeze,
1761
1761
  type: "rdf:Property".freeze
1762
1762
  property :hasTheme,
1763
1763
  label: "Theme".freeze,
1764
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasKeyword".freeze,
1764
+ subPropertyOf: "ebucore:hasKeyword".freeze,
1765
1765
  type: "rdf:Property".freeze
1766
1766
  property :hasTopic,
1767
1767
  label: "Topic".freeze,
1768
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasSubject".freeze,
1768
+ subPropertyOf: "ebucore:hasSubject".freeze,
1769
1769
  type: "rdf:Property".freeze
1770
1770
  property :hasTrack,
1771
1771
  comment: %(To associate audio/data/video tracks with a MediaResource.).freeze,
1772
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze,
1772
+ domain: "ebucore:MediaResource".freeze,
1773
1773
  label: "Track".freeze,
1774
1774
  "owl:equivalentProperty" => %(ma:hasTrack).freeze,
1775
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze,
1776
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedResource".freeze,
1775
+ range: "ebucore:Track".freeze,
1776
+ subPropertyOf: "ebucore:hasRelatedResource".freeze,
1777
1777
  type: "rdf:Property".freeze
1778
1778
  property :hasType,
1779
1779
  comment: %(To define a type of BusinessObject is not declared as a subClass of BusinessObject.).freeze,
1780
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze,
1780
+ domain: "ebucore:BusinessObject".freeze,
1781
1781
  label: "Type".freeze,
1782
1782
  subPropertyOf: "dc11:type".freeze,
1783
1783
  type: "rdf:Property".freeze
1784
1784
  property :hasVersion,
1785
1785
  comment: %(To identify another version of an Asset, BusinessObject or Resource.).freeze,
1786
1786
  label: "Version".freeze,
1787
- "owl:inverseOf" => %(http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isVersionOf).freeze,
1787
+ "owl:inverseOf" => %(ebucore:isVersionOf).freeze,
1788
1788
  subPropertyOf: "dc11:relation".freeze,
1789
1789
  type: "rdf:Property".freeze
1790
1790
  property :hasVideoEncodingFormat,
1791
1791
  label: "Video encoding format".freeze,
1792
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasEncodingFormat".freeze,
1792
+ subPropertyOf: "ebucore:hasEncodingFormat".freeze,
1793
1793
  type: "rdf:Property".freeze
1794
1794
  property :hasVideoFormat,
1795
1795
  label: "Video format".freeze,
1796
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasFormat".freeze,
1796
+ subPropertyOf: "ebucore:hasFormat".freeze,
1797
1797
  type: "rdf:Property".freeze
1798
1798
  property :hashValue,
1799
1799
  comment: %(The hash value associated to a Resource. There
1800
1800
  are different methods / algorithms to calculate hash values, which can be defined as
1801
1801
  subproperties.).freeze,
1802
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
1802
+ domain: "ebucore:Resource".freeze,
1803
1803
  label: "Hash code".freeze,
1804
1804
  range: "xsd:string".freeze,
1805
1805
  type: "rdf:Property".freeze
@@ -1807,7 +1807,7 @@ module RDF::Vocab
1807
1807
  comment: %(The height of e.g. a video frame typically
1808
1808
  expressed as a number of lines or the height of a picture/image expressed in millimeters
1809
1809
  or else.).freeze,
1810
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
1810
+ domain: "ebucore:Resource".freeze,
1811
1811
  label: "Height".freeze,
1812
1812
  "owl:equivalentProperty" => %(ma:frameHeight).freeze,
1813
1813
  range: "xsd:integer".freeze,
@@ -1815,24 +1815,24 @@ module RDF::Vocab
1815
1815
  property :heightUnit,
1816
1816
  comment: %(The unit used to measure a Height e.g. in
1817
1817
  pixels or number of lines or millimeters or else.).freeze,
1818
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
1818
+ domain: "ebucore:Resource".freeze,
1819
1819
  label: "Height unit".freeze,
1820
1820
  range: "xsd:string".freeze,
1821
1821
  type: "rdf:Property".freeze
1822
1822
  property :highPass,
1823
1823
  comment: %(The high pass frequency of the AudioChannel filter.).freeze,
1824
1824
  label: "High pass frequency".freeze,
1825
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#frequency".freeze,
1825
+ subPropertyOf: "ebucore:frequency".freeze,
1826
1826
  type: "rdf:Property".freeze
1827
1827
  property :highlights,
1828
1828
  comment: %(To provide highlights.).freeze,
1829
1829
  label: "Highlights".freeze,
1830
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze,
1830
+ subPropertyOf: "ebucore:description".freeze,
1831
1831
  type: "rdf:Property".freeze
1832
1832
  property :holdsRightsOver,
1833
1833
  comment: %(To identify a BusinessObject or Resource on
1834
1834
  which an Agent \(Contact/person or Organisation\) holds Rights.).freeze,
1835
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
1835
+ domain: "ebucore:Agent".freeze,
1836
1836
  label: "Asset, resource, object".freeze,
1837
1837
  type: "rdf:Property".freeze
1838
1838
  property :identifier,
@@ -1854,10 +1854,10 @@ module RDF::Vocab
1854
1854
  property :instantiates,
1855
1855
  comment: %(To link a particular manifestation of a
1856
1856
  BusinessObject to the corresponding Resource.).freeze,
1857
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
1857
+ domain: "ebucore:Resource".freeze,
1858
1858
  label: "Business object".freeze,
1859
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#BusinessObject".freeze,
1860
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedBusinessObject".freeze,
1859
+ range: "ebucore:BusinessObject".freeze,
1860
+ subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
1861
1861
  type: "rdf:Property".freeze
1862
1862
  property :interact,
1863
1863
  comment: %(A flag to indicate if the user can interact woith the content.).freeze,
@@ -1866,56 +1866,56 @@ module RDF::Vocab
1866
1866
  type: "rdf:Property".freeze
1867
1867
  property :isAgent,
1868
1868
  comment: %(To identify a Contact/person or Organisation as part of a cast list.).freeze,
1869
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Cast".freeze,
1869
+ domain: "ebucore:Cast".freeze,
1870
1870
  label: "Agent".freeze,
1871
1871
  type: "rdf:Property".freeze
1872
1872
  property :isCharacter,
1873
1873
  comment: %(To identify the character personified by a Cast individual.).freeze,
1874
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Cast".freeze,
1874
+ domain: "ebucore:Cast".freeze,
1875
1875
  label: "Character".freeze,
1876
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Character".freeze,
1876
+ range: "ebucore:Character".freeze,
1877
1877
  type: "rdf:Property".freeze
1878
1878
  property :isCopyrightedBy,
1879
1879
  comment: %(Copyright statement.).freeze,
1880
1880
  label: "Copyright".freeze,
1881
1881
  "owl:equivalentProperty" => %(ma:isCopyrightedBy).freeze,
1882
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRights".freeze,
1882
+ subPropertyOf: "ebucore:hasRights".freeze,
1883
1883
  type: "rdf:Property".freeze
1884
1884
  property :isCoveredBy,
1885
1885
  comment: %(The Rights or policy applicable to the
1886
1886
  BusinessObject, Asset, Resource or PublicationEvent.).freeze,
1887
1887
  label: "Rights".freeze,
1888
1888
  "owl:equivalentProperty" => [%(ma:hasPolicy).freeze, %(ma:hasPermissions).freeze],
1889
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRights".freeze,
1889
+ subPropertyOf: "ebucore:hasRights".freeze,
1890
1890
  type: "rdf:Property".freeze
1891
1891
  property :isEpisodeOf,
1892
1892
  comment: %(The Episode of a Series or a Season.).freeze,
1893
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Programme".freeze,
1893
+ domain: "ebucore:Programme".freeze,
1894
1894
  label: "Parent season".freeze,
1895
- "owl:inverseOf" => %(http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasEpisode).freeze,
1896
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedBusinessObject".freeze,
1895
+ "owl:inverseOf" => %(ebucore:hasEpisode).freeze,
1896
+ subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
1897
1897
  type: "rdf:Property".freeze
1898
1898
  property :isFictitiousContact,
1899
1899
  comment: %(To identify Contact/persons being fictitious.).freeze,
1900
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Character".freeze,
1900
+ domain: "ebucore:Character".freeze,
1901
1901
  label: "Fictitious contact".freeze,
1902
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Contact".freeze,
1902
+ range: "ebucore:Contact".freeze,
1903
1903
  type: "rdf:Property".freeze
1904
1904
  property :isMediaFragmentOf,
1905
1905
  comment: %(To identify the MediaResource to which the MediaFragment belongs to.).freeze,
1906
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaFragment".freeze,
1906
+ domain: "ebucore:MediaFragment".freeze,
1907
1907
  label: "Source".freeze,
1908
1908
  "owl:equivalentProperty" => %(ma:isFragmentOf).freeze,
1909
- "owl:inverseOf" => %(http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasMediaFragment).freeze,
1910
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze,
1911
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedResource".freeze,
1909
+ "owl:inverseOf" => %(ebucore:hasMediaFragment).freeze,
1910
+ range: "ebucore:MediaResource".freeze,
1911
+ subPropertyOf: "ebucore:hasRelatedResource".freeze,
1912
1912
  type: "rdf:Property".freeze
1913
1913
  property :isMemberOf,
1914
1914
  comment: %(To identify a Group to which an EidtorialObject is a member of.).freeze,
1915
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EditorialObject".freeze,
1915
+ domain: "ebucore:EditorialObject".freeze,
1916
1916
  label: "Member of".freeze,
1917
- "owl:inverseOf" => %(http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasMember).freeze,
1918
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Group".freeze,
1917
+ "owl:inverseOf" => %(ebucore:hasMember).freeze,
1918
+ range: "ebucore:Group".freeze,
1919
1919
  subPropertyOf: "dc11:relation".freeze,
1920
1920
  type: "rdf:Property".freeze
1921
1921
  property :isNextInSequence,
@@ -1926,17 +1926,17 @@ module RDF::Vocab
1926
1926
  property :isOperatedBy,
1927
1927
  comment: %(To identify the Service that operates the
1928
1928
  PublicationChannel.).freeze,
1929
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationChannel".freeze,
1929
+ domain: "ebucore:PublicationChannel".freeze,
1930
1930
  label: "Operator, owner".freeze,
1931
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze,
1931
+ range: "ebucore:Service".freeze,
1932
1932
  subPropertyOf: "dc11:relation".freeze,
1933
1933
  type: "rdf:Property".freeze
1934
1934
  property :isOwnedBy,
1935
1935
  comment: %(To identify the Agent \(Contact/person or
1936
1936
  Organisation\) who owns a Service operating a PublicationChannel.).freeze,
1937
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze,
1937
+ domain: "ebucore:Service".freeze,
1938
1938
  label: "Owner".freeze,
1939
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
1939
+ range: "ebucore:Agent".freeze,
1940
1940
  subPropertyOf: "dc11:relation".freeze,
1941
1941
  type: "rdf:Property".freeze
1942
1942
  property :isReferencedBy,
@@ -1963,35 +1963,35 @@ module RDF::Vocab
1963
1963
  type: "rdf:Property".freeze
1964
1964
  property :isSeasonOf,
1965
1965
  comment: %(The Season of a Series.).freeze,
1966
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Season".freeze,
1966
+ domain: "ebucore:Season".freeze,
1967
1967
  label: "Parent Series".freeze,
1968
- "owl:inverseOf" => %(http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasSeason).freeze,
1969
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Series".freeze,
1970
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasRelatedBusinessObject".freeze,
1968
+ "owl:inverseOf" => %(ebucore:hasSeason).freeze,
1969
+ range: "ebucore:Series".freeze,
1970
+ subPropertyOf: "ebucore:hasRelatedBusinessObject".freeze,
1971
1971
  type: "rdf:Property".freeze
1972
1972
  property :isVersionOf,
1973
1973
  comment: %(To identify related versions.).freeze,
1974
1974
  label: "Version of".freeze,
1975
- "owl:inverseOf" => %(http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#hasVersion).freeze,
1975
+ "owl:inverseOf" => %(ebucore:hasVersion).freeze,
1976
1976
  subPropertyOf: "dc11:relation".freeze,
1977
1977
  type: "rdf:Property".freeze
1978
1978
  property :keywordDefinition,
1979
1979
  comment: %(To provide a definition for a Keyword.).freeze,
1980
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Keyword".freeze,
1980
+ domain: "ebucore:Keyword".freeze,
1981
1981
  label: "Keyword definition".freeze,
1982
1982
  range: "xsd:string".freeze,
1983
1983
  type: "rdf:Property".freeze
1984
1984
  property :lineNumber,
1985
1985
  comment: %(To provide the number of the line on which
1986
1986
  ancillary data is being carried and the equivalent in the digital domain.).freeze,
1987
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AncillaryData".freeze,
1987
+ domain: "ebucore:AncillaryData".freeze,
1988
1988
  label: "Line number".freeze,
1989
1989
  range: "xsd:integer".freeze,
1990
1990
  type: "rdf:Property".freeze
1991
1991
  property :locationAddress,
1992
1992
  comment: %(To provide the address of a
1993
1993
  Location.).freeze,
1994
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze,
1994
+ domain: "ebucore:Location".freeze,
1995
1995
  label: "Address".freeze,
1996
1996
  range: "xsd:string".freeze,
1997
1997
  type: "rdf:Property".freeze
@@ -1999,36 +1999,36 @@ module RDF::Vocab
1999
1999
  comment: %(To provide the Area part of an
2000
2000
  Adrress.).freeze,
2001
2001
  label: "Area".freeze,
2002
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#locationAddress".freeze,
2002
+ subPropertyOf: "ebucore:locationAddress".freeze,
2003
2003
  type: "rdf:Property".freeze
2004
2004
  property :locationAddressCountry,
2005
2005
  comment: %(To provide the country name and or country
2006
2006
  code.).freeze,
2007
2007
  label: "Country".freeze,
2008
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#locationAddress".freeze,
2008
+ subPropertyOf: "ebucore:locationAddress".freeze,
2009
2009
  type: "rdf:Property".freeze
2010
2010
  property :locationAddressLine,
2011
2011
  comment: %(To write address line with e.g. the street name
2012
2012
  and number.).freeze,
2013
2013
  label: "Address line".freeze,
2014
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#locationAddress".freeze,
2014
+ subPropertyOf: "ebucore:locationAddress".freeze,
2015
2015
  type: "rdf:Property".freeze
2016
2016
  property :locationAddressLocality,
2017
2017
  comment: %(To provide the name of a city, viallge,
2018
2018
  etc.).freeze,
2019
2019
  label: "Locality".freeze,
2020
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#locationAddress".freeze,
2020
+ subPropertyOf: "ebucore:locationAddress".freeze,
2021
2021
  type: "rdf:Property".freeze
2022
2022
  property :locationAddressPostalCode,
2023
2023
  comment: %(To provide an address postal
2024
2024
  code.).freeze,
2025
2025
  label: "Postal code".freeze,
2026
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#locationAddress".freeze,
2026
+ subPropertyOf: "ebucore:locationAddress".freeze,
2027
2027
  type: "rdf:Property".freeze
2028
2028
  property :locationAltitude,
2029
2029
  comment: %(To define the altitude of a Location in
2030
2030
  meters.).freeze,
2031
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze,
2031
+ domain: "ebucore:Location".freeze,
2032
2032
  label: "Altitude".freeze,
2033
2033
  "owl:equivalentProperty" => %(ma:locationAltitude).freeze,
2034
2034
  range: "xsd:double".freeze,
@@ -2036,19 +2036,19 @@ module RDF::Vocab
2036
2036
  property :locationCoordinateSystemName,
2037
2037
  comment: %(To specify the name of the gps coordinate
2038
2038
  system used for the Location.).freeze,
2039
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze,
2039
+ domain: "ebucore:Location".freeze,
2040
2040
  label: "Coordinate system".freeze,
2041
2041
  range: "xsd:string".freeze,
2042
2042
  type: "rdf:Property".freeze
2043
2043
  property :locationDescription,
2044
2044
  comment: %(To provide a description of a particular Location.).freeze,
2045
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze,
2045
+ domain: "ebucore:Location".freeze,
2046
2046
  label: "Location description".freeze,
2047
2047
  range: "xsd:string".freeze,
2048
2048
  type: "rdf:Property".freeze
2049
2049
  property :locationLatitude,
2050
2050
  comment: %(The latitude of the Location.).freeze,
2051
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze,
2051
+ domain: "ebucore:Location".freeze,
2052
2052
  label: "Latitude".freeze,
2053
2053
  "owl:equivalentProperty" => %(ma:locationLatitude).freeze,
2054
2054
  range: "xsd:double".freeze,
@@ -2056,7 +2056,7 @@ module RDF::Vocab
2056
2056
  property :locationLongitude,
2057
2057
  comment: %(To define the longitude of the
2058
2058
  Location.).freeze,
2059
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze,
2059
+ domain: "ebucore:Location".freeze,
2060
2060
  label: "Longitude".freeze,
2061
2061
  "owl:equivalentProperty" => %(ma:locationLongitude).freeze,
2062
2062
  range: "xsd:double".freeze,
@@ -2064,27 +2064,27 @@ module RDF::Vocab
2064
2064
  property :locationName,
2065
2065
  comment: %(The name by which a Location is
2066
2066
  known.).freeze,
2067
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze,
2067
+ domain: "ebucore:Location".freeze,
2068
2068
  label: "Location name".freeze,
2069
2069
  "owl:equivalentProperty" => %(ma:locationName).freeze,
2070
2070
  range: "xsd:string".freeze,
2071
2071
  type: "rdf:Property".freeze
2072
2072
  property :locationRegion,
2073
2073
  comment: %(To provide a description of a particular region assocoated to the Location.).freeze,
2074
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Location".freeze,
2074
+ domain: "ebucore:Location".freeze,
2075
2075
  label: "Region".freeze,
2076
2076
  range: "xsd:string".freeze,
2077
2077
  type: "rdf:Property".freeze
2078
2078
  property :locator,
2079
2079
  comment: %(A locator from where the Resource can be accessed.).freeze,
2080
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
2080
+ domain: "ebucore:Resource".freeze,
2081
2081
  label: "Locator".freeze,
2082
2082
  "owl:equivalentProperty" => %(ma:locator).freeze,
2083
2083
  range: "xsd:string".freeze,
2084
2084
  type: "rdf:Property".freeze
2085
2085
  property :locatorTargetInformation,
2086
2086
  comment: %(Information about storage accessed by the locator.).freeze,
2087
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
2087
+ domain: "ebucore:Resource".freeze,
2088
2088
  label: "Target information".freeze,
2089
2089
  range: "xsd:string".freeze,
2090
2090
  type: "rdf:Property".freeze
@@ -2092,25 +2092,25 @@ module RDF::Vocab
2092
2092
  comment: %(The value for integrated loudness measured at AudioProgramme or AudioContent level.).freeze,
2093
2093
  label: "Integrated loudness".freeze,
2094
2094
  range: "xsd:float".freeze,
2095
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#loudnessParameters".freeze,
2095
+ subPropertyOf: "ebucore:loudnessParameters".freeze,
2096
2096
  type: "rdf:Property".freeze
2097
2097
  property :loudnessMaxMomentary,
2098
2098
  comment: %(The value for maximum momentary loudness measured at AudioProgramme or AudioContent level.).freeze,
2099
2099
  label: "Max momentary loudness".freeze,
2100
2100
  range: "xsd:float".freeze,
2101
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#loudnessParameters".freeze,
2101
+ subPropertyOf: "ebucore:loudnessParameters".freeze,
2102
2102
  type: "rdf:Property".freeze
2103
2103
  property :loudnessMaxTruepeak,
2104
2104
  comment: %(The value for maximum true peak loudness measured at AudioProgramme or AudioContent level.).freeze,
2105
2105
  label: "Max true peak loudness".freeze,
2106
2106
  range: "xsd:float".freeze,
2107
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#loudnessParameters".freeze,
2107
+ subPropertyOf: "ebucore:loudnessParameters".freeze,
2108
2108
  type: "rdf:Property".freeze
2109
2109
  property :loudnessMethod,
2110
2110
  comment: %(The method for loudness measurement at AudioProgramme or AudioContent level.).freeze,
2111
2111
  label: "Loudness method".freeze,
2112
2112
  range: "xsd:float".freeze,
2113
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#loudnessParameters".freeze,
2113
+ subPropertyOf: "ebucore:loudnessParameters".freeze,
2114
2114
  type: "rdf:Property".freeze
2115
2115
  property :loudnessParameters,
2116
2116
  comment: %(All the parameters for measurement of loudness at the AudioContent or AudioProgramme level.).freeze,
@@ -2121,50 +2121,50 @@ module RDF::Vocab
2121
2121
  comment: %(The loudness range measured at AudioProgramme or AudioContent level.).freeze,
2122
2122
  label: "Loudness range".freeze,
2123
2123
  range: "xsd:float".freeze,
2124
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#loudnessParameters".freeze,
2124
+ subPropertyOf: "ebucore:loudnessParameters".freeze,
2125
2125
  type: "rdf:Property".freeze
2126
2126
  property :lounessMaxShortTerm,
2127
2127
  comment: %(The maximum short term loudness measured at AudioProgramme or AudioContent level.).freeze,
2128
2128
  label: "Max short term loudness".freeze,
2129
2129
  range: "xsd:float".freeze,
2130
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#loudnessParameters".freeze,
2130
+ subPropertyOf: "ebucore:loudnessParameters".freeze,
2131
2131
  type: "rdf:Property".freeze
2132
2132
  property :lowPass,
2133
2133
  comment: %(The low pass frequency of the AudioChannel filter.).freeze,
2134
2134
  label: "Low pass frequency".freeze,
2135
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#frequency".freeze,
2135
+ subPropertyOf: "ebucore:frequency".freeze,
2136
2136
  type: "rdf:Property".freeze
2137
2137
  property :mainTitle,
2138
2138
  comment: %(To provide the main title by which the media
2139
2139
  resource is known.).freeze,
2140
2140
  label: "Main title".freeze,
2141
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#title".freeze,
2141
+ subPropertyOf: "ebucore:title".freeze,
2142
2142
  type: "rdf:Property".freeze
2143
2143
  property :mxfChannelID,
2144
2144
  comment: %(To identify an MXF channel.).freeze,
2145
2145
  label: "MXF channel ID".freeze,
2146
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#audioMXFLookup".freeze,
2146
+ subPropertyOf: "ebucore:audioMXFLookup".freeze,
2147
2147
  type: "rdf:Property".freeze
2148
2148
  property :mxfPackageUID,
2149
2149
  comment: %(To identify a MXF package.).freeze,
2150
2150
  label: "MXF package UID".freeze,
2151
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#audioMXFLookup".freeze,
2151
+ subPropertyOf: "ebucore:audioMXFLookup".freeze,
2152
2152
  type: "rdf:Property".freeze
2153
2153
  property :mxfTrackID,
2154
2154
  comment: %(To identify a MXF track.).freeze,
2155
2155
  label: "MXF track ID".freeze,
2156
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#audioMXFLookup".freeze,
2156
+ subPropertyOf: "ebucore:audioMXFLookup".freeze,
2157
2157
  type: "rdf:Property".freeze
2158
2158
  property :nameTitle,
2159
2159
  comment: %(To provide a salutation title e.g M. Ms, Dr, Pr.).freeze,
2160
2160
  label: "Salutation title".freeze,
2161
2161
  "owl:equivalentProperty" => %(foaf:title).freeze,
2162
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentName".freeze,
2162
+ subPropertyOf: "ebucore:agentName".freeze,
2163
2163
  type: "rdf:Property".freeze
2164
2164
  property :noiseFilter,
2165
2165
  comment: %(A flag to signal that a noise filter has been
2166
2166
  used.).freeze,
2167
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#VideoFormat".freeze,
2167
+ domain: "ebucore:VideoFormat".freeze,
2168
2168
  label: "Noise filter".freeze,
2169
2169
  range: "xsd:boolean".freeze,
2170
2170
  type: "rdf:Property".freeze
@@ -2175,14 +2175,14 @@ module RDF::Vocab
2175
2175
  type: "rdf:Property".freeze
2176
2176
  property :numberOfTracks,
2177
2177
  comment: %(The number of Tracks composing the MediaResource.).freeze,
2178
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze,
2178
+ domain: "ebucore:MediaResource".freeze,
2179
2179
  label: "Number of tracks".freeze,
2180
2180
  "owl:equivalentProperty" => %(ma:numberOfTracks).freeze,
2181
2181
  range: "xsd:integer".freeze,
2182
2182
  type: "rdf:Property".freeze
2183
2183
  property :objectTypeDefinition,
2184
2184
  comment: %(To provide a definition of an AudioObject type.).freeze,
2185
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#ObjectType".freeze,
2185
+ domain: "ebucore:ObjectType".freeze,
2186
2186
  label: "Audio object type definition".freeze,
2187
2187
  range: "xsd:string".freeze,
2188
2188
  type: "rdf:Property".freeze
@@ -2190,70 +2190,70 @@ module RDF::Vocab
2190
2190
  comment: %(To provide the Area part of an
2191
2191
  Address.).freeze,
2192
2192
  label: "Area code".freeze,
2193
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#officeMailAddress".freeze,
2193
+ subPropertyOf: "ebucore:officeMailAddress".freeze,
2194
2194
  type: "rdf:Property".freeze
2195
2195
  property :officeAddressCountry,
2196
2196
  comment: %(To provide the country name and or country
2197
2197
  code.).freeze,
2198
2198
  label: "Country".freeze,
2199
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#officeMailAddress".freeze,
2199
+ subPropertyOf: "ebucore:officeMailAddress".freeze,
2200
2200
  type: "rdf:Property".freeze
2201
2201
  property :officeAddressLine,
2202
2202
  comment: %(To write address line with e.g. the street name
2203
2203
  and number.).freeze,
2204
2204
  label: "Address line".freeze,
2205
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#officeMailAddress".freeze,
2205
+ subPropertyOf: "ebucore:officeMailAddress".freeze,
2206
2206
  type: "rdf:Property".freeze
2207
2207
  property :officeAddressLocality,
2208
2208
  comment: %(To provide the name of a city, village,
2209
2209
  etc.).freeze,
2210
2210
  label: "Locality".freeze,
2211
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#officeMailAddress".freeze,
2211
+ subPropertyOf: "ebucore:officeMailAddress".freeze,
2212
2212
  type: "rdf:Property".freeze
2213
2213
  property :officeAddressPostalCode,
2214
2214
  comment: %(To provide an address postal
2215
2215
  code.).freeze,
2216
2216
  label: "Postal code".freeze,
2217
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#officeMailAddress".freeze,
2217
+ subPropertyOf: "ebucore:officeMailAddress".freeze,
2218
2218
  type: "rdf:Property".freeze
2219
2219
  property :officeEmailAddress,
2220
2220
  comment: %(To provide the professional/office email
2221
2221
  address of an agent \(Contact/person or organisation\).).freeze,
2222
2222
  label: "Office email".freeze,
2223
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentEmailAddress".freeze,
2223
+ subPropertyOf: "ebucore:agentEmailAddress".freeze,
2224
2224
  type: "rdf:Property".freeze
2225
2225
  property :officeHomepage,
2226
2226
  comment: %(To provide an office/professional/company web
2227
2227
  homepage of an Agent \(Contact/person or Organisation\).).freeze,
2228
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
2228
+ domain: "ebucore:Agent".freeze,
2229
2229
  label: "Homepage (office)".freeze,
2230
2230
  "owl:equivalentProperty" => %(foaf:workplaceHomepage).freeze,
2231
2231
  range: "xsd:anyURI".freeze,
2232
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentWebHomepage".freeze,
2232
+ subPropertyOf: "ebucore:agentWebHomepage".freeze,
2233
2233
  type: "rdf:Property".freeze
2234
2234
  property :officeMailAddress,
2235
2235
  comment: %(To provide the professional / office address of
2236
2236
  an agent \(Contact/person or organisation\).).freeze,
2237
2237
  label: "Office mail address".freeze,
2238
2238
  range: "xsd:string".freeze,
2239
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentAddress".freeze,
2239
+ subPropertyOf: "ebucore:agentAddress".freeze,
2240
2240
  type: "rdf:Property".freeze
2241
2241
  property :officeMobileTelephoneNumber,
2242
2242
  comment: %(To provide the professional/office/company
2243
2243
  mobile telephone number of an agent \(Contact/person or organisation\).).freeze,
2244
2244
  label: "Mobile (office)".freeze,
2245
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentMobileTelephoneNumber".freeze,
2245
+ subPropertyOf: "ebucore:agentMobileTelephoneNumber".freeze,
2246
2246
  type: "rdf:Property".freeze
2247
2247
  property :officeTelephoneNumber,
2248
2248
  comment: %(To provide an office/professional/company
2249
2249
  telephone number of an Agent \(Contact/person or Organisation\).).freeze,
2250
2250
  label: "Telephone (office)".freeze,
2251
2251
  range: "xsd:string".freeze,
2252
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentTelephoneNumber".freeze,
2252
+ subPropertyOf: "ebucore:agentTelephoneNumber".freeze,
2253
2253
  type: "rdf:Property".freeze
2254
2254
  property :organisationName,
2255
2255
  comment: %(To provide the full name of an Organisation.).freeze,
2256
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
2256
+ domain: "ebucore:Agent".freeze,
2257
2257
  label: "Name".freeze,
2258
2258
  range: "xsd:string".freeze,
2259
2259
  type: "rdf:Property".freeze
@@ -2268,178 +2268,178 @@ module RDF::Vocab
2268
2268
  media resource e.g. in its original language.).freeze,
2269
2269
  label: "Original title".freeze,
2270
2270
  "owl:equivalentProperty" => %(ma:mainOriginalTitle).freeze,
2271
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#title".freeze,
2271
+ subPropertyOf: "ebucore:title".freeze,
2272
2272
  type: "rdf:Property".freeze
2273
2273
  property :owns,
2274
2274
  comment: %(To identify the service \(s\) that an Agent
2275
2275
  \(Contact/person or Organisation\) owns.).freeze,
2276
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
2276
+ domain: "ebucore:Agent".freeze,
2277
2277
  label: "Owns".freeze,
2278
- "owl:inverseOf" => %(http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#isOwnedBy).freeze,
2279
- range: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Service".freeze,
2278
+ "owl:inverseOf" => %(ebucore:isOwnedBy).freeze,
2279
+ range: "ebucore:Service".freeze,
2280
2280
  subPropertyOf: "dc11:relation".freeze,
2281
2281
  type: "rdf:Property".freeze
2282
2282
  property :packageByteSize,
2283
2283
  comment: %(The size of a media package in
2284
2284
  Bytes.).freeze,
2285
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
2285
+ domain: "ebucore:Resource".freeze,
2286
2286
  label: "Package size (in bytes)".freeze,
2287
2287
  range: "xsd:long".freeze,
2288
2288
  type: "rdf:Property".freeze
2289
2289
  property :packageName,
2290
2290
  comment: %(The name attributed to a
2291
2291
  package.).freeze,
2292
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
2292
+ domain: "ebucore:Resource".freeze,
2293
2293
  label: "Package name".freeze,
2294
2294
  range: "xsd:long".freeze,
2295
2295
  type: "rdf:Property".freeze
2296
2296
  property :partDefinition,
2297
2297
  comment: %(A definition associated with the Part.).freeze,
2298
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Part".freeze,
2298
+ domain: "ebucore:Part".freeze,
2299
2299
  label: "Part definition".freeze,
2300
2300
  range: "xsd:string".freeze,
2301
2301
  type: "rdf:Property".freeze
2302
2302
  property :partName,
2303
2303
  comment: %(A name by which the Part is identified.).freeze,
2304
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Part".freeze,
2304
+ domain: "ebucore:Part".freeze,
2305
2305
  label: "Part name".freeze,
2306
2306
  range: "xsd:string".freeze,
2307
2307
  type: "rdf:Property".freeze
2308
2308
  property :partNumber,
2309
2309
  comment: %(The number associated to a Part as one among
2310
2310
  many.).freeze,
2311
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Part".freeze,
2311
+ domain: "ebucore:Part".freeze,
2312
2312
  label: "Part number".freeze,
2313
2313
  range: "xsd:integer".freeze,
2314
2314
  type: "rdf:Property".freeze
2315
2315
  property :partTotalNumber,
2316
2316
  comment: %(The total number of Parts associated with a
2317
2317
  BusinessObject.).freeze,
2318
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Part".freeze,
2318
+ domain: "ebucore:Part".freeze,
2319
2319
  label: "Total number of parts".freeze,
2320
2320
  range: "xsd:integer".freeze,
2321
2321
  type: "rdf:Property".freeze
2322
2322
  property :playlist,
2323
2323
  comment: %(To describe a playlist.).freeze,
2324
2324
  label: "Playlist".freeze,
2325
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze,
2325
+ subPropertyOf: "ebucore:description".freeze,
2326
2326
  type: "rdf:Property".freeze
2327
2327
  property :privateAddressArea,
2328
2328
  comment: %(To provide the Area part of an
2329
2329
  Adrress.).freeze,
2330
2330
  label: "Area code".freeze,
2331
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#privateMailAddress".freeze,
2331
+ subPropertyOf: "ebucore:privateMailAddress".freeze,
2332
2332
  type: "rdf:Property".freeze
2333
2333
  property :privateAddressCountry,
2334
2334
  comment: %(To provide the country name and or country
2335
2335
  code.).freeze,
2336
2336
  label: "Country".freeze,
2337
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#privateMailAddress".freeze,
2337
+ subPropertyOf: "ebucore:privateMailAddress".freeze,
2338
2338
  type: "rdf:Property".freeze
2339
2339
  property :privateAddressLine,
2340
2340
  comment: %(To write address line with e.g. the street name
2341
2341
  and number.).freeze,
2342
2342
  label: "Address line".freeze,
2343
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#privateMailAddress".freeze,
2343
+ subPropertyOf: "ebucore:privateMailAddress".freeze,
2344
2344
  type: "rdf:Property".freeze
2345
2345
  property :privateAddressLocality,
2346
2346
  comment: %(To provide the name of a city, viallge,
2347
2347
  etc.).freeze,
2348
2348
  label: "Locality".freeze,
2349
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#privateMailAddress".freeze,
2349
+ subPropertyOf: "ebucore:privateMailAddress".freeze,
2350
2350
  type: "rdf:Property".freeze
2351
2351
  property :privateAddressPostalCode,
2352
2352
  comment: %(To provide an address postal
2353
2353
  code.).freeze,
2354
2354
  label: "Postal code".freeze,
2355
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#privateMailAddress".freeze,
2355
+ subPropertyOf: "ebucore:privateMailAddress".freeze,
2356
2356
  type: "rdf:Property".freeze
2357
2357
  property :privateEmailAddress,
2358
2358
  comment: %(To provide the private email address of an
2359
2359
  agent \(Contact/person\)).freeze,
2360
2360
  label: "Private email".freeze,
2361
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentEmailAddress".freeze,
2361
+ subPropertyOf: "ebucore:agentEmailAddress".freeze,
2362
2362
  type: "rdf:Property".freeze
2363
2363
  property :privateHomepage,
2364
2364
  comment: %(To provide an private web homepage of an Agent
2365
2365
  \(Contact/person\).).freeze,
2366
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
2366
+ domain: "ebucore:Agent".freeze,
2367
2367
  label: "Homepage (private)".freeze,
2368
2368
  "owl:equivalentProperty" => %(foaf:homepage).freeze,
2369
2369
  range: "xsd:anyURI".freeze,
2370
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentWebHomepage".freeze,
2370
+ subPropertyOf: "ebucore:agentWebHomepage".freeze,
2371
2371
  type: "rdf:Property".freeze
2372
2372
  property :privateMailAddress,
2373
2373
  comment: %(To provide the private / personal address of an
2374
2374
  agent \(Contact/person\).).freeze,
2375
2375
  label: "Private mail address".freeze,
2376
2376
  range: "xsd:string".freeze,
2377
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentAddress".freeze,
2377
+ subPropertyOf: "ebucore:agentAddress".freeze,
2378
2378
  type: "rdf:Property".freeze
2379
2379
  property :privateMobileTelephoneNumber,
2380
2380
  comment: %(To provide the private mobile telephone number
2381
2381
  of an agent \(Contact/person\).).freeze,
2382
2382
  label: "Mobile (private)".freeze,
2383
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentMobileTelephoneNumber".freeze,
2383
+ subPropertyOf: "ebucore:agentMobileTelephoneNumber".freeze,
2384
2384
  type: "rdf:Property".freeze
2385
2385
  property :privateTelephoneNumber,
2386
2386
  comment: %(To provide the private telephone number of an
2387
2387
  Agent \(Contact/person\).).freeze,
2388
2388
  label: "Telephone (private)".freeze,
2389
2389
  range: "xsd:string".freeze,
2390
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#agentTelephoneNumber".freeze,
2390
+ subPropertyOf: "ebucore:agentTelephoneNumber".freeze,
2391
2391
  type: "rdf:Property".freeze
2392
2392
  property :promotionalInformation,
2393
2393
  comment: %(To provide textual promotional information.).freeze,
2394
2394
  label: "Promotional information".freeze,
2395
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze,
2395
+ subPropertyOf: "ebucore:description".freeze,
2396
2396
  type: "rdf:Property".freeze
2397
2397
  property :pubStatus,
2398
2398
  comment: %(To indicate a publication status.).freeze,
2399
2399
  label: "Publication status".freeze,
2400
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze,
2400
+ subPropertyOf: "ebucore:description".freeze,
2401
2401
  type: "rdf:Property".freeze
2402
2402
  property :publicationChannelName,
2403
2403
  comment: %(To provide a name to a PublicationChannel e.g. a TV channel or website.).freeze,
2404
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationChannel".freeze,
2404
+ domain: "ebucore:PublicationChannel".freeze,
2405
2405
  label: "Publication channel name".freeze,
2406
2406
  range: "xsd:string".freeze,
2407
2407
  type: "rdf:Property".freeze
2408
2408
  property :publicationEndDateTime,
2409
2409
  comment: %(The actual end date and time of a PublicationEvent.).freeze,
2410
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze,
2410
+ domain: "ebucore:PublicationEvent".freeze,
2411
2411
  label: "Publication end date & time".freeze,
2412
2412
  range: "xsd:dateTime".freeze,
2413
2413
  type: "rdf:Property".freeze
2414
2414
  property :publicationEventName,
2415
2415
  comment: %(To provide a name to a PublicationEvent.).freeze,
2416
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze,
2416
+ domain: "ebucore:PublicationEvent".freeze,
2417
2417
  label: "Publication event name".freeze,
2418
2418
  range: "xsd:string".freeze,
2419
2419
  type: "rdf:Property".freeze
2420
2420
  property :publicationScheduleDate,
2421
2421
  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,
2422
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze,
2422
+ domain: "ebucore:PublicationEvent".freeze,
2423
2423
  label: "schedule date".freeze,
2424
2424
  range: "xsd:date".freeze,
2425
2425
  type: "rdf:Property".freeze
2426
2426
  property :publicationStartDateTime,
2427
2427
  comment: %(The actual start date and time of a PublicationEvent.).freeze,
2428
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze,
2428
+ domain: "ebucore:PublicationEvent".freeze,
2429
2429
  label: "Publication start date & time".freeze,
2430
2430
  range: "xsd:dateTime".freeze,
2431
2431
  type: "rdf:Property".freeze
2432
2432
  property :publishedEndDateTime,
2433
2433
  comment: %(The end date and time of a PublicationEvent as
2434
2434
  scheduled.).freeze,
2435
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze,
2435
+ domain: "ebucore:PublicationEvent".freeze,
2436
2436
  label: "Publication end date & time".freeze,
2437
2437
  range: "xsd:dateTime".freeze,
2438
2438
  type: "rdf:Property".freeze
2439
2439
  property :publishedStartDateTime,
2440
2440
  comment: %(The start date and time of a PublicationEvent
2441
2441
  as scheduled.).freeze,
2442
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#PublicationEvent".freeze,
2442
+ domain: "ebucore:PublicationEvent".freeze,
2443
2443
  label: "Publication start date & time".freeze,
2444
2444
  range: "xsd:dateTime".freeze,
2445
2445
  type: "rdf:Property".freeze
@@ -2452,7 +2452,7 @@ module RDF::Vocab
2452
2452
  property :ratingScaleMax,
2453
2453
  comment: %(The maximum value of the scale used for rating
2454
2454
  a media resource.).freeze,
2455
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze,
2455
+ domain: "ebucore:Rating".freeze,
2456
2456
  label: "Rating scale (top value)".freeze,
2457
2457
  "owl:equivalentProperty" => %(ma:ratingScaleMax).freeze,
2458
2458
  range: "xsd:string".freeze,
@@ -2460,21 +2460,21 @@ module RDF::Vocab
2460
2460
  property :ratingScaleMin,
2461
2461
  comment: %(The minimum value of the scale used for rating
2462
2462
  a Resource.).freeze,
2463
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze,
2463
+ domain: "ebucore:Rating".freeze,
2464
2464
  label: "Rating scale (min. value)".freeze,
2465
2465
  "owl:equivalentProperty" => %(ma:ratingScaleMin).freeze,
2466
2466
  range: "xsd:string".freeze,
2467
2467
  type: "rdf:Property".freeze
2468
2468
  property :ratingSystemEnvironment,
2469
2469
  comment: %(To identify the environment in which rating applies.).freeze,
2470
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze,
2470
+ domain: "ebucore:Rating".freeze,
2471
2471
  label: "Rating environment".freeze,
2472
2472
  "owl:equivalentProperty" => %(ma:hasRatingSystem).freeze,
2473
2473
  range: "xsd:string".freeze,
2474
2474
  type: "rdf:Property".freeze
2475
2475
  property :ratingSystemName,
2476
2476
  comment: %(To identify a rating system by its name.).freeze,
2477
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze,
2477
+ domain: "ebucore:Rating".freeze,
2478
2478
  label: "Rating system".freeze,
2479
2479
  "owl:equivalentProperty" => %(ma:hasRatingSystem).freeze,
2480
2480
  range: "xsd:string".freeze,
@@ -2482,14 +2482,14 @@ module RDF::Vocab
2482
2482
  property :ratingValue,
2483
2483
  comment: %(To express a free text rating value defined in
2484
2484
  a rating classification scheme.).freeze,
2485
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze,
2485
+ domain: "ebucore:Rating".freeze,
2486
2486
  label: "Rating".freeze,
2487
2487
  "owl:equivalentProperty" => %(ma:ratingValue).freeze,
2488
2488
  range: "xsd:string".freeze,
2489
2489
  type: "rdf:Property".freeze
2490
2490
  property :reason,
2491
2491
  comment: %(To provide a reason for which Rating as been attributed as provided.).freeze,
2492
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rating".freeze,
2492
+ domain: "ebucore:Rating".freeze,
2493
2493
  label: "Reason".freeze,
2494
2494
  range: "xsd:string".freeze,
2495
2495
  type: "rdf:Property".freeze
@@ -2502,7 +2502,7 @@ module RDF::Vocab
2502
2502
  comment: %(To define the bottom right corner of a zone on
2503
2503
  the x-axis. If present with regionDelimY, the zone definition is complemented by the
2504
2504
  associated values of the height and width.).freeze,
2505
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
2505
+ domain: "ebucore:Resource".freeze,
2506
2506
  label: "Region delimiter (x-axis)".freeze,
2507
2507
  range: "xsd:integer".freeze,
2508
2508
  type: "rdf:Property".freeze
@@ -2510,14 +2510,14 @@ module RDF::Vocab
2510
2510
  comment: %(To define the bottom right corner of a zone on
2511
2511
  the y-axis. If present with regionDelimX, the zone definition is complemented by the
2512
2512
  associated values of the height and width.).freeze,
2513
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
2513
+ domain: "ebucore:Resource".freeze,
2514
2514
  label: "Region delimiter (y-axis)".freeze,
2515
2515
  range: "xsd:integer".freeze,
2516
2516
  type: "rdf:Property".freeze
2517
2517
  property :relatedLink,
2518
2518
  comment: %(To provide a link to a web resource containing
2519
2519
  information related to an Agent \(Contact/person or Organisation\).).freeze,
2520
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Agent".freeze,
2520
+ domain: "ebucore:Agent".freeze,
2521
2521
  label: "Related resources".freeze,
2522
2522
  range: "xsd:anyURI".freeze,
2523
2523
  type: "rdf:Property".freeze
@@ -2536,38 +2536,38 @@ module RDF::Vocab
2536
2536
  like defined in http://www.ebu.ch/metadata/cs/web/ebu_DescriptionTypeCodeCS_p.xml.htm
2537
2537
  implemented as examples as e.g. 'summary' or
2538
2538
  'script'.).freeze,
2539
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#MediaResource".freeze,
2539
+ domain: "ebucore:MediaResource".freeze,
2540
2540
  label: "Resource description".freeze,
2541
2541
  subPropertyOf: "dc11:description".freeze,
2542
2542
  type: "rdf:Property".freeze
2543
2543
  property :resourceName,
2544
2544
  comment: %(A name by which the resource can be identified.).freeze,
2545
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
2545
+ domain: "ebucore:Resource".freeze,
2546
2546
  label: "Resource description".freeze,
2547
2547
  range: "xsd:string".freeze,
2548
2548
  type: "rdf:Property".freeze
2549
2549
  property :review,
2550
2550
  comment: %(To provide a text for a review.).freeze,
2551
2551
  label: "Review".freeze,
2552
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze,
2552
+ subPropertyOf: "ebucore:description".freeze,
2553
2553
  type: "rdf:Property".freeze
2554
2554
  property :rightsExpression,
2555
2555
  comment: %(The expression of Rights as free
2556
2556
  text.).freeze,
2557
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze,
2557
+ domain: "ebucore:Rights".freeze,
2558
2558
  label: "Rights expression".freeze,
2559
2559
  range: "xsd:string".freeze,
2560
2560
  type: "rdf:Property".freeze
2561
2561
  property :rightsLink,
2562
2562
  comment: %(A link to e.g. a webpage where an expression of
2563
2563
  the rights can be found and consulted.).freeze,
2564
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Rights".freeze,
2564
+ domain: "ebucore:Rights".freeze,
2565
2565
  label: "Rights web resource".freeze,
2566
2566
  range: "xsd:anyURI".freeze,
2567
2567
  type: "rdf:Property".freeze
2568
2568
  property :roleDefinition,
2569
2569
  comment: %(To provide a definition for a role).freeze,
2570
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Role".freeze,
2570
+ domain: "ebucore:Role".freeze,
2571
2571
  label: "Role definition".freeze,
2572
2572
  range: "xsd:string".freeze,
2573
2573
  type: "rdf:Property".freeze
@@ -2580,13 +2580,13 @@ module RDF::Vocab
2580
2580
  property :sampleSize,
2581
2581
  comment: %(The size of an audio sample in
2582
2582
  bits. Also called bit depth.).freeze,
2583
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioFormat".freeze,
2583
+ domain: "ebucore:AudioFormat".freeze,
2584
2584
  label: "Sample size".freeze,
2585
2585
  range: "xsd:integer".freeze,
2586
2586
  type: "rdf:Property".freeze
2587
2587
  property :sampleType,
2588
2588
  comment: %(The type of audio sample.).freeze,
2589
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AudioFormat".freeze,
2589
+ domain: "ebucore:AudioFormat".freeze,
2590
2590
  label: "Sample type".freeze,
2591
2591
  range: "xsd:string".freeze,
2592
2592
  type: "rdf:Property".freeze
@@ -2594,19 +2594,19 @@ module RDF::Vocab
2594
2594
  comment: %(To define the scanning format for a
2595
2595
  MediaResource. For video, the two main values are "interlaced" or
2596
2596
  "progressive".).freeze,
2597
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#VideoFormat".freeze,
2597
+ domain: "ebucore:VideoFormat".freeze,
2598
2598
  label: "Sampling format".freeze,
2599
2599
  range: "xsd:string".freeze,
2600
2600
  type: "rdf:Property".freeze
2601
2601
  property :script,
2602
2602
  comment: %(To provide a script.).freeze,
2603
2603
  label: "Script".freeze,
2604
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze,
2604
+ subPropertyOf: "ebucore:description".freeze,
2605
2605
  type: "rdf:Property".freeze
2606
2606
  property :signingSource,
2607
2607
  comment: %(To identify the source of the signing
2608
2608
  resource.).freeze,
2609
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Signing".freeze,
2609
+ domain: "ebucore:Signing".freeze,
2610
2610
  label: "Signing source".freeze,
2611
2611
  range: "xsd:string".freeze,
2612
2612
  type: "rdf:Property".freeze
@@ -2620,37 +2620,37 @@ module RDF::Vocab
2620
2620
  expression.).freeze,
2621
2621
  label: "Start time (time)".freeze,
2622
2622
  range: "xsd:time".freeze,
2623
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#start".freeze,
2623
+ subPropertyOf: "ebucore:start".freeze,
2624
2624
  type: "rdf:Property".freeze
2625
2625
  property :startNumberEditUnits,
2626
2626
  comment: %(A start time expressed as a number of edit
2627
2627
  units.).freeze,
2628
2628
  label: "Start time (edit units)".freeze,
2629
2629
  range: "xsd:double".freeze,
2630
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#start".freeze,
2630
+ subPropertyOf: "ebucore:start".freeze,
2631
2631
  type: "rdf:Property".freeze
2632
2632
  property :startTimecode,
2633
2633
  comment: %(A start time expressed as
2634
2634
  timecode.).freeze,
2635
2635
  label: "Start time (timecode)".freeze,
2636
2636
  range: "xsd:string".freeze,
2637
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#start".freeze,
2637
+ subPropertyOf: "ebucore:start".freeze,
2638
2638
  type: "rdf:Property".freeze
2639
2639
  property :storageDefinition,
2640
2640
  comment: %(To provide a definition for storage.).freeze,
2641
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#StorageType".freeze,
2641
+ domain: "ebucore:StorageType".freeze,
2642
2642
  label: "Storage definition".freeze,
2643
2643
  range: "xsd:string".freeze,
2644
2644
  type: "rdf:Property".freeze
2645
2645
  property :subtitle,
2646
2646
  comment: %(A complementary subtitle.).freeze,
2647
2647
  label: "Subtitle".freeze,
2648
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#alternativeTitle".freeze,
2648
+ subPropertyOf: "ebucore:alternativeTitle".freeze,
2649
2649
  type: "rdf:Property".freeze
2650
2650
  property :subtitlingSource,
2651
2651
  comment: %(To identify the source of the Subtitling
2652
2652
  resource.).freeze,
2653
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Subtitling".freeze,
2653
+ domain: "ebucore:Subtitling".freeze,
2654
2654
  label: "Subtitling source".freeze,
2655
2655
  range: "xsd:string".freeze,
2656
2656
  type: "rdf:Property".freeze
@@ -2658,29 +2658,29 @@ module RDF::Vocab
2658
2658
  comment: %(To provide a summary.).freeze,
2659
2659
  label: "Summary".freeze,
2660
2660
  range: "xsd:string".freeze,
2661
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze,
2661
+ subPropertyOf: "ebucore:description".freeze,
2662
2662
  type: "rdf:Property".freeze
2663
2663
  property :synopsis,
2664
2664
  comment: %(To provide a summary.).freeze,
2665
2665
  label: "Synopsis".freeze,
2666
2666
  range: "xsd:string".freeze,
2667
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze,
2667
+ subPropertyOf: "ebucore:description".freeze,
2668
2668
  type: "rdf:Property".freeze
2669
2669
  property :tableOfContent,
2670
2670
  comment: %(To provide a Table of Content.).freeze,
2671
2671
  label: "Table of Content".freeze,
2672
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#description".freeze,
2672
+ subPropertyOf: "ebucore:description".freeze,
2673
2673
  type: "rdf:Property".freeze
2674
2674
  property :targetAudienceSystem,
2675
2675
  comment: %(To define the system used to provide a TargetAudience.).freeze,
2676
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#audienceLevel".freeze,
2676
+ domain: "ebucore:audienceLevel".freeze,
2677
2677
  label: "Target audience system".freeze,
2678
2678
  range: "xsd:string".freeze,
2679
2679
  type: "rdf:Property".freeze
2680
2680
  property :textualAnnotation,
2681
2681
  comment: %(The value of an Annotation as free
2682
2682
  text.).freeze,
2683
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Annotation".freeze,
2683
+ domain: "ebucore:Annotation".freeze,
2684
2684
  label: "Note".freeze,
2685
2685
  range: "xsd:string".freeze,
2686
2686
  type: "rdf:Property".freeze
@@ -2699,13 +2699,13 @@ module RDF::Vocab
2699
2699
  property :trackDefinition,
2700
2700
  comment: %(To provide a definition associated to a
2701
2701
  Track.).freeze,
2702
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze,
2702
+ domain: "ebucore:Track".freeze,
2703
2703
  label: "Definition".freeze,
2704
2704
  range: "xsd:string".freeze,
2705
2705
  type: "rdf:Property".freeze
2706
2706
  property :trackName,
2707
2707
  comment: %(The name attributed to a Track.).freeze,
2708
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Track".freeze,
2708
+ domain: "ebucore:Track".freeze,
2709
2709
  label: "Track name".freeze,
2710
2710
  "owl:equivalentProperty" => %(ma:trackName).freeze,
2711
2711
  range: "xsd:string".freeze,
@@ -2713,17 +2713,17 @@ module RDF::Vocab
2713
2713
  property :translationTitle,
2714
2714
  comment: %(A translated version of the title.).freeze,
2715
2715
  label: "Translation title".freeze,
2716
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#alternativeTitle".freeze,
2716
+ subPropertyOf: "ebucore:alternativeTitle".freeze,
2717
2717
  type: "rdf:Property".freeze
2718
2718
  property :versionTitle,
2719
2719
  comment: %(An alternative title specific to a verison of content.).freeze,
2720
2720
  label: "Version title".freeze,
2721
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#alternativeTitle".freeze,
2721
+ subPropertyOf: "ebucore:alternativeTitle".freeze,
2722
2722
  type: "rdf:Property".freeze
2723
2723
  property :width,
2724
2724
  comment: %(The width of e.g. a video frame typically
2725
2725
  expressed as a number of pixels, or picture/image in millimeters.).freeze,
2726
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
2726
+ domain: "ebucore:Resource".freeze,
2727
2727
  label: "Width".freeze,
2728
2728
  "owl:equivalentProperty" => %(ma:frameWidth).freeze,
2729
2729
  range: "xsd:integer".freeze,
@@ -2731,26 +2731,26 @@ module RDF::Vocab
2731
2731
  property :widthUnit,
2732
2732
  comment: %(The unit used to measure a width e.g. in pixels
2733
2733
  or number of lines or millimeters or else.).freeze,
2734
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Resource".freeze,
2734
+ domain: "ebucore:Resource".freeze,
2735
2735
  label: "Width unit".freeze,
2736
2736
  range: "xsd:string".freeze,
2737
2737
  type: "rdf:Property".freeze
2738
2738
  property :wordCount,
2739
2739
  comment: %(The number of words contained in a
2740
2740
  document.).freeze,
2741
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Document".freeze,
2741
+ domain: "ebucore:Document".freeze,
2742
2742
  label: "Word count".freeze,
2743
2743
  range: "xsd:integer".freeze,
2744
2744
  type: "rdf:Property".freeze
2745
2745
  property :workingTitle,
2746
2746
  comment: %(A title used while content is not complete.).freeze,
2747
2747
  label: "Working title".freeze,
2748
- subPropertyOf: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#alternativeTitle".freeze,
2748
+ subPropertyOf: "ebucore:alternativeTitle".freeze,
2749
2749
  type: "rdf:Property".freeze
2750
2750
  property :wrappingType,
2751
2751
  comment: %(To provide additional information on the
2752
2752
  wrapping type of ancillary data.).freeze,
2753
- domain: "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#AncillaryData".freeze,
2753
+ domain: "ebucore:AncillaryData".freeze,
2754
2754
  label: "Wrapping type".freeze,
2755
2755
  range: "xsd:string".freeze,
2756
2756
  type: "rdf:Property".freeze