rdf-vocab 3.1.5 → 3.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +35 -14
- data/lib/rdf/vocab/bf2.rb +78 -78
- data/lib/rdf/vocab/cert.rb +1 -1
- data/lib/rdf/vocab/dc.rb +386 -0
- data/lib/rdf/vocab/dcat.rb +1 -1
- data/lib/rdf/vocab/dcmitype.rb +50 -0
- data/lib/rdf/vocab/earl.rb +1 -1
- data/lib/rdf/vocab/ebucore.rb +271 -271
- data/lib/rdf/vocab/extensions.rb +7 -3
- data/lib/rdf/vocab/geonames.rb +2 -2
- data/lib/rdf/vocab/gs1.rb +2 -2
- data/lib/rdf/vocab/ht.rb +1 -1
- data/lib/rdf/vocab/ical.rb +61 -61
- data/lib/rdf/vocab/jsonld.rb +13 -3
- data/lib/rdf/vocab/ldp.rb +3 -3
- data/lib/rdf/vocab/lrmi.rb +68 -0
- data/lib/rdf/vocab/mads.rb +9 -9
- data/lib/rdf/vocab/og.rb +22 -0
- data/lib/rdf/vocab/premis.rb +206 -206
- data/lib/rdf/vocab/prov.rb +13 -13
- data/lib/rdf/vocab/rsa.rb +1 -1
- data/lib/rdf/vocab/rss.rb +41 -0
- data/lib/rdf/vocab/schema.rb +1649 -759
- data/lib/rdf/vocab/sh.rb +1 -1
- data/lib/rdf/vocab/skos.rb +2 -2
- data/lib/rdf/vocab/xkos.rb +4 -4
- metadata +2 -2
data/lib/rdf/vocab/earl.rb
CHANGED
@@ -10,8 +10,8 @@ module RDF::Vocab
|
|
10
10
|
# #
|
11
11
|
# # Formal schema of the Evaluation and Report Language (EARL) 1.0
|
12
12
|
# # @see http://www.w3.org/TR/Pointers-in-RDF/
|
13
|
-
# # @see http://www.w3.org/WAI/intro/earl
|
14
13
|
# # @see http://www.w3.org/TR/HTTP-in-RDF/
|
14
|
+
# # @see http://www.w3.org/WAI/intro/earl
|
15
15
|
# # @see http://www.w3.org/TR/Content-in-RDF/
|
16
16
|
# class EARL < RDF::StrictVocabulary
|
17
17
|
# # a statement that embodies the results of a test
|
data/lib/rdf/vocab/ebucore.rb
CHANGED
@@ -8,45 +8,45 @@ module RDF::Vocab
|
|
8
8
|
# #
|
9
9
|
# # EBUCore - the Dublin Core for media
|
10
10
|
# #
|
11
|
-
# # Guidelines: for the purpose of flexibility and interoperability with a wider range of implementations, some properties purposefully do not have a range and accept either a resource or a literal. When a resource is used, it is recommended to reuse objects defined in the model (e.g. pair hasEvent/Event or hasRole/Role). Example 1: x hasRole 'actor'. Example 2: x hasRole _:Role_1 (a reference to the Concept identifier from a SKOS Role vocabulary defined in the ontology).
|
12
|
-
# #
|
13
|
-
# # Note to implementers: The EBUCore ontology is used by a variety of users with different needs. Several EBUCore properties have no range to allow different implementations using entities or literals. As an implementer, it is your choice to go for one or the other for each property to have consistent expectations when parsing individuals. EBUCore also provides different classes defined as subclasses of skos:Concept. You can use these classes as entities in range of several properties currently left without range. EBUCore is expressed in RDF in order to facilitate such modelling and flexibility. As a consequence, propoerties appear in the documentation as annotation properties.
|
14
|
-
# #
|
15
11
|
# # The EBUCore has been designed to make users benefit from the flexibility of RDF to adapt the names of Classes and properties to their respective needs. This means users are welcome to add their own subclasses (e.g. to define the most appropriate BusinessObjects or Resources or Agents) and subproperties.
|
16
12
|
# #
|
13
|
+
# # Guidelines: for the purpose of flexibility and interoperability with a wider range of implementations, some properties purposefully do not have a range and accept either a resource or a literal. When a resource is used, it is recommended to reuse objects defined in the model (e.g. pair hasEvent/Event or hasRole/Role). Example 1: x hasRole 'actor'. Example 2: x hasRole _:Role_1 (a reference to the Concept identifier from a SKOS Role vocabulary defined in the ontology).
|
14
|
+
# #
|
17
15
|
# # The development of the EBUCore ontology is a joint effort of the EBUCore and PBCore communities.
|
18
|
-
# #
|
19
|
-
# #
|
20
|
-
# # @version
|
16
|
+
# #
|
17
|
+
# # Note to implementers: The EBUCore ontology is used by a variety of users with different needs. Several EBUCore properties have no range to allow different implementations using entities or literals. As an implementer, it is your choice to go for one or the other for each property to have consistent expectations when parsing individuals. EBUCore also provides different classes defined as subclasses of skos:Concept. You can use these classes as entities in range of several properties currently left without range. EBUCore is expressed in RDF in order to facilitate such modelling and flexibility. As a consequence, propoerties appear in the documentation as annotation properties.
|
18
|
+
# # @version Changed subclasses to dc: with owl:equivalentClass or owl:equivalentProperty.
|
21
19
|
# # @version Add Concept Theme and define property hasTheme as subproperty of hasSubject.
|
22
20
|
# # @version Change identifier into hasIdentifier.
|
23
|
-
# # @version
|
24
|
-
# # @version Add
|
21
|
+
# # @version Correct target of end and start as MediaResource.
|
22
|
+
# # @version Add roleType to define a type of Role.
|
25
23
|
# # @version Add productionSynopsis as subproperty of description.
|
24
|
+
# # @version Version 1.10
|
25
|
+
# # @version Add missing multiple range definitions.
|
26
26
|
# # @version Harmonise multi-range definition of properties, when applicable.
|
27
|
-
# # @version
|
28
|
-
# # @version Alignment of Concepts and Types with original EBU and new Dwerft SKOS vocabularies
|
29
|
-
# # @version Correct target of end and start as MediaResource.
|
27
|
+
# # @version Add property dateProduced and property hasProducer.
|
30
28
|
# # @version Add ContentEditorialFormat as subclass of Type + hasContentEditorialFormat property as subpropertyof hastype.
|
31
|
-
# # @version
|
32
|
-
# # @version
|
29
|
+
# # @version Delete hasAssociatedRights has already covered by isCoveredBy.
|
30
|
+
# # @version Create property Asset / hasCopyright with range string or Copyright. Same correction for all Rights subclasses e.g. AccessConditions
|
33
31
|
# # @version Add hasRelationType with domain Relation.
|
32
|
+
# # @version Correct property actionType into hasActionType of rnage string or ActionType subclass of Concept.
|
33
|
+
# # @version Correct misstyped owl:Classes into rdfs:Classes.
|
34
|
+
# # @version Add hasRatingProvider equivalent to hasRatingSource in specific environments
|
34
35
|
# # @version Separate mutli-domains and multi-ranges to avoid owl:unionOf statements.
|
35
|
-
# # @version
|
36
|
-
# # @version
|
37
|
-
# # @version Change hierarchy between Resource and MediaResource and provide hasRelatedResource and hasRelatedMediaResource and similar properties.
|
38
|
-
# # @version Delete formatName and use skos:prefLabel and skos:definition.
|
39
|
-
# # @version Delete hasAssociatedRights has already covered by isCoveredBy.
|
40
|
-
# # @version Add missing multiple range definitions.
|
36
|
+
# # @version Delete roleDefinition and use skos:definition instead as Role is a subclass of Concept.
|
37
|
+
# # @version Alignment of Concepts and Types with original EBU and new Dwerft SKOS vocabularies
|
41
38
|
# # @version Add formatId to Format.
|
42
|
-
# # @version Add reverse property isTimelineTrackPartOf.
|
43
|
-
# # @version Create property Asset / hasCopyright with range string or Copyright. Same correction for all Rights subclasses e.g. AccessConditions
|
44
39
|
# # @version Had Review and hasReview.
|
45
|
-
# # @version Add property dateProduced and property hasProducer.
|
46
40
|
# # @version Add isScheduledOn to associate a PublicationEvent directly with an EditorialObject.
|
47
|
-
# # @version
|
41
|
+
# # @version Delete formatName and use skos:prefLabel and skos:definition.
|
42
|
+
# # @version Add roleId to identify a Role.
|
43
|
+
# # @version Add Concept TargetPlatform and property hasTargetPlatform as a subproperty of Type.
|
48
44
|
# # @version Move generic properties from BusinessObject/EditorialObject, Resource and MediaResource at Asset level (e.g. title, etc.).
|
49
|
-
# # @version
|
45
|
+
# # @version Change hierarchy between Resource and MediaResource and provide hasRelatedResource and hasRelatedMediaResource and similar properties.
|
46
|
+
# # @version Add reverse property isTimelineTrackPartOf.
|
47
|
+
# # @version Add abstract as subpropertyOf description.
|
48
|
+
# # @version Add lead as subproperty of description.
|
49
|
+
# # @version Add missing Concepts and propose default types.
|
50
50
|
# class EBUCore < RDF::StrictVocabulary
|
51
51
|
# # The conditions under which content can be accessed.
|
52
52
|
# # @return [RDF::Vocabulary::Term]
|
@@ -418,9 +418,9 @@ module RDF::Vocab
|
|
418
418
|
# # @return [RDF::Vocabulary::Term]
|
419
419
|
# attr_reader :Essence
|
420
420
|
#
|
421
|
-
# # An event related to the media resource, e.g. depicted in the resource (possibly fictional), etc.
|
422
|
-
# #
|
423
421
|
# # Additional types of event shall be defined as new sub-classes of event.
|
422
|
+
# #
|
423
|
+
# # An event related to the media resource, e.g. depicted in the resource (possibly fictional), etc.
|
424
424
|
# # @return [RDF::Vocabulary::Term]
|
425
425
|
# attr_reader :Event
|
426
426
|
#
|
@@ -548,11 +548,11 @@ module RDF::Vocab
|
|
548
548
|
# # @return [RDF::Vocabulary::Term]
|
549
549
|
# attr_reader :Link
|
550
550
|
#
|
551
|
-
# # A
|
551
|
+
# # A location related to the media resource, e.g. depicted in the resource (possibly fictional) or where the resource was created (shooting location), etc.
|
552
552
|
# #
|
553
553
|
# # This is provided as free text in an annotation label or as an identifier pointing to a term in a classification scheme.
|
554
554
|
# #
|
555
|
-
# # A
|
555
|
+
# # A type of location is defined as a sub-class of location.
|
556
556
|
# # @return [RDF::Vocabulary::Term]
|
557
557
|
# attr_reader :Location
|
558
558
|
#
|
@@ -714,9 +714,9 @@ module RDF::Vocab
|
|
714
714
|
# # @return [RDF::Vocabulary::Term]
|
715
715
|
# attr_reader :RadioProgramme
|
716
716
|
#
|
717
|
-
# # This is provided as free text in an annotation label or as an identifier pointing to a term in a classification scheme.
|
718
|
-
# #
|
719
717
|
# # All the information about the rating/evaluation given to a media resource by an Agent i.e. a person/Contact or Organisation.
|
718
|
+
# #
|
719
|
+
# # This is provided as free text in an annotation label or as an identifier pointing to a term in a classification scheme.
|
720
720
|
# # @return [RDF::Vocabulary::Term]
|
721
721
|
# attr_reader :Rating
|
722
722
|
#
|
@@ -984,9 +984,9 @@ module RDF::Vocab
|
|
984
984
|
# # @return [RDF::Vocabulary::Term]
|
985
985
|
# attr_reader :actionDescription
|
986
986
|
#
|
987
|
-
# # An identifier attributed to an Action.
|
988
|
-
# #
|
989
987
|
# # Range: anyURI or string or Identifier
|
988
|
+
# #
|
989
|
+
# # An identifier attributed to an Action.
|
990
990
|
# # @return [RDF::Vocabulary::Term]
|
991
991
|
# attr_reader :actionId
|
992
992
|
#
|
@@ -1014,9 +1014,9 @@ module RDF::Vocab
|
|
1014
1014
|
# # @return [RDF::Vocabulary::Term]
|
1015
1015
|
# attr_reader :actionTimestampTimecodeDropFrame
|
1016
1016
|
#
|
1017
|
-
# # A type of Action.
|
1018
|
-
# #
|
1019
1017
|
# # Range: Action_type or string
|
1018
|
+
# #
|
1019
|
+
# # A type of Action.
|
1020
1020
|
# # @return [RDF::Vocabulary::Term]
|
1021
1021
|
# attr_reader :actionType
|
1022
1022
|
#
|
@@ -1127,9 +1127,9 @@ module RDF::Vocab
|
|
1127
1127
|
# # @return [RDF::Vocabulary::Term]
|
1128
1128
|
# attr_reader :agentTwitter
|
1129
1129
|
#
|
1130
|
-
# # To define a type of Agent.
|
1131
|
-
# #
|
1132
1130
|
# # Range: string or anyURI or Concept.
|
1131
|
+
# #
|
1132
|
+
# # To define a type of Agent.
|
1133
1133
|
# # @return [RDF::Vocabulary::Term]
|
1134
1134
|
# attr_reader :agentType
|
1135
1135
|
#
|
@@ -1204,15 +1204,15 @@ module RDF::Vocab
|
|
1204
1204
|
# # @return [RDF::Vocabulary::Term]
|
1205
1205
|
# attr_reader :annotationSaliency
|
1206
1206
|
#
|
1207
|
-
# # To define a type of Annotation.
|
1208
|
-
# #
|
1209
1207
|
# # Range: string, anyURI or Concept.
|
1208
|
+
# #
|
1209
|
+
# # To define a type of Annotation.
|
1210
1210
|
# # @return [RDF::Vocabulary::Term]
|
1211
1211
|
# attr_reader :annotationType
|
1212
1212
|
#
|
1213
|
-
# # Range: string or CountryCode.
|
1214
|
-
# #
|
1215
1213
|
# # To define the Location (e.g. country, region) to which Rating and TargetAudience do NOT apply.
|
1214
|
+
# #
|
1215
|
+
# # Range: string or CountryCode.
|
1216
1216
|
# # @return [RDF::Vocabulary::Term]
|
1217
1217
|
# attr_reader :appliesOutOf
|
1218
1218
|
#
|
@@ -1224,9 +1224,9 @@ module RDF::Vocab
|
|
1224
1224
|
# # @return [RDF::Vocabulary::Term]
|
1225
1225
|
# attr_reader :applyTo
|
1226
1226
|
#
|
1227
|
-
# # Range: Agent or string
|
1228
|
-
# #
|
1229
1227
|
# # To identify the Agent who approved the EditorialObject.
|
1228
|
+
# #
|
1229
|
+
# # Range: Agent or string
|
1230
1230
|
# # @return [RDF::Vocabulary::Term]
|
1231
1231
|
# attr_reader :approvedBy
|
1232
1232
|
#
|
@@ -1304,9 +1304,9 @@ module RDF::Vocab
|
|
1304
1304
|
# # @return [RDF::Vocabulary::Term]
|
1305
1305
|
# attr_reader :artefactStyle
|
1306
1306
|
#
|
1307
|
-
# # To specify the type of an Artefact.
|
1308
|
-
# #
|
1309
1307
|
# # Range: string or Artefact_type.
|
1308
|
+
# #
|
1309
|
+
# # To specify the type of an Artefact.
|
1310
1310
|
# # @return [RDF::Vocabulary::Term]
|
1311
1311
|
# attr_reader :artefactType
|
1312
1312
|
#
|
@@ -1336,9 +1336,9 @@ module RDF::Vocab
|
|
1336
1336
|
# # @return [RDF::Vocabulary::Term]
|
1337
1337
|
# attr_reader :assetName
|
1338
1338
|
#
|
1339
|
-
# # To define a type of an Asset.
|
1340
|
-
# #
|
1341
1339
|
# # Range: string or anyURI or Concept.
|
1340
|
+
# #
|
1341
|
+
# # To define a type of an Asset.
|
1342
1342
|
# # @return [RDF::Vocabulary::Term]
|
1343
1343
|
# attr_reader :assetType
|
1344
1344
|
#
|
@@ -1396,9 +1396,9 @@ module RDF::Vocab
|
|
1396
1396
|
# # @return [RDF::Vocabulary::Term]
|
1397
1397
|
# attr_reader :awardName
|
1398
1398
|
#
|
1399
|
-
# # Range: string or Award_Type
|
1400
|
-
# #
|
1401
1399
|
# # To define a type of Award.
|
1400
|
+
# #
|
1401
|
+
# # Range: string or Award_Type
|
1402
1402
|
# # @return [RDF::Vocabulary::Term]
|
1403
1403
|
# attr_reader :awardType
|
1404
1404
|
#
|
@@ -1618,9 +1618,9 @@ module RDF::Vocab
|
|
1618
1618
|
# # @return [RDF::Vocabulary::Term]
|
1619
1619
|
# attr_reader :displayOrder
|
1620
1620
|
#
|
1621
|
-
# # Range: string or Language.
|
1622
|
-
# #
|
1623
1621
|
# # the Language into which MediaResource is dubbed.
|
1622
|
+
# #
|
1623
|
+
# # Range: string or Language.
|
1624
1624
|
# # @return [RDF::Vocabulary::Term]
|
1625
1625
|
# attr_reader :dubbedTo
|
1626
1626
|
#
|
@@ -1660,9 +1660,9 @@ module RDF::Vocab
|
|
1660
1660
|
# # @return [RDF::Vocabulary::Term]
|
1661
1661
|
# attr_reader :editorialObjectDescription
|
1662
1662
|
#
|
1663
|
-
# # Range: an Identifier or anyURI or string.
|
1664
|
-
# #
|
1665
1663
|
# # An identifier attributed to an EditorialObject.
|
1664
|
+
# #
|
1665
|
+
# # Range: an Identifier or anyURI or string.
|
1666
1666
|
# # @return [RDF::Vocabulary::Term]
|
1667
1667
|
# attr_reader :editorialObjectId
|
1668
1668
|
#
|
@@ -1714,9 +1714,9 @@ module RDF::Vocab
|
|
1714
1714
|
# # @return [RDF::Vocabulary::Term]
|
1715
1715
|
# attr_reader :emotionTimestamp
|
1716
1716
|
#
|
1717
|
-
# # A type of Emotion.
|
1718
|
-
# #
|
1719
1717
|
# # Range: anyURI or string or Emotion_Type
|
1718
|
+
# #
|
1719
|
+
# # A type of Emotion.
|
1720
1720
|
# # @return [RDF::Vocabulary::Term]
|
1721
1721
|
# attr_reader :emotionType
|
1722
1722
|
#
|
@@ -1822,9 +1822,9 @@ module RDF::Vocab
|
|
1822
1822
|
# # @return [RDF::Vocabulary::Term]
|
1823
1823
|
# attr_reader :eventStartTime
|
1824
1824
|
#
|
1825
|
-
# # Range: Event or string
|
1826
|
-
# #
|
1827
1825
|
# # To define a type of Event.
|
1826
|
+
# #
|
1827
|
+
# # Range: Event or string
|
1828
1828
|
# # @return [RDF::Vocabulary::Term]
|
1829
1829
|
# attr_reader :eventType
|
1830
1830
|
#
|
@@ -1864,15 +1864,15 @@ module RDF::Vocab
|
|
1864
1864
|
# # @return [RDF::Vocabulary::Term]
|
1865
1865
|
# attr_reader :foodIngredient
|
1866
1866
|
#
|
1867
|
-
# # Range: string or anyURI or Identifier.
|
1868
|
-
# #
|
1869
1867
|
# # A version identifier attributed to a Format.
|
1868
|
+
# #
|
1869
|
+
# # Range: string or anyURI or Identifier.
|
1870
1870
|
# # @return [RDF::Vocabulary::Term]
|
1871
1871
|
# attr_reader :formatId
|
1872
1872
|
#
|
1873
|
-
# # Range: string or anyURI or identifier.
|
1874
|
-
# #
|
1875
1873
|
# # A version identifier attributed to a Format.
|
1874
|
+
# #
|
1875
|
+
# # Range: string or anyURI or identifier.
|
1876
1876
|
# # @return [RDF::Vocabulary::Term]
|
1877
1877
|
# attr_reader :formatVersionId
|
1878
1878
|
#
|
@@ -1936,9 +1936,9 @@ module RDF::Vocab
|
|
1936
1936
|
# # @return [RDF::Vocabulary::Term]
|
1937
1937
|
# attr_reader :groupType
|
1938
1938
|
#
|
1939
|
-
# # Range: string or AccessConditions.
|
1940
|
-
# #
|
1941
1939
|
# # To express access conditions/restrictions.
|
1940
|
+
# #
|
1941
|
+
# # Range: string or AccessConditions.
|
1942
1942
|
# # @return [RDF::Vocabulary::Term]
|
1943
1943
|
# attr_reader :hasAccessConditions
|
1944
1944
|
#
|
@@ -1960,27 +1960,27 @@ module RDF::Vocab
|
|
1960
1960
|
# # @return [RDF::Vocabulary::Term]
|
1961
1961
|
# attr_reader :hasAffiliation
|
1962
1962
|
#
|
1963
|
-
# # To provide a biography of an Agent.
|
1964
|
-
# #
|
1965
1963
|
# # Range: a string or an anyURI (e,g, a URL to a webpage) or a Biography.
|
1964
|
+
# #
|
1965
|
+
# # To provide a biography of an Agent.
|
1966
1966
|
# # @return [RDF::Vocabulary::Term]
|
1967
1967
|
# attr_reader :hasAgentBiography
|
1968
1968
|
#
|
1969
|
-
# # Range: string or CountryCode
|
1970
|
-
# #
|
1971
1969
|
# # To indicate the place of residence of an Agent.
|
1970
|
+
# #
|
1971
|
+
# # Range: string or CountryCode
|
1972
1972
|
# # @return [RDF::Vocabulary::Term]
|
1973
1973
|
# attr_reader :hasAgentCountryOfResidence
|
1974
1974
|
#
|
1975
|
-
# # Range: a string or Language.
|
1976
|
-
# #
|
1977
1975
|
# # To provide the language(s) of a Contact/person.
|
1976
|
+
# #
|
1977
|
+
# # Range: a string or Language.
|
1978
1978
|
# # @return [RDF::Vocabulary::Term]
|
1979
1979
|
# attr_reader :hasAgentLanguage
|
1980
1980
|
#
|
1981
|
-
# # Range: string or Agent.
|
1982
|
-
# #
|
1983
1981
|
# # To associate an Agent to another Agent e.g. a Team.
|
1982
|
+
# #
|
1983
|
+
# # Range: string or Agent.
|
1984
1984
|
# # @return [RDF::Vocabulary::Term]
|
1985
1985
|
# attr_reader :hasAgentMember
|
1986
1986
|
#
|
@@ -1990,9 +1990,9 @@ module RDF::Vocab
|
|
1990
1990
|
# # @return [RDF::Vocabulary::Term]
|
1991
1991
|
# attr_reader :hasAgentNationality
|
1992
1992
|
#
|
1993
|
-
# # Range: string or Location
|
1994
|
-
# #
|
1995
1993
|
# # To indicate the place of residence of an Agent.
|
1994
|
+
# #
|
1995
|
+
# # Range: string or Location
|
1996
1996
|
# # @return [RDF::Vocabulary::Term]
|
1997
1997
|
# attr_reader :hasAgentPlaceOfResidence
|
1998
1998
|
#
|
@@ -2055,9 +2055,9 @@ module RDF::Vocab
|
|
2055
2055
|
# # @return [RDF::Vocabulary::Term]
|
2056
2056
|
# attr_reader :hasArtefactBuyer
|
2057
2057
|
#
|
2058
|
-
# # Range: string or Agent
|
2059
|
-
# #
|
2060
2058
|
# # To identify the creator of an Artefact.
|
2059
|
+
# #
|
2060
|
+
# # Range: string or Agent
|
2061
2061
|
# # @return [RDF::Vocabulary::Term]
|
2062
2062
|
# attr_reader :hasArtefactCreator
|
2063
2063
|
#
|
@@ -2067,15 +2067,15 @@ module RDF::Vocab
|
|
2067
2067
|
# # @return [RDF::Vocabulary::Term]
|
2068
2068
|
# attr_reader :hasArtefactLocation
|
2069
2069
|
#
|
2070
|
-
# # To identify the owner of an Artefact.
|
2071
|
-
# #
|
2072
2070
|
# # Range: string or Agent
|
2071
|
+
# #
|
2072
|
+
# # To identify the owner of an Artefact.
|
2073
2073
|
# # @return [RDF::Vocabulary::Term]
|
2074
2074
|
# attr_reader :hasArtefactOwner
|
2075
2075
|
#
|
2076
|
-
# # To specify the currency into which the price of an Artefact is expressed.
|
2077
|
-
# #
|
2078
2076
|
# # Range: string or CurrencyCode
|
2077
|
+
# #
|
2078
|
+
# # To specify the currency into which the price of an Artefact is expressed.
|
2079
2079
|
# # @return [RDF::Vocabulary::Term]
|
2080
2080
|
# attr_reader :hasArtefactPriceCurrency
|
2081
2081
|
#
|
@@ -2091,9 +2091,9 @@ module RDF::Vocab
|
|
2091
2091
|
# # @return [RDF::Vocabulary::Term]
|
2092
2092
|
# attr_reader :hasArtefactRelatedEditorialObject
|
2093
2093
|
#
|
2094
|
-
# # Range: string or Location
|
2095
|
-
# #
|
2096
2094
|
# # To associate an Artefact/Prop or else with a Location.
|
2095
|
+
# #
|
2096
|
+
# # Range: string or Location
|
2097
2097
|
# # @return [RDF::Vocabulary::Term]
|
2098
2098
|
# attr_reader :hasArtefactRelatedLocation
|
2099
2099
|
#
|
@@ -2148,9 +2148,9 @@ module RDF::Vocab
|
|
2148
2148
|
# # @return [RDF::Vocabulary::Term]
|
2149
2149
|
# attr_reader :hasAssociatedRelation
|
2150
2150
|
#
|
2151
|
-
# # Range: string or AudienceScorerecordingTechnique.
|
2152
|
-
# #
|
2153
2151
|
# # To identify the technique used to measure an audience.
|
2152
|
+
# #
|
2153
|
+
# # Range: string or AudienceScorerecordingTechnique.
|
2154
2154
|
# # @return [RDF::Vocabulary::Term]
|
2155
2155
|
# attr_reader :hasAudienceScoreRecordingTechnique
|
2156
2156
|
#
|
@@ -2170,9 +2170,9 @@ module RDF::Vocab
|
|
2170
2170
|
# # @return [RDF::Vocabulary::Term]
|
2171
2171
|
# attr_reader :hasAudioDescription
|
2172
2172
|
#
|
2173
|
-
# # Range: string or AudioEncodingFormat
|
2174
|
-
# #
|
2175
2173
|
# # To specify the audio encoding format.
|
2174
|
+
# #
|
2175
|
+
# # Range: string or AudioEncodingFormat
|
2176
2176
|
# # @return [RDF::Vocabulary::Term]
|
2177
2177
|
# attr_reader :hasAudioEncodingFormat
|
2178
2178
|
#
|
@@ -2186,9 +2186,9 @@ module RDF::Vocab
|
|
2186
2186
|
# # @return [RDF::Vocabulary::Term]
|
2187
2187
|
# attr_reader :hasAudioTrack
|
2188
2188
|
#
|
2189
|
-
# # To link an Agent to an Award.
|
2190
|
-
# #
|
2191
2189
|
# # Range: string or Agent.
|
2190
|
+
# #
|
2191
|
+
# # To link an Agent to an Award.
|
2192
2192
|
# # @return [RDF::Vocabulary::Term]
|
2193
2193
|
# attr_reader :hasAwardRelatedAgent
|
2194
2194
|
#
|
@@ -2200,9 +2200,9 @@ module RDF::Vocab
|
|
2200
2200
|
# # @return [RDF::Vocabulary::Term]
|
2201
2201
|
# attr_reader :hasAwardRelatedEvent
|
2202
2202
|
#
|
2203
|
-
# # Range: a string or an Award.
|
2204
|
-
# #
|
2205
2203
|
# # The Award gievn to an Agent
|
2204
|
+
# #
|
2205
|
+
# # Range: a string or an Award.
|
2206
2206
|
# # @return [RDF::Vocabulary::Term]
|
2207
2207
|
# attr_reader :hasBeenAwarded
|
2208
2208
|
#
|
@@ -2216,21 +2216,21 @@ module RDF::Vocab
|
|
2216
2216
|
# # @return [RDF::Vocabulary::Term]
|
2217
2217
|
# attr_reader :hasCaptioningFormat
|
2218
2218
|
#
|
2219
|
-
# # Range: string or Agent
|
2220
|
-
# #
|
2221
2219
|
# # To provide information on the source of Captioning.
|
2220
|
+
# #
|
2221
|
+
# # Range: string or Agent
|
2222
2222
|
# # @return [RDF::Vocabulary::Term]
|
2223
2223
|
# attr_reader :hasCaptioningSource
|
2224
2224
|
#
|
2225
|
-
# # A member of the cast.
|
2226
|
-
# #
|
2227
2225
|
# # Range: a string or a Cast
|
2226
|
+
# #
|
2227
|
+
# # A member of the cast.
|
2228
2228
|
# # @return [RDF::Vocabulary::Term]
|
2229
2229
|
# attr_reader :hasCastMember
|
2230
2230
|
#
|
2231
|
-
# # Range: a string or a Role/Concept from a controlled vocabulary.
|
2232
|
-
# #
|
2233
2231
|
# # To define the role of an Agent (Contact/person or Organisation). The association in a particular context is made by e.g. declaring the hasCastRole or hasCrewRole associated with the BusinessObject.
|
2232
|
+
# #
|
2233
|
+
# # Range: a string or a Role/Concept from a controlled vocabulary.
|
2234
2234
|
# # @return [RDF::Vocabulary::Term]
|
2235
2235
|
# attr_reader :hasCastRole
|
2236
2236
|
#
|
@@ -2254,9 +2254,9 @@ module RDF::Vocab
|
|
2254
2254
|
# # @return [RDF::Vocabulary::Term]
|
2255
2255
|
# attr_reader :hasCodec
|
2256
2256
|
#
|
2257
|
-
# # To provide a name for the vendor of the Codec.
|
2258
|
-
# #
|
2259
2257
|
# # Range: string or Agent.
|
2258
|
+
# #
|
2259
|
+
# # To provide a name for the vendor of the Codec.
|
2260
2260
|
# # @return [RDF::Vocabulary::Term]
|
2261
2261
|
# attr_reader :hasCodecVendor
|
2262
2262
|
#
|
@@ -2266,9 +2266,9 @@ module RDF::Vocab
|
|
2266
2266
|
# # @return [RDF::Vocabulary::Term]
|
2267
2267
|
# attr_reader :hasColourSpace
|
2268
2268
|
#
|
2269
|
-
# # Range: a link to a Contact or a string.
|
2270
|
-
# #
|
2271
2269
|
# # To provide information on a Contact for an Organisation or a physical person (e.g. the agent of an actor).
|
2270
|
+
# #
|
2271
|
+
# # Range: a link to a Contact or a string.
|
2272
2272
|
# # @return [RDF::Vocabulary::Term]
|
2273
2273
|
# attr_reader :hasContact
|
2274
2274
|
#
|
@@ -2284,33 +2284,33 @@ module RDF::Vocab
|
|
2284
2284
|
# # @return [RDF::Vocabulary::Term]
|
2285
2285
|
# attr_reader :hasContainerEncodingFormat
|
2286
2286
|
#
|
2287
|
-
# # Range: string or MimeType
|
2288
|
-
# #
|
2289
2287
|
# # To provide the Mime type of the Resource.
|
2288
|
+
# #
|
2289
|
+
# # Range: string or MimeType
|
2290
2290
|
# # @return [RDF::Vocabulary::Term]
|
2291
2291
|
# attr_reader :hasContainerMimeType
|
2292
2292
|
#
|
2293
|
-
# # To define a content editorial format e.g. magazine.
|
2294
|
-
# #
|
2295
2293
|
# # Range: string or ContentEditorialFormat.
|
2294
|
+
# #
|
2295
|
+
# # To define a content editorial format e.g. magazine.
|
2296
2296
|
# # @return [RDF::Vocabulary::Term]
|
2297
2297
|
# attr_reader :hasContentEditorialFormat
|
2298
2298
|
#
|
2299
|
-
# # To identify a contributor to a Resource, a Business Object, an Event...
|
2300
|
-
# #
|
2301
2299
|
# # Range: string or Agent
|
2300
|
+
# #
|
2301
|
+
# # To identify a contributor to a Resource, a Business Object, an Event...
|
2302
2302
|
# # @return [RDF::Vocabulary::Term]
|
2303
2303
|
# attr_reader :hasContributor
|
2304
2304
|
#
|
2305
|
-
# # To express copyright.
|
2306
|
-
# #
|
2307
2305
|
# # Range: string or Copyright.
|
2306
|
+
# #
|
2307
|
+
# # To express copyright.
|
2308
2308
|
# # @return [RDF::Vocabulary::Term]
|
2309
2309
|
# attr_reader :hasCopyright
|
2310
2310
|
#
|
2311
|
-
# # To define a type of Costume.
|
2312
|
-
# #
|
2313
2311
|
# # Range: a string or Costume_type e.g. a Concept code from a vocabulary, e.g. Getty.
|
2312
|
+
# #
|
2313
|
+
# # To define a type of Costume.
|
2314
2314
|
# # @return [RDF::Vocabulary::Term]
|
2315
2315
|
# attr_reader :hasCostumeType
|
2316
2316
|
#
|
@@ -2326,9 +2326,9 @@ module RDF::Vocab
|
|
2326
2326
|
# # @return [RDF::Vocabulary::Term]
|
2327
2327
|
# attr_reader :hasCountryOfDeath
|
2328
2328
|
#
|
2329
|
-
# # To provide coverage information.
|
2330
|
-
# #
|
2331
2329
|
# # Range: string or Event or Location
|
2330
|
+
# #
|
2331
|
+
# # To provide coverage information.
|
2332
2332
|
# # @return [RDF::Vocabulary::Term]
|
2333
2333
|
# attr_reader :hasCoverage
|
2334
2334
|
#
|
@@ -2350,9 +2350,9 @@ module RDF::Vocab
|
|
2350
2350
|
# # @return [RDF::Vocabulary::Term]
|
2351
2351
|
# attr_reader :hasCreativeCommons
|
2352
2352
|
#
|
2353
|
-
# # To identify an Agent involved in the creation of the Resource or BusinessObject.
|
2354
|
-
# #
|
2355
2353
|
# # Range: string or Agent.
|
2354
|
+
# #
|
2355
|
+
# # To identify an Agent involved in the creation of the Resource or BusinessObject.
|
2356
2356
|
# # @return [RDF::Vocabulary::Term]
|
2357
2357
|
# attr_reader :hasCreator
|
2358
2358
|
#
|
@@ -2362,15 +2362,15 @@ module RDF::Vocab
|
|
2362
2362
|
# # @return [RDF::Vocabulary::Term]
|
2363
2363
|
# attr_reader :hasCrewMember
|
2364
2364
|
#
|
2365
|
-
# # Range: a string or a Role/Concept from a controlled vocabulary.
|
2366
|
-
# #
|
2367
2365
|
# # To define the role of an Agent (Contact/person or Organisation). The association in a particular context is made by e.g. declaring the hasCastRole or hasCrewRole associated with the BusinessObject.
|
2366
|
+
# #
|
2367
|
+
# # Range: a string or a Role/Concept from a controlled vocabulary.
|
2368
2368
|
# # @return [RDF::Vocabulary::Term]
|
2369
2369
|
# attr_reader :hasCrewRole
|
2370
2370
|
#
|
2371
|
-
# # The country/region of origin of the cuisine
|
2372
|
-
# #
|
2373
2371
|
# # Range: a string or CountryCode
|
2372
|
+
# #
|
2373
|
+
# # The country/region of origin of the cuisine
|
2374
2374
|
# # @return [RDF::Vocabulary::Term]
|
2375
2375
|
# attr_reader :hasCuisineOrigin
|
2376
2376
|
#
|
@@ -2390,9 +2390,9 @@ module RDF::Vocab
|
|
2390
2390
|
# # @return [RDF::Vocabulary::Term]
|
2391
2391
|
# attr_reader :hasDataTrack
|
2392
2392
|
#
|
2393
|
-
# # Range: string or Department.
|
2394
|
-
# #
|
2395
2393
|
# # To identify a department in an organisation.
|
2394
|
+
# #
|
2395
|
+
# # Range: string or Department.
|
2396
2396
|
# # @return [RDF::Vocabulary::Term]
|
2397
2397
|
# attr_reader :hasDepartment
|
2398
2398
|
#
|
@@ -2426,9 +2426,9 @@ module RDF::Vocab
|
|
2426
2426
|
# # @return [RDF::Vocabulary::Term]
|
2427
2427
|
# attr_reader :hasEidrIdentifier
|
2428
2428
|
#
|
2429
|
-
# # Range: String or Agent
|
2430
|
-
# #
|
2431
2429
|
# # To associate an Emotion with an Agent (e.g. Person or Character).
|
2430
|
+
# #
|
2431
|
+
# # Range: String or Agent
|
2432
2432
|
# # @return [RDF::Vocabulary::Term]
|
2433
2433
|
# attr_reader :hasEmotionRelatedAgent
|
2434
2434
|
#
|
@@ -2456,9 +2456,9 @@ module RDF::Vocab
|
|
2456
2456
|
# # @return [RDF::Vocabulary::Term]
|
2457
2457
|
# attr_reader :hasEventRelatedAgent
|
2458
2458
|
#
|
2459
|
-
# # An artefact related to an Event.
|
2460
|
-
# #
|
2461
2459
|
# # Range: string or Artefact.
|
2460
|
+
# #
|
2461
|
+
# # An artefact related to an Event.
|
2462
2462
|
# # @return [RDF::Vocabulary::Term]
|
2463
2463
|
# attr_reader :hasEventRelatedArtefact
|
2464
2464
|
#
|
@@ -2482,9 +2482,9 @@ module RDF::Vocab
|
|
2482
2482
|
# # @return [RDF::Vocabulary::Term]
|
2483
2483
|
# attr_reader :hasEventRelatedResource
|
2484
2484
|
#
|
2485
|
-
# # Range: string or EventType
|
2486
|
-
# #
|
2487
2485
|
# # To define a type of Event.
|
2486
|
+
# #
|
2487
|
+
# # Range: string or EventType
|
2488
2488
|
# # @return [RDF::Vocabulary::Term]
|
2489
2489
|
# attr_reader :hasEventType
|
2490
2490
|
#
|
@@ -2494,9 +2494,9 @@ module RDF::Vocab
|
|
2494
2494
|
# # @return [RDF::Vocabulary::Term]
|
2495
2495
|
# attr_reader :hasExploitationIssues
|
2496
2496
|
#
|
2497
|
-
# # The format of a file.
|
2498
|
-
# #
|
2499
2497
|
# # Range: string or FileFormat.
|
2498
|
+
# #
|
2499
|
+
# # The format of a file.
|
2500
2500
|
# # @return [RDF::Vocabulary::Term]
|
2501
2501
|
# attr_reader :hasFileFormat
|
2502
2502
|
#
|
@@ -2506,15 +2506,15 @@ module RDF::Vocab
|
|
2506
2506
|
# # @return [RDF::Vocabulary::Term]
|
2507
2507
|
# attr_reader :hasFoodStyle
|
2508
2508
|
#
|
2509
|
-
# # Range: string, Format or any Format-related Concept
|
2510
|
-
# #
|
2511
2509
|
# # To identify a Format
|
2510
|
+
# #
|
2511
|
+
# # Range: string, Format or any Format-related Concept
|
2512
2512
|
# # @return [RDF::Vocabulary::Term]
|
2513
2513
|
# attr_reader :hasFormat
|
2514
2514
|
#
|
2515
|
-
# # Range: Identifier or string or anyURI.
|
2516
|
-
# #
|
2517
2515
|
# # An identifier attributed to a Format.
|
2516
|
+
# #
|
2517
|
+
# # Range: Identifier or string or anyURI.
|
2518
2518
|
# # @return [RDF::Vocabulary::Term]
|
2519
2519
|
# attr_reader :hasFormatId
|
2520
2520
|
#
|
@@ -2534,15 +2534,15 @@ module RDF::Vocab
|
|
2534
2534
|
# # @return [RDF::Vocabulary::Term]
|
2535
2535
|
# attr_reader :hasIMediaIdentifier
|
2536
2536
|
#
|
2537
|
-
# # Range: string or IPR Restrictions.
|
2538
|
-
# #
|
2539
2537
|
# # To express IPR Restrictions.
|
2538
|
+
# #
|
2539
|
+
# # Range: string or IPR Restrictions.
|
2540
2540
|
# # @return [RDF::Vocabulary::Term]
|
2541
2541
|
# attr_reader :hasIPRRestrictions
|
2542
2542
|
#
|
2543
|
-
# # To provide a link to an identification picture.
|
2544
|
-
# #
|
2545
2543
|
# # A locator / URI or a Picture.
|
2544
|
+
# #
|
2545
|
+
# # To provide a link to an identification picture.
|
2546
2546
|
# # @return [RDF::Vocabulary::Term]
|
2547
2547
|
# attr_reader :hasIdPicture
|
2548
2548
|
#
|
@@ -2552,21 +2552,21 @@ module RDF::Vocab
|
|
2552
2552
|
# # @return [RDF::Vocabulary::Term]
|
2553
2553
|
# attr_reader :hasIdentifier
|
2554
2554
|
#
|
2555
|
-
# # To define a type of Identifer (e.g. UUID, ISAN, EIDR, in-house production Id).
|
2556
|
-
# #
|
2557
2555
|
# # Range: Concept or string
|
2556
|
+
# #
|
2557
|
+
# # To define a type of Identifer (e.g. UUID, ISAN, EIDR, in-house production Id).
|
2558
2558
|
# # @return [RDF::Vocabulary::Term]
|
2559
2559
|
# attr_reader :hasIdentifierType
|
2560
2560
|
#
|
2561
|
-
# # Range: string or Codec
|
2562
|
-
# #
|
2563
2561
|
# # To specify the codec of an Image.
|
2562
|
+
# #
|
2563
|
+
# # Range: string or Codec
|
2564
2564
|
# # @return [RDF::Vocabulary::Term]
|
2565
2565
|
# attr_reader :hasImageCodec
|
2566
2566
|
#
|
2567
|
-
# # Range: string or ImageFormat
|
2568
|
-
# #
|
2569
2567
|
# # To specify the format of an Image.
|
2568
|
+
# #
|
2569
|
+
# # Range: string or ImageFormat
|
2570
2570
|
# # @return [RDF::Vocabulary::Term]
|
2571
2571
|
# attr_reader :hasImageFormat
|
2572
2572
|
#
|
@@ -2576,9 +2576,9 @@ module RDF::Vocab
|
|
2576
2576
|
# # @return [RDF::Vocabulary::Term]
|
2577
2577
|
# attr_reader :hasIsanIdentifier
|
2578
2578
|
#
|
2579
|
-
# # Range: string or KeyCareerEvent
|
2580
|
-
# #
|
2581
2579
|
# # To identify the key career events of a Person.
|
2580
|
+
# #
|
2581
|
+
# # Range: string or KeyCareerEvent
|
2582
2582
|
# # @return [RDF::Vocabulary::Term]
|
2583
2583
|
# attr_reader :hasKeyCareerEvent
|
2584
2584
|
#
|
@@ -2588,9 +2588,9 @@ module RDF::Vocab
|
|
2588
2588
|
# # @return [RDF::Vocabulary::Term]
|
2589
2589
|
# attr_reader :hasKeyPersonalEvent
|
2590
2590
|
#
|
2591
|
-
# # To associate a concept, descriptive phrase or Keyword that specifies the topic of the EditorialObject.
|
2592
|
-
# #
|
2593
2591
|
# # Range: Keyword or string or any URI from a controlled vocabulary
|
2592
|
+
# #
|
2593
|
+
# # To associate a concept, descriptive phrase or Keyword that specifies the topic of the EditorialObject.
|
2594
2594
|
# # @return [RDF::Vocabulary::Term]
|
2595
2595
|
# attr_reader :hasKeyword
|
2596
2596
|
#
|
@@ -2606,9 +2606,9 @@ module RDF::Vocab
|
|
2606
2606
|
# # @return [RDF::Vocabulary::Term]
|
2607
2607
|
# attr_reader :hasLicensing
|
2608
2608
|
#
|
2609
|
-
# # Range: string or LocationCode.
|
2610
|
-
# #
|
2611
2609
|
# # To give the code of a Location.
|
2610
|
+
# #
|
2611
|
+
# # Range: string or LocationCode.
|
2612
2612
|
# # @return [RDF::Vocabulary::Term]
|
2613
2613
|
# attr_reader :hasLocationCode
|
2614
2614
|
#
|
@@ -2616,9 +2616,9 @@ module RDF::Vocab
|
|
2616
2616
|
# # @return [RDF::Vocabulary::Term]
|
2617
2617
|
# attr_reader :hasLocationPicture
|
2618
2618
|
#
|
2619
|
-
# # To associate an Artefact with a Location.
|
2620
|
-
# #
|
2621
2619
|
# # Range: a string or an Artefact.
|
2620
|
+
# #
|
2621
|
+
# # To associate an Artefact with a Location.
|
2622
2622
|
# # @return [RDF::Vocabulary::Term]
|
2623
2623
|
# attr_reader :hasLocationRelatedArtefact
|
2624
2624
|
#
|
@@ -2638,9 +2638,9 @@ module RDF::Vocab
|
|
2638
2638
|
# # @return [RDF::Vocabulary::Term]
|
2639
2639
|
# attr_reader :hasLocationType
|
2640
2640
|
#
|
2641
|
-
# # Range: a locator e.g. a URI or a Locator or a string.
|
2642
|
-
# #
|
2643
2641
|
# # A locator from where the MediaResource can be accessed.
|
2642
|
+
# #
|
2643
|
+
# # Range: a locator e.g. a URI or a Locator or a string.
|
2644
2644
|
# # @return [RDF::Vocabulary::Term]
|
2645
2645
|
# attr_reader :hasLocator
|
2646
2646
|
#
|
@@ -2678,9 +2678,9 @@ module RDF::Vocab
|
|
2678
2678
|
# # @return [RDF::Vocabulary::Term]
|
2679
2679
|
# attr_reader :hasMetadataTrack
|
2680
2680
|
#
|
2681
|
-
# # Range: string or MimeType
|
2682
|
-
# #
|
2683
2681
|
# # To specify the Mime type of a Resource.
|
2682
|
+
# #
|
2683
|
+
# # Range: string or MimeType
|
2684
2684
|
# # @return [RDF::Vocabulary::Term]
|
2685
2685
|
# attr_reader :hasMimeType
|
2686
2686
|
#
|
@@ -2718,9 +2718,9 @@ module RDF::Vocab
|
|
2718
2718
|
# # @return [RDF::Vocabulary::Term]
|
2719
2719
|
# attr_reader :hasPart
|
2720
2720
|
#
|
2721
|
-
# # A type of Part.
|
2722
|
-
# #
|
2723
2721
|
# # Range: a string or Part_Type
|
2722
|
+
# #
|
2723
|
+
# # A type of Part.
|
2724
2724
|
# # @return [RDF::Vocabulary::Term]
|
2725
2725
|
# attr_reader :hasPartType
|
2726
2726
|
#
|
@@ -2730,9 +2730,9 @@ module RDF::Vocab
|
|
2730
2730
|
# # @return [RDF::Vocabulary::Term]
|
2731
2731
|
# attr_reader :hasParticipatingAgent
|
2732
2732
|
#
|
2733
|
-
# # Range: a locator/URI or a Picture.
|
2734
|
-
# #
|
2735
2733
|
# # To provide a visual representation of a Rating / AufdienceRating / AudienceLevel.
|
2734
|
+
# #
|
2735
|
+
# # Range: a locator/URI or a Picture.
|
2736
2736
|
# # @return [RDF::Vocabulary::Term]
|
2737
2737
|
# attr_reader :hasPictogram
|
2738
2738
|
#
|
@@ -2750,15 +2750,15 @@ module RDF::Vocab
|
|
2750
2750
|
# # @return [RDF::Vocabulary::Term]
|
2751
2751
|
# attr_reader :hasProducer
|
2752
2752
|
#
|
2753
|
-
# # To identify the Location of a production
|
2754
|
-
# #
|
2755
2753
|
# # Range: a Location or string
|
2754
|
+
# #
|
2755
|
+
# # To identify the Location of a production
|
2756
2756
|
# # @return [RDF::Vocabulary::Term]
|
2757
2757
|
# attr_reader :hasProductionLocation
|
2758
2758
|
#
|
2759
|
-
# # Range: string, anyURI or Concept.
|
2760
|
-
# #
|
2761
2759
|
# # To associate information on Provenance to an EBUCore class.
|
2760
|
+
# #
|
2761
|
+
# # Range: string, anyURI or Concept.
|
2762
2762
|
# # @return [RDF::Vocabulary::Term]
|
2763
2763
|
# attr_reader :hasProvenance
|
2764
2764
|
#
|
@@ -2774,9 +2774,9 @@ module RDF::Vocab
|
|
2774
2774
|
# # @return [RDF::Vocabulary::Term]
|
2775
2775
|
# attr_reader :hasPublicationHistory
|
2776
2776
|
#
|
2777
|
-
# # To identify the publication medium.
|
2778
|
-
# #
|
2779
2777
|
# # Range: string or PublicationMedium.
|
2778
|
+
# #
|
2779
|
+
# # To identify the publication medium.
|
2780
2780
|
# # @return [RDF::Vocabulary::Term]
|
2781
2781
|
# attr_reader :hasPublicationMedium
|
2782
2782
|
#
|
@@ -2784,9 +2784,9 @@ module RDF::Vocab
|
|
2784
2784
|
# # @return [RDF::Vocabulary::Term]
|
2785
2785
|
# attr_reader :hasPublicationPlanMember
|
2786
2786
|
#
|
2787
|
-
# # Range: string or PublicationPlan_type.
|
2788
|
-
# #
|
2789
2787
|
# # To define a type of PublicationPlan.
|
2788
|
+
# #
|
2789
|
+
# # Range: string or PublicationPlan_type.
|
2790
2790
|
# # @return [RDF::Vocabulary::Term]
|
2791
2791
|
# attr_reader :hasPublicationPlanType
|
2792
2792
|
#
|
@@ -2800,21 +2800,21 @@ module RDF::Vocab
|
|
2800
2800
|
# # @return [RDF::Vocabulary::Term]
|
2801
2801
|
# attr_reader :hasPublisher
|
2802
2802
|
#
|
2803
|
-
# # Range: a string or a Rating.
|
2804
|
-
# #
|
2805
2803
|
# # To identify the presence of Rating attributed to a Resource or BusinessObject.
|
2804
|
+
# #
|
2805
|
+
# # Range: a string or a Rating.
|
2806
2806
|
# # @return [RDF::Vocabulary::Term]
|
2807
2807
|
# attr_reader :hasRating
|
2808
2808
|
#
|
2809
|
-
# # To identify an Agent who has provided a Rating.
|
2810
|
-
# #
|
2811
2809
|
# # Range: string or Agent.
|
2810
|
+
# #
|
2811
|
+
# # To identify an Agent who has provided a Rating.
|
2812
2812
|
# # @return [RDF::Vocabulary::Term]
|
2813
2813
|
# attr_reader :hasRatingProvider
|
2814
2814
|
#
|
2815
|
-
# # To identify an Agent who has provided a Rating.
|
2816
|
-
# #
|
2817
2815
|
# # Range: string or Agent.
|
2816
|
+
# #
|
2817
|
+
# # To identify an Agent who has provided a Rating.
|
2818
2818
|
# # @return [RDF::Vocabulary::Term]
|
2819
2819
|
# attr_reader :hasRatingSource
|
2820
2820
|
#
|
@@ -2822,9 +2822,9 @@ module RDF::Vocab
|
|
2822
2822
|
# # @return [RDF::Vocabulary::Term]
|
2823
2823
|
# attr_reader :hasRelatedAnimal
|
2824
2824
|
#
|
2825
|
-
# # To identify and Artefact related to EditorialObject or a resource.
|
2826
|
-
# #
|
2827
2825
|
# # Range: string or Artefact.
|
2826
|
+
# #
|
2827
|
+
# # To identify and Artefact related to EditorialObject or a resource.
|
2828
2828
|
# # @return [RDF::Vocabulary::Term]
|
2829
2829
|
# attr_reader :hasRelatedArtefact
|
2830
2830
|
#
|
@@ -2848,9 +2848,9 @@ module RDF::Vocab
|
|
2848
2848
|
# # @return [RDF::Vocabulary::Term]
|
2849
2849
|
# attr_reader :hasRelatedAudioTrack
|
2850
2850
|
#
|
2851
|
-
# # To identify an Award related to EditorialObject.
|
2852
|
-
# #
|
2853
2851
|
# # Range: string or Award.
|
2852
|
+
# #
|
2853
|
+
# # To identify an Award related to EditorialObject.
|
2854
2854
|
# # @return [RDF::Vocabulary::Term]
|
2855
2855
|
# attr_reader :hasRelatedAward
|
2856
2856
|
#
|
@@ -2890,9 +2890,9 @@ module RDF::Vocab
|
|
2890
2890
|
# # @return [RDF::Vocabulary::Term]
|
2891
2891
|
# attr_reader :hasRelatedPicture
|
2892
2892
|
#
|
2893
|
-
# # Range: string or PublicationChannel
|
2894
|
-
# #
|
2895
2893
|
# # To identify a Publication Channel
|
2894
|
+
# #
|
2895
|
+
# # Range: string or PublicationChannel
|
2896
2896
|
# # @return [RDF::Vocabulary::Term]
|
2897
2897
|
# attr_reader :hasRelatedPublicationChannel
|
2898
2898
|
#
|
@@ -2900,9 +2900,9 @@ module RDF::Vocab
|
|
2900
2900
|
# # @return [RDF::Vocabulary::Term]
|
2901
2901
|
# attr_reader :hasRelatedPublicationEvent
|
2902
2902
|
#
|
2903
|
-
# # To associate a Record with an Asset.
|
2904
|
-
# #
|
2905
2903
|
# # Range, a string a URI or a Record.
|
2904
|
+
# #
|
2905
|
+
# # To associate a Record with an Asset.
|
2906
2906
|
# # @return [RDF::Vocabulary::Term]
|
2907
2907
|
# attr_reader :hasRelatedRecord
|
2908
2908
|
#
|
@@ -2916,21 +2916,21 @@ module RDF::Vocab
|
|
2916
2916
|
# # @return [RDF::Vocabulary::Term]
|
2917
2917
|
# attr_reader :hasRelatedService
|
2918
2918
|
#
|
2919
|
-
# # Range: string or TextLine.
|
2920
|
-
# #
|
2921
2919
|
# # A TextLine or free text related to an EditorialObject.
|
2920
|
+
# #
|
2921
|
+
# # Range: string or TextLine.
|
2922
2922
|
# # @return [RDF::Vocabulary::Term]
|
2923
2923
|
# attr_reader :hasRelatedTextLine
|
2924
2924
|
#
|
2925
|
-
# # Range: string or Agent.
|
2926
|
-
# #
|
2927
2925
|
# # To define source of a Relation.
|
2926
|
+
# #
|
2927
|
+
# # Range: string or Agent.
|
2928
2928
|
# # @return [RDF::Vocabulary::Term]
|
2929
2929
|
# attr_reader :hasRelationSource
|
2930
2930
|
#
|
2931
|
-
# # A locator from where the Resource can be accessed.
|
2932
|
-
# #
|
2933
2931
|
# # Range: a locator e.g. a URI or a Locator.
|
2932
|
+
# #
|
2933
|
+
# # A locator from where the Resource can be accessed.
|
2934
2934
|
# # @return [RDF::Vocabulary::Term]
|
2935
2935
|
# attr_reader :hasResourceLocator
|
2936
2936
|
#
|
@@ -2940,9 +2940,9 @@ module RDF::Vocab
|
|
2940
2940
|
# # @return [RDF::Vocabulary::Term]
|
2941
2941
|
# attr_reader :hasReview
|
2942
2942
|
#
|
2943
|
-
# # To express Rights Clearance.
|
2944
|
-
# #
|
2945
2943
|
# # Range: string or Rights Clearance.
|
2944
|
+
# #
|
2945
|
+
# # To express Rights Clearance.
|
2946
2946
|
# # @return [RDF::Vocabulary::Term]
|
2947
2947
|
# attr_reader :hasRightsClearance
|
2948
2948
|
#
|
@@ -2952,15 +2952,15 @@ module RDF::Vocab
|
|
2952
2952
|
# # @return [RDF::Vocabulary::Term]
|
2953
2953
|
# attr_reader :hasRightsContact
|
2954
2954
|
#
|
2955
|
-
# # To identify an Agent (Contact/person or Organisation) having/managing Rights.
|
2956
|
-
# #
|
2957
2955
|
# # Range: a string or an Agent.
|
2956
|
+
# #
|
2957
|
+
# # To identify an Agent (Contact/person or Organisation) having/managing Rights.
|
2958
2958
|
# # @return [RDF::Vocabulary::Term]
|
2959
2959
|
# attr_reader :hasRightsHolder
|
2960
2960
|
#
|
2961
|
-
# # Range: a string or a Role/Concept from a controlled vocabulary.
|
2962
|
-
# #
|
2963
2961
|
# # To define the role of an Agent (Contact/person or Organisation). The association in a particular context is made by e.g. declaring the hasCastRole or hasCrewRole associated with the BusinessObject.
|
2962
|
+
# #
|
2963
|
+
# # Range: a string or a Role/Concept from a controlled vocabulary.
|
2964
2964
|
# # @return [RDF::Vocabulary::Term]
|
2965
2965
|
# attr_reader :hasRole
|
2966
2966
|
#
|
@@ -2984,15 +2984,15 @@ module RDF::Vocab
|
|
2984
2984
|
# # @return [RDF::Vocabulary::Term]
|
2985
2985
|
# attr_reader :hasShootingLocation
|
2986
2986
|
#
|
2987
|
-
# # To identify the presence of Signing associated to the BusinessObject/Resource.
|
2988
|
-
# #
|
2989
2987
|
# # A locator/URI to a resource or a Signing resource.
|
2988
|
+
# #
|
2989
|
+
# # To identify the presence of Signing associated to the BusinessObject/Resource.
|
2990
2990
|
# # @return [RDF::Vocabulary::Term]
|
2991
2991
|
# attr_reader :hasSigning
|
2992
2992
|
#
|
2993
|
-
# # To specify the format used for signing.
|
2994
|
-
# #
|
2995
2993
|
# # Range: string or SigningFormat.
|
2994
|
+
# #
|
2995
|
+
# # To specify the format used for signing.
|
2996
2996
|
# # @return [RDF::Vocabulary::Term]
|
2997
2997
|
# attr_reader :hasSigningFormat
|
2998
2998
|
#
|
@@ -3024,9 +3024,9 @@ module RDF::Vocab
|
|
3024
3024
|
# # @return [RDF::Vocabulary::Term]
|
3025
3025
|
# attr_reader :hasStakeholder
|
3026
3026
|
#
|
3027
|
-
# # Identifies the technical video standard of a MediaResource, i.e. NTSC or PAL.
|
3028
|
-
# #
|
3029
3027
|
# # Range: string or Standard
|
3028
|
+
# #
|
3029
|
+
# # Identifies the technical video standard of a MediaResource, i.e. NTSC or PAL.
|
3030
3030
|
# # @return [RDF::Vocabulary::Term]
|
3031
3031
|
# attr_reader :hasStandard
|
3032
3032
|
#
|
@@ -3036,33 +3036,33 @@ module RDF::Vocab
|
|
3036
3036
|
# # @return [RDF::Vocabulary::Term]
|
3037
3037
|
# attr_reader :hasStorageId
|
3038
3038
|
#
|
3039
|
-
# # Range:; string or Storage_Type
|
3040
|
-
# #
|
3041
3039
|
# # To define a type of storage associated with a locator from which a Resource can be accessed or can be retrieved.
|
3040
|
+
# #
|
3041
|
+
# # Range:; string or Storage_Type
|
3042
3042
|
# # @return [RDF::Vocabulary::Term]
|
3043
3043
|
# attr_reader :hasStorageType
|
3044
3044
|
#
|
3045
|
-
# # This property enables to associate an Asset with a subject which can be a string or a URI pointing to a term from a controlled vocabulary.
|
3046
|
-
# #
|
3047
3045
|
# # Range: string, anyURI or Subject
|
3046
|
+
# #
|
3047
|
+
# # This property enables to associate an Asset with a subject which can be a string or a URI pointing to a term from a controlled vocabulary.
|
3048
3048
|
# # @return [RDF::Vocabulary::Term]
|
3049
3049
|
# attr_reader :hasSubject
|
3050
3050
|
#
|
3051
|
-
# # To identify existing subtitling.
|
3052
|
-
# #
|
3053
3051
|
# # Range: string or Subtitling
|
3052
|
+
# #
|
3053
|
+
# # To identify existing subtitling.
|
3054
3054
|
# # @return [RDF::Vocabulary::Term]
|
3055
3055
|
# attr_reader :hasSubtitling
|
3056
3056
|
#
|
3057
|
-
# # The format of Subtitling.
|
3058
|
-
# #
|
3059
3057
|
# # Range: string or SubtitlingFormat
|
3058
|
+
# #
|
3059
|
+
# # The format of Subtitling.
|
3060
3060
|
# # @return [RDF::Vocabulary::Term]
|
3061
3061
|
# attr_reader :hasSubtitlingFormat
|
3062
3062
|
#
|
3063
|
-
# # To identify the source of the Subtitling resource.
|
3064
|
-
# #
|
3065
3063
|
# # Range: a string or an Agent.
|
3064
|
+
# #
|
3065
|
+
# # To identify the source of the Subtitling resource.
|
3066
3066
|
# # @return [RDF::Vocabulary::Term]
|
3067
3067
|
# attr_reader :hasSubtitlingSource
|
3068
3068
|
#
|
@@ -3096,9 +3096,9 @@ module RDF::Vocab
|
|
3096
3096
|
# # @return [RDF::Vocabulary::Term]
|
3097
3097
|
# attr_reader :hasTextLineRelatedAgent
|
3098
3098
|
#
|
3099
|
-
# # To identify a Character related to a TextLine.
|
3100
|
-
# #
|
3101
3099
|
# # Range: string or Character.
|
3100
|
+
# #
|
3101
|
+
# # To identify a Character related to a TextLine.
|
3102
3102
|
# # @return [RDF::Vocabulary::Term]
|
3103
3103
|
# attr_reader :hasTextLineRelatedCharacter
|
3104
3104
|
#
|
@@ -3120,9 +3120,9 @@ module RDF::Vocab
|
|
3120
3120
|
# # @return [RDF::Vocabulary::Term]
|
3121
3121
|
# attr_reader :hasTextLineType
|
3122
3122
|
#
|
3123
|
-
# # Range: a Concept, anyURI or a string
|
3124
|
-
# #
|
3125
3123
|
# # This property enables to associate an Asset with a theme which can be a string or a URI pointing to a term from a controlled vocabulary. A typical example is the Eurostats NACE classification.
|
3124
|
+
# #
|
3125
|
+
# # Range: a Concept, anyURI or a string
|
3126
3126
|
# # @return [RDF::Vocabulary::Term]
|
3127
3127
|
# attr_reader :hasTheme
|
3128
3128
|
#
|
@@ -3138,9 +3138,9 @@ module RDF::Vocab
|
|
3138
3138
|
# # @return [RDF::Vocabulary::Term]
|
3139
3139
|
# attr_reader :hasTimelineTrackPart
|
3140
3140
|
#
|
3141
|
-
# # To specify a type of TimelineTrack
|
3142
|
-
# #
|
3143
3141
|
# # Range: string or anyURI or TimelineTrack_Type.
|
3142
|
+
# #
|
3143
|
+
# # To specify a type of TimelineTrack
|
3144
3144
|
# # @return [RDF::Vocabulary::Term]
|
3145
3145
|
# attr_reader :hasTimelineTrackType
|
3146
3146
|
#
|
@@ -3158,9 +3158,9 @@ module RDF::Vocab
|
|
3158
3158
|
# # @return [RDF::Vocabulary::Term]
|
3159
3159
|
# attr_reader :hasTrackPart
|
3160
3160
|
#
|
3161
|
-
# # Range: string or TrackPurpose.
|
3162
|
-
# #
|
3163
3161
|
# # The purpose for which the Track is provided.
|
3162
|
+
# #
|
3163
|
+
# # Range: string or TrackPurpose.
|
3164
3164
|
# # @return [RDF::Vocabulary::Term]
|
3165
3165
|
# attr_reader :hasTrackPurpose
|
3166
3166
|
#
|
@@ -3186,15 +3186,15 @@ module RDF::Vocab
|
|
3186
3186
|
# # @return [RDF::Vocabulary::Term]
|
3187
3187
|
# attr_reader :hasVersion
|
3188
3188
|
#
|
3189
|
-
# # Range: string or VideoCodec
|
3190
|
-
# #
|
3191
3189
|
# # To identify a video codec
|
3190
|
+
# #
|
3191
|
+
# # Range: string or VideoCodec
|
3192
3192
|
# # @return [RDF::Vocabulary::Term]
|
3193
3193
|
# attr_reader :hasVideoCodec
|
3194
3194
|
#
|
3195
|
-
# # To specify the video encoding format.
|
3196
|
-
# #
|
3197
3195
|
# # Range: string or VideoEncodingFormat
|
3196
|
+
# #
|
3197
|
+
# # To specify the video encoding format.
|
3198
3198
|
# # @return [RDF::Vocabulary::Term]
|
3199
3199
|
# attr_reader :hasVideoEncodingFormat
|
3200
3200
|
#
|
@@ -3202,9 +3202,9 @@ module RDF::Vocab
|
|
3202
3202
|
# # @return [RDF::Vocabulary::Term]
|
3203
3203
|
# attr_reader :hasVideoTrack
|
3204
3204
|
#
|
3205
|
-
# # Range: string or WrappingType.
|
3206
|
-
# #
|
3207
3205
|
# # To specify the type of wrapping.
|
3206
|
+
# #
|
3207
|
+
# # Range: string or WrappingType.
|
3208
3208
|
# # @return [RDF::Vocabulary::Term]
|
3209
3209
|
# attr_reader :hasWrappingType
|
3210
3210
|
#
|
@@ -3236,9 +3236,9 @@ module RDF::Vocab
|
|
3236
3236
|
# # @return [RDF::Vocabulary::Term]
|
3237
3237
|
# attr_reader :idDateOfCreation
|
3238
3238
|
#
|
3239
|
-
# # Range: string or anyURI.
|
3240
|
-
# #
|
3241
3239
|
# # To provide the value attribued to an Identifier.
|
3240
|
+
# #
|
3241
|
+
# # Range: string or anyURI.
|
3242
3242
|
# # @return [RDF::Vocabulary::Term]
|
3243
3243
|
# attr_reader :identifierValue
|
3244
3244
|
#
|
@@ -3276,15 +3276,15 @@ module RDF::Vocab
|
|
3276
3276
|
# # @return [RDF::Vocabulary::Term]
|
3277
3277
|
# attr_reader :isAttributedTo
|
3278
3278
|
#
|
3279
|
-
# # To identify a Brand.
|
3280
|
-
# #
|
3281
3279
|
# # Range: a string or Brand
|
3280
|
+
# #
|
3281
|
+
# # To identify a Brand.
|
3282
3282
|
# # @return [RDF::Vocabulary::Term]
|
3283
3283
|
# attr_reader :isBrand
|
3284
3284
|
#
|
3285
|
-
# # To identify a character.
|
3286
|
-
# #
|
3287
3285
|
# # Range: string or Agent.
|
3286
|
+
# #
|
3287
|
+
# # To identify a character.
|
3288
3288
|
# # @return [RDF::Vocabulary::Term]
|
3289
3289
|
# attr_reader :isCharacter
|
3290
3290
|
#
|
@@ -3330,21 +3330,21 @@ module RDF::Vocab
|
|
3330
3330
|
# # @return [RDF::Vocabulary::Term]
|
3331
3331
|
# attr_reader :isEpisodeOf
|
3332
3332
|
#
|
3333
|
-
# # Range: string or Season.
|
3334
|
-
# #
|
3335
3333
|
# # The Episode of a Series or a Season.
|
3334
|
+
# #
|
3335
|
+
# # Range: string or Season.
|
3336
3336
|
# # @return [RDF::Vocabulary::Term]
|
3337
3337
|
# attr_reader :isEpisodeOfSeason
|
3338
3338
|
#
|
3339
|
-
# # Range: string or Series.
|
3340
|
-
# #
|
3341
3339
|
# # The Episode of a Series or a Season.
|
3340
|
+
# #
|
3341
|
+
# # Range: string or Series.
|
3342
3342
|
# # @return [RDF::Vocabulary::Term]
|
3343
3343
|
# attr_reader :isEpisodeOfSeries
|
3344
3344
|
#
|
3345
|
-
# # Range: a string or a FictitiousPerson.
|
3346
|
-
# #
|
3347
3345
|
# # To identify a Contact/Person being fictitious.
|
3346
|
+
# #
|
3347
|
+
# # Range: a string or a FictitiousPerson.
|
3348
3348
|
# # @return [RDF::Vocabulary::Term]
|
3349
3349
|
# attr_reader :isFictitiousPerson
|
3350
3350
|
#
|
@@ -3366,9 +3366,9 @@ module RDF::Vocab
|
|
3366
3366
|
# # @return [RDF::Vocabulary::Term]
|
3367
3367
|
# attr_reader :isMediaFragmentOf
|
3368
3368
|
#
|
3369
|
-
# # To identify a Group to which an EditorialObject is a member of.
|
3370
|
-
# #
|
3371
3369
|
# # Range: string or Group.
|
3370
|
+
# #
|
3371
|
+
# # To identify a Group to which an EditorialObject is a member of.
|
3372
3372
|
# # @return [RDF::Vocabulary::Term]
|
3373
3373
|
# attr_reader :isMemberOf
|
3374
3374
|
#
|
@@ -3380,9 +3380,9 @@ module RDF::Vocab
|
|
3380
3380
|
# # @return [RDF::Vocabulary::Term]
|
3381
3381
|
# attr_reader :isNextInSequence
|
3382
3382
|
#
|
3383
|
-
# # To identify the Service that operates the PublicationChannel.
|
3384
|
-
# #
|
3385
3383
|
# # Range: string or Service.
|
3384
|
+
# #
|
3385
|
+
# # To identify the Service that operates the PublicationChannel.
|
3386
3386
|
# # @return [RDF::Vocabulary::Term]
|
3387
3387
|
# attr_reader :isOperatedBy
|
3388
3388
|
#
|
@@ -3418,9 +3418,9 @@ module RDF::Vocab
|
|
3418
3418
|
# # @return [RDF::Vocabulary::Term]
|
3419
3419
|
# attr_reader :isReferencedBy
|
3420
3420
|
#
|
3421
|
-
# # Range: Service or string
|
3422
|
-
# #
|
3423
3421
|
# # To identify a Service assocoated to a PublicationEvent.
|
3422
|
+
# #
|
3423
|
+
# # Range: Service or string
|
3424
3424
|
# # @return [RDF::Vocabulary::Term]
|
3425
3425
|
# attr_reader :isReleasedBy
|
3426
3426
|
#
|
@@ -3442,9 +3442,9 @@ module RDF::Vocab
|
|
3442
3442
|
# # @return [RDF::Vocabulary::Term]
|
3443
3443
|
# attr_reader :isSeasonOf
|
3444
3444
|
#
|
3445
|
-
# # Range: Brand or string.
|
3446
|
-
# #
|
3447
3445
|
# # To associate a Series with a Brand.
|
3446
|
+
# #
|
3447
|
+
# # Range: Brand or string.
|
3448
3448
|
# # @return [RDF::Vocabulary::Term]
|
3449
3449
|
# attr_reader :isSeriesOf
|
3450
3450
|
#
|
@@ -3464,15 +3464,15 @@ module RDF::Vocab
|
|
3464
3464
|
# # @return [RDF::Vocabulary::Term]
|
3465
3465
|
# attr_reader :lineNumber
|
3466
3466
|
#
|
3467
|
-
# # To provide a link to a Logo
|
3468
|
-
# #
|
3469
3467
|
# # Range: string or Logo
|
3468
|
+
# #
|
3469
|
+
# # To provide a link to a Logo
|
3470
3470
|
# # @return [RDF::Vocabulary::Term]
|
3471
3471
|
# attr_reader :linkToLogo
|
3472
3472
|
#
|
3473
|
-
# # To provide a link to a Sticker
|
3474
|
-
# #
|
3475
3473
|
# # Range: anyURI or Sticker.
|
3474
|
+
# #
|
3475
|
+
# # To provide a link to a Sticker
|
3476
3476
|
# # @return [RDF::Vocabulary::Term]
|
3477
3477
|
# attr_reader :linkToSticker
|
3478
3478
|
#
|
@@ -3542,9 +3542,9 @@ module RDF::Vocab
|
|
3542
3542
|
# # @return [RDF::Vocabulary::Term]
|
3543
3543
|
# attr_reader :locationName
|
3544
3544
|
#
|
3545
|
-
# # Range: string or RegionCode
|
3546
|
-
# #
|
3547
3545
|
# # To provide a description of a particular region assocoated to the Location.
|
3546
|
+
# #
|
3547
|
+
# # Range: string or RegionCode
|
3548
3548
|
# # @return [RDF::Vocabulary::Term]
|
3549
3549
|
# attr_reader :locationRegion
|
3550
3550
|
#
|
@@ -3614,9 +3614,9 @@ module RDF::Vocab
|
|
3614
3614
|
# # @return [RDF::Vocabulary::Term]
|
3615
3615
|
# attr_reader :mediaResourceId
|
3616
3616
|
#
|
3617
|
-
# # To identify a type of MediaResource, e.g. a template'.
|
3618
|
-
# #
|
3619
3617
|
# # Range: MediaResource_Type or string
|
3618
|
+
# #
|
3619
|
+
# # To identify a type of MediaResource, e.g. a template'.
|
3620
3620
|
# # @return [RDF::Vocabulary::Term]
|
3621
3621
|
# attr_reader :mediaResourceType
|
3622
3622
|
#
|
@@ -3680,9 +3680,9 @@ module RDF::Vocab
|
|
3680
3680
|
# # @return [RDF::Vocabulary::Term]
|
3681
3681
|
# attr_reader :organisationDescription
|
3682
3682
|
#
|
3683
|
-
# # The identifier attributed to an Organisation
|
3684
|
-
# #
|
3685
3683
|
# # Range: string or Identifier
|
3684
|
+
# #
|
3685
|
+
# # The identifier attributed to an Organisation
|
3686
3686
|
# # @return [RDF::Vocabulary::Term]
|
3687
3687
|
# attr_reader :organisationId
|
3688
3688
|
#
|
@@ -3690,9 +3690,9 @@ module RDF::Vocab
|
|
3690
3690
|
# # @return [RDF::Vocabulary::Term]
|
3691
3691
|
# attr_reader :organisationName
|
3692
3692
|
#
|
3693
|
-
# # To define a type of an Organisation.
|
3694
|
-
# #
|
3695
3693
|
# # Range: string or anyURI or Concept.
|
3694
|
+
# #
|
3695
|
+
# # To define a type of an Organisation.
|
3696
3696
|
# # @return [RDF::Vocabulary::Term]
|
3697
3697
|
# attr_reader :organisationType
|
3698
3698
|
#
|
@@ -3720,9 +3720,9 @@ module RDF::Vocab
|
|
3720
3720
|
# # @return [RDF::Vocabulary::Term]
|
3721
3721
|
# attr_reader :partDescription
|
3722
3722
|
#
|
3723
|
-
# # The identifier of a Part.
|
3724
|
-
# #
|
3725
3723
|
# # Range: a string or Identifier
|
3724
|
+
# #
|
3725
|
+
# # The identifier of a Part.
|
3726
3726
|
# # @return [RDF::Vocabulary::Term]
|
3727
3727
|
# attr_reader :partId
|
3728
3728
|
#
|
@@ -3746,9 +3746,9 @@ module RDF::Vocab
|
|
3746
3746
|
# # @return [RDF::Vocabulary::Term]
|
3747
3747
|
# attr_reader :personHeight
|
3748
3748
|
#
|
3749
|
-
# # An identifier attributed to a Person.
|
3750
|
-
# #
|
3751
3749
|
# # Range: an Identifier or anyURI or string.
|
3750
|
+
# #
|
3751
|
+
# # An identifier attributed to a Person.
|
3752
3752
|
# # @return [RDF::Vocabulary::Term]
|
3753
3753
|
# attr_reader :personId
|
3754
3754
|
#
|
@@ -3826,9 +3826,9 @@ module RDF::Vocab
|
|
3826
3826
|
# # @return [RDF::Vocabulary::Term]
|
3827
3827
|
# attr_reader :provenanceName
|
3828
3828
|
#
|
3829
|
-
# # To define a type of Provenance.
|
3830
|
-
# #
|
3831
3829
|
# # Range: string, anyURI or Concept.
|
3830
|
+
# #
|
3831
|
+
# # To define a type of Provenance.
|
3832
3832
|
# # @return [RDF::Vocabulary::Term]
|
3833
3833
|
# attr_reader :provenanceType
|
3834
3834
|
#
|
@@ -3872,9 +3872,9 @@ module RDF::Vocab
|
|
3872
3872
|
# # @return [RDF::Vocabulary::Term]
|
3873
3873
|
# attr_reader :publicationEventDescription
|
3874
3874
|
#
|
3875
|
-
# # Range: Identifier, anyURI, string
|
3876
|
-
# #
|
3877
3875
|
# # An identifier attributed to a PublicationEvent.
|
3876
|
+
# #
|
3877
|
+
# # Range: Identifier, anyURI, string
|
3878
3878
|
# # @return [RDF::Vocabulary::Term]
|
3879
3879
|
# attr_reader :publicationEventId
|
3880
3880
|
#
|
@@ -3886,9 +3886,9 @@ module RDF::Vocab
|
|
3886
3886
|
# # @return [RDF::Vocabulary::Term]
|
3887
3887
|
# attr_reader :publicationEventTitle
|
3888
3888
|
#
|
3889
|
-
# # A type of PublicationEvent.
|
3890
|
-
# #
|
3891
3889
|
# # Range: a string or PublicationEvent_Type
|
3890
|
+
# #
|
3891
|
+
# # A type of PublicationEvent.
|
3892
3892
|
# # @return [RDF::Vocabulary::Term]
|
3893
3893
|
# attr_reader :publicationEventType
|
3894
3894
|
#
|
@@ -4028,9 +4028,9 @@ module RDF::Vocab
|
|
4028
4028
|
# # @return [RDF::Vocabulary::Term]
|
4029
4029
|
# attr_reader :relationTotalNumberOfGroupMembers
|
4030
4030
|
#
|
4031
|
-
# # Range: string or Relation_Type.
|
4032
|
-
# #
|
4033
4031
|
# # To define a type of Relation.
|
4032
|
+
# #
|
4033
|
+
# # Range: string or Relation_Type.
|
4034
4034
|
# # @return [RDF::Vocabulary::Term]
|
4035
4035
|
# attr_reader :relationType
|
4036
4036
|
#
|
@@ -4144,9 +4144,9 @@ module RDF::Vocab
|
|
4144
4144
|
# # @return [RDF::Vocabulary::Term]
|
4145
4145
|
# attr_reader :rightsTerritoryIncludes
|
4146
4146
|
#
|
4147
|
-
# # Range: a string or a Rights_Type or a ContractType.
|
4148
|
-
# #
|
4149
4147
|
# # To identify a type of Rights.
|
4148
|
+
# #
|
4149
|
+
# # Range: a string or a Rights_Type or a ContractType.
|
4150
4150
|
# # @return [RDF::Vocabulary::Term]
|
4151
4151
|
# attr_reader :rightsType
|
4152
4152
|
#
|
@@ -4364,9 +4364,9 @@ module RDF::Vocab
|
|
4364
4364
|
# # @return [RDF::Vocabulary::Term]
|
4365
4365
|
# attr_reader :timelineTrackDurationTimecodeDropFrame
|
4366
4366
|
#
|
4367
|
-
# # Specifies the title or name given to the resource. A root for the definition of subproperties defining ebucore titles of different types. The ebucore title type can be used to define sub-properties to optionally refine the category of the title.
|
4368
|
-
# #
|
4369
4367
|
# # All value of the EBU title status classification scheme (http://www.ebu.ch/metadata/cs/web/ebu_TitleStatusCodeCS_p.xml.htm) are candidates subproperties of the title property as implemented for an example with alternativeTitle.
|
4368
|
+
# #
|
4369
|
+
# # Specifies the title or name given to the resource. A root for the definition of subproperties defining ebucore titles of different types. The ebucore title type can be used to define sub-properties to optionally refine the category of the title.
|
4370
4370
|
# # @return [RDF::Vocabulary::Term]
|
4371
4371
|
# attr_reader :title
|
4372
4372
|
#
|
@@ -4392,9 +4392,9 @@ module RDF::Vocab
|
|
4392
4392
|
# # @return [RDF::Vocabulary::Term]
|
4393
4393
|
# attr_reader :trackName
|
4394
4394
|
#
|
4395
|
-
# # Range: string or Track_Type
|
4396
|
-
# #
|
4397
4395
|
# # The type attributed to a Track.
|
4396
|
+
# #
|
4397
|
+
# # Range: string or Track_Type
|
4398
4398
|
# # @return [RDF::Vocabulary::Term]
|
4399
4399
|
# attr_reader :trackType
|
4400
4400
|
#
|