rdf-vocab 3.2.0 → 3.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -4
  3. data/VERSION +1 -1
  4. data/lib/rdf/vocab/acl.rb +91 -89
  5. data/lib/rdf/vocab/as.rb +624 -622
  6. data/lib/rdf/vocab/bf2.rb +2241 -2239
  7. data/lib/rdf/vocab/bibframe.rb +2241 -2239
  8. data/lib/rdf/vocab/bibo.rb +943 -941
  9. data/lib/rdf/vocab/cc.rb +102 -100
  10. data/lib/rdf/vocab/cert.rb +107 -105
  11. data/lib/rdf/vocab/cnt.rb +92 -90
  12. data/lib/rdf/vocab/crm.rb +1793 -1791
  13. data/lib/rdf/vocab/datacite.rb +261 -263
  14. data/lib/rdf/vocab/dbo.rb +4307 -4305
  15. data/lib/rdf/vocab/dc.rb +665 -663
  16. data/lib/rdf/vocab/dc11.rb +109 -107
  17. data/lib/rdf/vocab/dcat.rb +373 -356
  18. data/lib/rdf/vocab/dcmitype.rb +91 -89
  19. data/lib/rdf/vocab/disco.rb +348 -346
  20. data/lib/rdf/vocab/doap.rb +304 -302
  21. data/lib/rdf/vocab/dwc.rb +2244 -2242
  22. data/lib/rdf/vocab/earl.rb +146 -144
  23. data/lib/rdf/vocab/ebucore.rb +4945 -4941
  24. data/lib/rdf/vocab/edm.rb +310 -308
  25. data/lib/rdf/vocab/exif.rb +777 -775
  26. data/lib/rdf/vocab/extensions.rb +2 -2
  27. data/lib/rdf/vocab/fcrepo4.rb +307 -305
  28. data/lib/rdf/vocab/foaf.rb +525 -523
  29. data/lib/rdf/vocab/geo.rb +34 -32
  30. data/lib/rdf/vocab/geojson.rb +66 -64
  31. data/lib/rdf/vocab/geonames.rb +3656 -3654
  32. data/lib/rdf/vocab/gr.rb +1204 -1202
  33. data/lib/rdf/vocab/gs1.rb +5881 -5879
  34. data/lib/rdf/vocab/ht.rb +194 -192
  35. data/lib/rdf/vocab/hydra.rb +439 -437
  36. data/lib/rdf/vocab/iana.rb +215 -213
  37. data/lib/rdf/vocab/ical.rb +726 -724
  38. data/lib/rdf/vocab/identifiers.rb +219 -217
  39. data/lib/rdf/vocab/iiif.rb +132 -130
  40. data/lib/rdf/vocab/jsonld.rb +205 -203
  41. data/lib/rdf/vocab/ldp.rb +193 -191
  42. data/lib/rdf/vocab/lrmi.rb +188 -186
  43. data/lib/rdf/vocab/ma.rb +318 -316
  44. data/lib/rdf/vocab/mads.rb +670 -668
  45. data/lib/rdf/vocab/marcrelators.rb +543 -541
  46. data/lib/rdf/vocab/mo.rb +1823 -1821
  47. data/lib/rdf/vocab/mods.rb +636 -634
  48. data/lib/rdf/vocab/nfo.rb +482 -480
  49. data/lib/rdf/vocab/oa.rb +333 -331
  50. data/lib/rdf/vocab/og.rb +198 -196
  51. data/lib/rdf/vocab/ogc.rb +43 -41
  52. data/lib/rdf/vocab/ore.rb +79 -77
  53. data/lib/rdf/vocab/org.rb +322 -320
  54. data/lib/rdf/vocab/pcdm.rb +73 -71
  55. data/lib/rdf/vocab/pplan.rb +97 -95
  56. data/lib/rdf/vocab/premis.rb +903 -901
  57. data/lib/rdf/vocab/premiseventtype.rb +143 -141
  58. data/lib/rdf/vocab/prov.rb +1360 -1358
  59. data/lib/rdf/vocab/ptr.rb +147 -145
  60. data/lib/rdf/vocab/rdau.rb +9447 -9438
  61. data/lib/rdf/vocab/rightsstatements.rb +123 -121
  62. data/lib/rdf/vocab/rsa.rb +44 -42
  63. data/lib/rdf/vocab/rss.rb +46 -44
  64. data/lib/rdf/vocab/schema.rb +14700 -14698
  65. data/lib/rdf/vocab/schemas.rb +14700 -14698
  66. data/lib/rdf/vocab/sd.rb +165 -163
  67. data/lib/rdf/vocab/sh.rb +1096 -1094
  68. data/lib/rdf/vocab/sioc.rb +615 -613
  69. data/lib/rdf/vocab/siocservices.rb +49 -47
  70. data/lib/rdf/vocab/sioctypes.rb +224 -222
  71. data/lib/rdf/vocab/skos.rb +202 -200
  72. data/lib/rdf/vocab/skosxl.rb +51 -49
  73. data/lib/rdf/vocab/v.rb +233 -231
  74. data/lib/rdf/vocab/vcard.rb +776 -774
  75. data/lib/rdf/vocab/vmd.rb +233 -231
  76. data/lib/rdf/vocab/void.rb +145 -143
  77. data/lib/rdf/vocab/vs.rb +27 -25
  78. data/lib/rdf/vocab/wdrs.rb +112 -110
  79. data/lib/rdf/vocab/wot.rb +135 -133
  80. data/lib/rdf/vocab/xhtml.rb +4 -2
  81. data/lib/rdf/vocab/xhv.rb +208 -206
  82. data/lib/rdf/vocab/xkos.rb +220 -218
  83. data/lib/rdf/vocab.rb +2 -0
  84. metadata +14 -3
data/lib/rdf/vocab/mo.rb CHANGED
@@ -3,2154 +3,2156 @@
3
3
  # This file generated automatically using rdf vocabulary format from http://purl.org/ontology/mo/
4
4
  require 'rdf'
5
5
  module RDF::Vocab
6
+ # Vocabulary for <http://purl.org/ontology/mo/>
7
+ # @!visibility private
6
8
  MO = Class.new(RDF::Vocabulary("http://purl.org/ontology/mo/")) do
7
9
 
8
10
  # Ontology definition
9
11
  ontology :"http://purl.org/ontology/mo/",
10
- "http://purl.org/dc/elements/1.1/created": "2006/12/21 12:00:00".freeze,
11
- "http://purl.org/dc/elements/1.1/date": "2013/07/22 16:54:19".freeze,
12
- "http://purl.org/dc/elements/1.1/description": "\n The Music Ontology Specification provides main concepts and \n properties fo describing music (i.e. artists, albums and tracks) \n on the Semantic Web. \n ".freeze,
13
- "http://purl.org/dc/elements/1.1/title": "The Music Ontology".freeze,
14
- "http://purl.org/vocab/vann/preferredNamespacePrefix": "mo".freeze,
15
- "http://purl.org/vocab/vann/preferredNamespaceUri": "http://purl.org/ontology/mo/".freeze,
16
- "http://www.w3.org/2002/07/owl#imports": ["http://purl.org/NET/c4dm/event.owl".freeze, "http://purl.org/NET/c4dm/keys.owl".freeze, "http://purl.org/dc/terms/".freeze, "http://purl.org/ontology/ao/core".freeze, "http://purl.org/vocab/bio/0.1/".freeze, "http://purl.org/vocab/frbr/core".freeze, "http://www.w3.org/2006/time".freeze, "http://xmlns.com/foaf/0.1/".freeze],
17
- "http://www.w3.org/2002/07/owl#versionInfo": "Revision: 2.1.5".freeze,
18
- "http://xmlns.com/foaf/0.1/maker": ["http://foaf.me/zazi#me".freeze, "http://kurtisrandom.com/foaf.rdf#kurtjx".freeze, "http://raimond.me.uk/foaf.rdf#moustaki".freeze, "http://www.talkdigger.com/foaf/fgiasson".freeze, term(
19
- "http://xmlns.com/foaf/0.1/homepage": "http://apassant.net/".freeze,
20
- "http://xmlns.com/foaf/0.1/name": "Alexandre Passant".freeze
12
+ "http://purl.org/dc/elements/1.1/created": "2006/12/21 12:00:00",
13
+ "http://purl.org/dc/elements/1.1/date": "2013/07/22 16:54:19",
14
+ "http://purl.org/dc/elements/1.1/description": "\n The Music Ontology Specification provides main concepts and \n properties fo describing music (i.e. artists, albums and tracks) \n on the Semantic Web. \n ",
15
+ "http://purl.org/dc/elements/1.1/title": "The Music Ontology",
16
+ "http://purl.org/vocab/vann/preferredNamespacePrefix": "mo",
17
+ "http://purl.org/vocab/vann/preferredNamespaceUri": "http://purl.org/ontology/mo/",
18
+ "http://www.w3.org/2002/07/owl#imports": ["http://purl.org/NET/c4dm/event.owl", "http://purl.org/NET/c4dm/keys.owl", "http://purl.org/dc/terms/", "http://purl.org/ontology/ao/core", "http://purl.org/vocab/bio/0.1/", "http://purl.org/vocab/frbr/core", "http://www.w3.org/2006/time", "http://xmlns.com/foaf/0.1/"],
19
+ "http://www.w3.org/2002/07/owl#versionInfo": "Revision: 2.1.5",
20
+ "http://xmlns.com/foaf/0.1/maker": ["http://foaf.me/zazi#me", "http://kurtisrandom.com/foaf.rdf#kurtjx", "http://raimond.me.uk/foaf.rdf#moustaki", "http://www.talkdigger.com/foaf/fgiasson", term(
21
+ "http://xmlns.com/foaf/0.1/homepage": "http://apassant.net/",
22
+ "http://xmlns.com/foaf/0.1/name": "Alexandre Passant"
21
23
  ), term(
22
- "http://xmlns.com/foaf/0.1/homepage": "http://simon-reinhardt.de/".freeze,
23
- "http://xmlns.com/foaf/0.1/name": "Simon Reinhardt".freeze
24
+ "http://xmlns.com/foaf/0.1/homepage": "http://simon-reinhardt.de/",
25
+ "http://xmlns.com/foaf/0.1/name": "Simon Reinhardt"
24
26
  ), term(
25
- "http://xmlns.com/foaf/0.1/name": "George Fazekas".freeze
27
+ "http://xmlns.com/foaf/0.1/name": "George Fazekas"
26
28
  )],
27
- type: "http://www.w3.org/2002/07/owl#Ontology".freeze
29
+ type: "http://www.w3.org/2002/07/owl#Ontology"
28
30
 
29
31
  # Class definitions
30
32
  term :Activity,
31
- comment: "\n An activity period, defining when an artist was musically active.\n ".freeze,
32
- "http://purl.org/ontology/mo/level": "1".freeze,
33
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
34
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
35
- label: "activity".freeze,
36
- subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
37
- type: "http://www.w3.org/2002/07/owl#Class".freeze
33
+ comment: "\n An activity period, defining when an artist was musically active.\n ",
34
+ "http://purl.org/ontology/mo/level": "1",
35
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
36
+ isDefinedBy: "http://purl.org/ontology/mo/",
37
+ label: "activity",
38
+ subClassOf: "http://purl.org/NET/c4dm/event.owl#Event",
39
+ type: "http://www.w3.org/2002/07/owl#Class"
38
40
  term :AnalogSignal,
39
- comment: "\n An analog signal.\n ".freeze,
40
- "http://purl.org/ontology/mo/level": "2".freeze,
41
- "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/ontology/mo/DigitalSignal".freeze,
42
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
43
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
44
- label: "analogue signal".freeze,
45
- subClassOf: "http://purl.org/ontology/mo/Signal".freeze,
46
- type: "http://www.w3.org/2002/07/owl#Class".freeze
41
+ comment: "\n An analog signal.\n ",
42
+ "http://purl.org/ontology/mo/level": "2",
43
+ "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/ontology/mo/DigitalSignal",
44
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
45
+ isDefinedBy: "http://purl.org/ontology/mo/",
46
+ label: "analogue signal",
47
+ subClassOf: "http://purl.org/ontology/mo/Signal",
48
+ type: "http://www.w3.org/2002/07/owl#Class"
47
49
  term :Arrangement,
48
- comment: "\n An arrangement event.\n Takes as agent the arranger, and produces a score (informational object, not the actually published score).\n ".freeze,
49
- "http://purl.org/ontology/mo/level": "2".freeze,
50
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
51
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
52
- label: "arrangement".freeze,
53
- subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
54
- type: "http://www.w3.org/2002/07/owl#Class".freeze
50
+ comment: "\n An arrangement event.\n Takes as agent the arranger, and produces a score (informational object, not the actually published score).\n ",
51
+ "http://purl.org/ontology/mo/level": "2",
52
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
53
+ isDefinedBy: "http://purl.org/ontology/mo/",
54
+ label: "arrangement",
55
+ subClassOf: "http://purl.org/NET/c4dm/event.owl#Event",
56
+ type: "http://www.w3.org/2002/07/owl#Class"
55
57
  term :Arranger,
56
58
  equivalentClass: term(
57
- onProperty: "http://purl.org/NET/c4dm/event.owl#isAgentIn".freeze,
58
- someValuesFrom: "http://purl.org/ontology/mo/Arrangement".freeze,
59
- type: "http://www.w3.org/2002/07/owl#Restriction".freeze
59
+ onProperty: "http://purl.org/NET/c4dm/event.owl#isAgentIn",
60
+ someValuesFrom: "http://purl.org/ontology/mo/Arrangement",
61
+ type: "http://www.w3.org/2002/07/owl#Restriction"
60
62
  ),
61
- "http://purl.org/ontology/mo/level": "2".freeze,
62
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
63
- label: "arranger".freeze,
64
- subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze,
65
- type: "http://www.w3.org/2002/07/owl#Class".freeze
63
+ "http://purl.org/ontology/mo/level": "2",
64
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
65
+ label: "arranger",
66
+ subClassOf: "http://xmlns.com/foaf/0.1/Agent",
67
+ type: "http://www.w3.org/2002/07/owl#Class"
66
68
  term :AudioFile,
67
- comment: "An audio file, which may be available on a local file system or through http, ftp, etc.".freeze,
68
- "http://purl.org/ontology/mo/level": "1".freeze,
69
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
70
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
71
- label: "audio file".freeze,
72
- subClassOf: ["http://purl.org/ontology/mo/Medium".freeze, "http://xmlns.com/foaf/0.1/Document".freeze],
73
- type: "http://www.w3.org/2002/07/owl#Class".freeze
69
+ comment: "An audio file, which may be available on a local file system or through http, ftp, etc.",
70
+ "http://purl.org/ontology/mo/level": "1",
71
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
72
+ isDefinedBy: "http://purl.org/ontology/mo/",
73
+ label: "audio file",
74
+ subClassOf: ["http://purl.org/ontology/mo/Medium", "http://xmlns.com/foaf/0.1/Document"],
75
+ type: "http://www.w3.org/2002/07/owl#Class"
74
76
  term :CD,
75
- comment: "Compact Disc used as medium to record a musical manifestation.".freeze,
76
- "http://purl.org/ontology/mo/level": "1".freeze,
77
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
78
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
79
- label: "CD".freeze,
80
- subClassOf: "http://purl.org/ontology/mo/Medium".freeze,
81
- type: "http://www.w3.org/2002/07/owl#Class".freeze
77
+ comment: "Compact Disc used as medium to record a musical manifestation.",
78
+ "http://purl.org/ontology/mo/level": "1",
79
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
80
+ isDefinedBy: "http://purl.org/ontology/mo/",
81
+ label: "CD",
82
+ subClassOf: "http://purl.org/ontology/mo/Medium",
83
+ type: "http://www.w3.org/2002/07/owl#Class"
82
84
  term :Composer,
83
85
  equivalentClass: term(
84
- onProperty: "http://purl.org/NET/c4dm/event.owl#isAgentIn".freeze,
85
- someValuesFrom: "http://purl.org/ontology/mo/Composition".freeze,
86
- type: "http://www.w3.org/2002/07/owl#Restriction".freeze
86
+ onProperty: "http://purl.org/NET/c4dm/event.owl#isAgentIn",
87
+ someValuesFrom: "http://purl.org/ontology/mo/Composition",
88
+ type: "http://www.w3.org/2002/07/owl#Restriction"
87
89
  ),
88
- "http://purl.org/ontology/mo/level": "2".freeze,
89
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
90
- label: "composer".freeze,
91
- subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze,
92
- type: "http://www.w3.org/2002/07/owl#Class".freeze
90
+ "http://purl.org/ontology/mo/level": "2",
91
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
92
+ label: "composer",
93
+ subClassOf: "http://xmlns.com/foaf/0.1/Agent",
94
+ type: "http://www.w3.org/2002/07/owl#Class"
93
95
  term :Composition,
94
- comment: "\n A composition event.\n Takes as agent the composer himself.\n It produces a MusicalWork, or a MusicalExpression (when the initial \"product\" is a score, for example), or both...\n ".freeze,
95
- "http://purl.org/ontology/mo/level": "2".freeze,
96
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
97
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
98
- label: "composition".freeze,
99
- subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
100
- type: "http://www.w3.org/2002/07/owl#Class".freeze
96
+ comment: "\n A composition event.\n Takes as agent the composer himself.\n It produces a MusicalWork, or a MusicalExpression (when the initial \"product\" is a score, for example), or both...\n ",
97
+ "http://purl.org/ontology/mo/level": "2",
98
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
99
+ isDefinedBy: "http://purl.org/ontology/mo/",
100
+ label: "composition",
101
+ subClassOf: "http://purl.org/NET/c4dm/event.owl#Event",
102
+ type: "http://www.w3.org/2002/07/owl#Class"
101
103
  term :Conductor,
102
104
  equivalentClass: term(
103
- onProperty: "http://purl.org/ontology/mo/conducted".freeze,
104
- someValuesFrom: "http://purl.org/ontology/mo/Performance".freeze,
105
- type: "http://www.w3.org/2002/07/owl#Restriction".freeze
105
+ onProperty: "http://purl.org/ontology/mo/conducted",
106
+ someValuesFrom: "http://purl.org/ontology/mo/Performance",
107
+ type: "http://www.w3.org/2002/07/owl#Restriction"
106
108
  ),
107
- "http://purl.org/ontology/mo/level": "2".freeze,
108
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
109
- label: "conductor".freeze,
110
- subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze,
111
- type: "http://www.w3.org/2002/07/owl#Class".freeze
109
+ "http://purl.org/ontology/mo/level": "2",
110
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
111
+ label: "conductor",
112
+ subClassOf: "http://xmlns.com/foaf/0.1/Agent",
113
+ type: "http://www.w3.org/2002/07/owl#Class"
112
114
  term :CorporateBody,
113
- comment: "Organization or group of individuals and/or other organizations involved in the music market.".freeze,
114
- "http://purl.org/ontology/mo/level": "1".freeze,
115
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
116
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
117
- label: "corporate body".freeze,
118
- subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze,
119
- type: "http://www.w3.org/2002/07/owl#Class".freeze
115
+ comment: "Organization or group of individuals and/or other organizations involved in the music market.",
116
+ "http://purl.org/ontology/mo/level": "1",
117
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
118
+ isDefinedBy: "http://purl.org/ontology/mo/",
119
+ label: "corporate body",
120
+ subClassOf: "http://xmlns.com/foaf/0.1/Organization",
121
+ type: "http://www.w3.org/2002/07/owl#Class"
120
122
  term :DAT,
121
- comment: "Digital Audio Tape used as medium to record a musical manifestation.".freeze,
122
- "http://purl.org/ontology/mo/level": "1".freeze,
123
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
124
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
125
- label: "DAT".freeze,
126
- subClassOf: "http://purl.org/ontology/mo/Medium".freeze,
127
- type: "http://www.w3.org/2002/07/owl#Class".freeze
123
+ comment: "Digital Audio Tape used as medium to record a musical manifestation.",
124
+ "http://purl.org/ontology/mo/level": "1",
125
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
126
+ isDefinedBy: "http://purl.org/ontology/mo/",
127
+ label: "DAT",
128
+ subClassOf: "http://purl.org/ontology/mo/Medium",
129
+ type: "http://www.w3.org/2002/07/owl#Class"
128
130
  term :DCC,
129
- comment: "Digital Compact Cassette used as medium to record a musical manifestation.".freeze,
130
- "http://purl.org/ontology/mo/level": "1".freeze,
131
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
132
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
133
- label: "DCC".freeze,
134
- subClassOf: "http://purl.org/ontology/mo/Medium".freeze,
135
- type: "http://www.w3.org/2002/07/owl#Class".freeze
131
+ comment: "Digital Compact Cassette used as medium to record a musical manifestation.",
132
+ "http://purl.org/ontology/mo/level": "1",
133
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
134
+ isDefinedBy: "http://purl.org/ontology/mo/",
135
+ label: "DCC",
136
+ subClassOf: "http://purl.org/ontology/mo/Medium",
137
+ type: "http://www.w3.org/2002/07/owl#Class"
136
138
  term :DVDA,
137
- comment: "DVD-Audio used as medium to record a musical manifestation.".freeze,
138
- "http://purl.org/ontology/mo/level": "1".freeze,
139
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
140
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
141
- label: "DVDA".freeze,
142
- subClassOf: "http://purl.org/ontology/mo/Medium".freeze,
143
- type: "http://www.w3.org/2002/07/owl#Class".freeze
139
+ comment: "DVD-Audio used as medium to record a musical manifestation.",
140
+ "http://purl.org/ontology/mo/level": "1",
141
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
142
+ isDefinedBy: "http://purl.org/ontology/mo/",
143
+ label: "DVDA",
144
+ subClassOf: "http://purl.org/ontology/mo/Medium",
145
+ type: "http://www.w3.org/2002/07/owl#Class"
144
146
  term :DigitalSignal,
145
- comment: "\n A digital signal\n ".freeze,
146
- "http://purl.org/ontology/mo/level": "2".freeze,
147
- "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/ontology/mo/AnalogSignal".freeze,
148
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
149
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
150
- label: "digital signal".freeze,
151
- subClassOf: "http://purl.org/ontology/mo/Signal".freeze,
152
- type: "http://www.w3.org/2002/07/owl#Class".freeze
147
+ comment: "\n A digital signal\n ",
148
+ "http://purl.org/ontology/mo/level": "2",
149
+ "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/ontology/mo/AnalogSignal",
150
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
151
+ isDefinedBy: "http://purl.org/ontology/mo/",
152
+ label: "digital signal",
153
+ subClassOf: "http://purl.org/ontology/mo/Signal",
154
+ type: "http://www.w3.org/2002/07/owl#Class"
153
155
  term :ED2K,
154
- comment: "Something available on the E-Donkey peer-2-peer filesharing network".freeze,
155
- "http://purl.org/ontology/mo/level": "1".freeze,
156
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
157
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
158
- label: "ED2K".freeze,
159
- subClassOf: "http://purl.org/ontology/mo/Medium".freeze,
160
- type: "http://www.w3.org/2002/07/owl#Class".freeze
156
+ comment: "Something available on the E-Donkey peer-2-peer filesharing network",
157
+ "http://purl.org/ontology/mo/level": "1",
158
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
159
+ isDefinedBy: "http://purl.org/ontology/mo/",
160
+ label: "ED2K",
161
+ subClassOf: "http://purl.org/ontology/mo/Medium",
162
+ type: "http://www.w3.org/2002/07/owl#Class"
161
163
  term :Festival,
162
- comment: "\n A festival - musical/artistic event lasting several days, like Glastonbury, Rock Am Ring...\n We migth decompose this event (which is in fact just a classification of the space/time region related to \n a particular festival) using hasSubEvent in several performances at different space/time.\n ".freeze,
163
- "http://purl.org/ontology/mo/level": "2".freeze,
164
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
165
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
166
- label: "Festival".freeze,
167
- subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
168
- type: "http://www.w3.org/2002/07/owl#Class".freeze
164
+ comment: "\n A festival - musical/artistic event lasting several days, like Glastonbury, Rock Am Ring...\n We migth decompose this event (which is in fact just a classification of the space/time region related to \n a particular festival) using hasSubEvent in several performances at different space/time.\n ",
165
+ "http://purl.org/ontology/mo/level": "2",
166
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
167
+ isDefinedBy: "http://purl.org/ontology/mo/",
168
+ label: "Festival",
169
+ subClassOf: "http://purl.org/NET/c4dm/event.owl#Event",
170
+ type: "http://www.w3.org/2002/07/owl#Class"
169
171
  term :Genre,
170
- comment: "\n An expressive style of music.\n \n Any taxonomy can be plug-in here. You can either define a genre by yourself, like this:\n\n :mygenre a mo:Genre; dc:title \"electro rock\".\n\n Or you can refer to a DBPedia genre (such as http://dbpedia.org/resource/Baroque_music), allowing semantic web\n clients to access easily really detailed structured information about the genre you are refering to.\n ".freeze,
171
- "http://purl.org/ontology/mo/level": "2".freeze,
172
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
173
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
174
- label: "Genre".freeze,
175
- type: "http://www.w3.org/2002/07/owl#Class".freeze
172
+ comment: "\n An expressive style of music.\n \n Any taxonomy can be plug-in here. You can either define a genre by yourself, like this:\n\n :mygenre a mo:Genre; dc:title \"electro rock\".\n\n Or you can refer to a DBPedia genre (such as http://dbpedia.org/resource/Baroque_music), allowing semantic web\n clients to access easily really detailed structured information about the genre you are refering to.\n ",
173
+ "http://purl.org/ontology/mo/level": "2",
174
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
175
+ isDefinedBy: "http://purl.org/ontology/mo/",
176
+ label: "Genre",
177
+ type: "http://www.w3.org/2002/07/owl#Class"
176
178
  term :Instrument,
177
- comment: "\n Any of various devices or contrivances that can be used to produce musical tones or sound.\n \n Any taxonomy can be used to subsume this concept. The default one is one extracted by Ivan Herman\n from the Musicbrainz instrument taxonomy, conforming to SKOS. This concept holds a seeAlso link \n towards this taxonomy.\n ".freeze,
178
- "http://purl.org/ontology/mo/level": "2".freeze,
179
- "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/ontology/mo/mit#".freeze,
180
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
181
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
182
- label: "Instrument".freeze,
183
- type: "http://www.w3.org/2002/07/owl#Class".freeze
179
+ comment: "\n Any of various devices or contrivances that can be used to produce musical tones or sound.\n \n Any taxonomy can be used to subsume this concept. The default one is one extracted by Ivan Herman\n from the Musicbrainz instrument taxonomy, conforming to SKOS. This concept holds a seeAlso link \n towards this taxonomy.\n ",
180
+ "http://purl.org/ontology/mo/level": "2",
181
+ "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/ontology/mo/mit#",
182
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
183
+ isDefinedBy: "http://purl.org/ontology/mo/",
184
+ label: "Instrument",
185
+ type: "http://www.w3.org/2002/07/owl#Class"
184
186
  term :Instrumentation,
185
- comment: "\n Instrumentation deals with the techniques of writing music for a specific instrument, \n including the limitations of the instrument, playing techniques and idiomatic handling of the instrument.\n ".freeze,
186
- "http://purl.org/ontology/mo/level": "2".freeze,
187
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
188
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
189
- label: "instrumentation".freeze,
190
- subClassOf: "http://purl.org/ontology/mo/Arrangement".freeze,
191
- type: "http://www.w3.org/2002/07/owl#Class".freeze
187
+ comment: "\n Instrumentation deals with the techniques of writing music for a specific instrument, \n including the limitations of the instrument, playing techniques and idiomatic handling of the instrument.\n ",
188
+ "http://purl.org/ontology/mo/level": "2",
189
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
190
+ isDefinedBy: "http://purl.org/ontology/mo/",
191
+ label: "instrumentation",
192
+ subClassOf: "http://purl.org/ontology/mo/Arrangement",
193
+ type: "http://www.w3.org/2002/07/owl#Class"
192
194
  term :Label,
193
- comment: "Trade name of a company that produces musical works or expression of musical works.".freeze,
194
- "http://purl.org/ontology/mo/level": "1".freeze,
195
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
196
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
197
- label: "label".freeze,
198
- subClassOf: "http://purl.org/ontology/mo/CorporateBody".freeze,
199
- type: "http://www.w3.org/2002/07/owl#Class".freeze
195
+ comment: "Trade name of a company that produces musical works or expression of musical works.",
196
+ "http://purl.org/ontology/mo/level": "1",
197
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
198
+ isDefinedBy: "http://purl.org/ontology/mo/",
199
+ label: "label",
200
+ subClassOf: "http://purl.org/ontology/mo/CorporateBody",
201
+ type: "http://www.w3.org/2002/07/owl#Class"
200
202
  term :Libretto,
201
- comment: "\n Libretto\n ".freeze,
202
- "http://purl.org/ontology/mo/level": "2".freeze,
203
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
204
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
205
- label: "libretto".freeze,
206
- subClassOf: "http://purl.org/ontology/mo/MusicalExpression".freeze,
207
- type: "http://www.w3.org/2002/07/owl#Class".freeze
203
+ comment: "\n Libretto\n ",
204
+ "http://purl.org/ontology/mo/level": "2",
205
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
206
+ isDefinedBy: "http://purl.org/ontology/mo/",
207
+ label: "libretto",
208
+ subClassOf: "http://purl.org/ontology/mo/MusicalExpression",
209
+ type: "http://www.w3.org/2002/07/owl#Class"
208
210
  term :Listener,
209
211
  equivalentClass: term(
210
- onProperty: "http://purl.org/ontology/mo/listened".freeze,
211
- someValuesFrom: "http://purl.org/ontology/mo/Performance".freeze,
212
- type: "http://www.w3.org/2002/07/owl#Restriction".freeze
212
+ onProperty: "http://purl.org/ontology/mo/listened",
213
+ someValuesFrom: "http://purl.org/ontology/mo/Performance",
214
+ type: "http://www.w3.org/2002/07/owl#Restriction"
213
215
  ),
214
- "http://purl.org/ontology/mo/level": "2".freeze,
215
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
216
- label: "listened".freeze,
217
- subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze,
218
- type: "http://www.w3.org/2002/07/owl#Class".freeze
216
+ "http://purl.org/ontology/mo/level": "2",
217
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
218
+ label: "listened",
219
+ subClassOf: "http://xmlns.com/foaf/0.1/Agent",
220
+ type: "http://www.w3.org/2002/07/owl#Class"
219
221
  term :Lyrics,
220
- comment: "\n Lyrics\n ".freeze,
221
- "http://purl.org/ontology/mo/level": "2".freeze,
222
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
223
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
224
- label: "lyrics".freeze,
225
- subClassOf: "http://purl.org/ontology/mo/MusicalExpression".freeze,
226
- type: "http://www.w3.org/2002/07/owl#Class".freeze
222
+ comment: "\n Lyrics\n ",
223
+ "http://purl.org/ontology/mo/level": "2",
224
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
225
+ isDefinedBy: "http://purl.org/ontology/mo/",
226
+ label: "lyrics",
227
+ subClassOf: "http://purl.org/ontology/mo/MusicalExpression",
228
+ type: "http://www.w3.org/2002/07/owl#Class"
227
229
  term :MD,
228
- comment: "Mini Disc used as medium to record a musical manifestation.".freeze,
229
- "http://purl.org/ontology/mo/level": "1".freeze,
230
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
231
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
232
- label: "MD".freeze,
233
- subClassOf: "http://purl.org/ontology/mo/Medium".freeze,
234
- type: "http://www.w3.org/2002/07/owl#Class".freeze
230
+ comment: "Mini Disc used as medium to record a musical manifestation.",
231
+ "http://purl.org/ontology/mo/level": "1",
232
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
233
+ isDefinedBy: "http://purl.org/ontology/mo/",
234
+ label: "MD",
235
+ subClassOf: "http://purl.org/ontology/mo/Medium",
236
+ type: "http://www.w3.org/2002/07/owl#Class"
235
237
  term :MagneticTape,
236
- comment: "Magnetic analogue tape used as medium to record a musical manifestation.".freeze,
237
- "http://purl.org/ontology/mo/level": "1".freeze,
238
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
239
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
240
- label: "MagneticTape".freeze,
241
- subClassOf: "http://purl.org/ontology/mo/Medium".freeze,
242
- type: "http://www.w3.org/2002/07/owl#Class".freeze
238
+ comment: "Magnetic analogue tape used as medium to record a musical manifestation.",
239
+ "http://purl.org/ontology/mo/level": "1",
240
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
241
+ isDefinedBy: "http://purl.org/ontology/mo/",
242
+ label: "MagneticTape",
243
+ subClassOf: "http://purl.org/ontology/mo/Medium",
244
+ type: "http://www.w3.org/2002/07/owl#Class"
243
245
  term :Medium,
244
- comment: "A means or instrumentality for storing or communicating musical manifestation.".freeze,
245
- "http://purl.org/ontology/mo/level": "1".freeze,
246
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
247
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
248
- label: "Medium".freeze,
249
- subClassOf: "http://purl.org/ontology/mo/MusicalItem".freeze,
250
- type: "http://www.w3.org/2002/07/owl#Class".freeze
246
+ comment: "A means or instrumentality for storing or communicating musical manifestation.",
247
+ "http://purl.org/ontology/mo/level": "1",
248
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
249
+ isDefinedBy: "http://purl.org/ontology/mo/",
250
+ label: "Medium",
251
+ subClassOf: "http://purl.org/ontology/mo/MusicalItem",
252
+ type: "http://www.w3.org/2002/07/owl#Class"
251
253
  term :Membership,
252
- comment: "A membership event, where one or several people belongs to a group during a particular time period.".freeze,
253
- "http://purl.org/ontology/mo/level": "1".freeze,
254
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
255
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
256
- label: "membership".freeze,
257
- subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
258
- type: "http://www.w3.org/2002/07/owl#Class".freeze
254
+ comment: "A membership event, where one or several people belongs to a group during a particular time period.",
255
+ "http://purl.org/ontology/mo/level": "1",
256
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
257
+ isDefinedBy: "http://purl.org/ontology/mo/",
258
+ label: "membership",
259
+ subClassOf: "http://purl.org/NET/c4dm/event.owl#Event",
260
+ type: "http://www.w3.org/2002/07/owl#Class"
259
261
  term :Movement,
260
- comment: "A movement is a self-contained part of a musical work. While individual or selected movements from a composition are sometimes performed separately, a performance of the complete work requires all the movements to be performed in succession.\n\nOften a composer attempts to interrelate the movements thematically, or sometimes in more subtle ways, in order that the individual\nmovements exert a cumulative effect. In some forms, composers sometimes link the movements, or ask for them to be played without a\npause between them.\n ".freeze,
261
- "http://purl.org/ontology/mo/level": "2".freeze,
262
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
263
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
264
- label: "movement".freeze,
265
- subClassOf: "http://purl.org/ontology/mo/MusicalWork".freeze,
266
- type: "http://www.w3.org/2002/07/owl#Class".freeze
262
+ comment: "A movement is a self-contained part of a musical work. While individual or selected movements from a composition are sometimes performed separately, a performance of the complete work requires all the movements to be performed in succession.\n\nOften a composer attempts to interrelate the movements thematically, or sometimes in more subtle ways, in order that the individual\nmovements exert a cumulative effect. In some forms, composers sometimes link the movements, or ask for them to be played without a\npause between them.\n ",
263
+ "http://purl.org/ontology/mo/level": "2",
264
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
265
+ isDefinedBy: "http://purl.org/ontology/mo/",
266
+ label: "movement",
267
+ subClassOf: "http://purl.org/ontology/mo/MusicalWork",
268
+ type: "http://www.w3.org/2002/07/owl#Class"
267
269
  term :MusicArtist,
268
- comment: "\n A person or a group of people (or a computer :-) ), whose musical \n creative work shows sensitivity and imagination \n ".freeze,
269
- "http://purl.org/ontology/mo/level": "1".freeze,
270
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
271
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
272
- label: "music artist".freeze,
273
- subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze,
274
- type: "http://www.w3.org/2002/07/owl#Class".freeze
270
+ comment: "\n A person or a group of people (or a computer :-) ), whose musical \n creative work shows sensitivity and imagination \n ",
271
+ "http://purl.org/ontology/mo/level": "1",
272
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
273
+ isDefinedBy: "http://purl.org/ontology/mo/",
274
+ label: "music artist",
275
+ subClassOf: "http://xmlns.com/foaf/0.1/Agent",
276
+ type: "http://www.w3.org/2002/07/owl#Class"
275
277
  term :MusicGroup,
276
- comment: "Group of musicians, or musical ensemble, usually popular or folk, playing parts of or improvising off of a musical arrangement. ".freeze,
277
- "http://purl.org/ontology/mo/level": "1".freeze,
278
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
279
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
280
- label: "music group".freeze,
281
- subClassOf: ["http://purl.org/ontology/mo/MusicArtist".freeze, "http://xmlns.com/foaf/0.1/Group".freeze],
282
- type: "http://www.w3.org/2002/07/owl#Class".freeze
278
+ comment: "Group of musicians, or musical ensemble, usually popular or folk, playing parts of or improvising off of a musical arrangement. ",
279
+ "http://purl.org/ontology/mo/level": "1",
280
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
281
+ isDefinedBy: "http://purl.org/ontology/mo/",
282
+ label: "music group",
283
+ subClassOf: ["http://purl.org/ontology/mo/MusicArtist", "http://xmlns.com/foaf/0.1/Group"],
284
+ type: "http://www.w3.org/2002/07/owl#Class"
283
285
  term :MusicalExpression,
284
- comment: "\nThe intellectual or artistic realization of a work in the form of alpha-numeric, musical, or choreographic notation, sound, etc., or any combination of such forms. \n\n\nFor example:\n\nWork #1 Franz Schubert's Trout quintet\n\n * Expression #1 the composer's score\n * Expression #2 sound issued from the performance by the Amadeus Quartet and Hephzibah Menuhin on piano\n * Expression #3 sound issued from the performance by the Cleveland Quartet and Yo-Yo Ma on the cello\n * . . . . \n\nThe Music Ontology defines the following sub-concepts of a MusicalExpression, which should be used instead of MusicalExpression itself: Score (the\nresult of an arrangement), Sound (produced during a performance), Signal. However, it is possible to stick to FRBR and bypass the worflow\nmechanism this ontology defines by using the core FRBR properties on such objects. But it is often better to use events to interconnect such \nexpressions (allowing to go deeply into the production process - `this performer was playing this particular instrument at that\nparticular time').\n \n ".freeze,
285
- "http://purl.org/ontology/mo/level": "1".freeze,
286
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
287
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
288
- label: "musical expression".freeze,
289
- subClassOf: "http://purl.org/vocab/frbr/core#Expression".freeze,
290
- type: "http://www.w3.org/2002/07/owl#Class".freeze
286
+ comment: "\nThe intellectual or artistic realization of a work in the form of alpha-numeric, musical, or choreographic notation, sound, etc., or any combination of such forms. \n\n\nFor example:\n\nWork #1 Franz Schubert's Trout quintet\n\n * Expression #1 the composer's score\n * Expression #2 sound issued from the performance by the Amadeus Quartet and Hephzibah Menuhin on piano\n * Expression #3 sound issued from the performance by the Cleveland Quartet and Yo-Yo Ma on the cello\n * . . . . \n\nThe Music Ontology defines the following sub-concepts of a MusicalExpression, which should be used instead of MusicalExpression itself: Score (the\nresult of an arrangement), Sound (produced during a performance), Signal. However, it is possible to stick to FRBR and bypass the worflow\nmechanism this ontology defines by using the core FRBR properties on such objects. But it is often better to use events to interconnect such \nexpressions (allowing to go deeply into the production process - `this performer was playing this particular instrument at that\nparticular time').\n \n ",
287
+ "http://purl.org/ontology/mo/level": "1",
288
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
289
+ isDefinedBy: "http://purl.org/ontology/mo/",
290
+ label: "musical expression",
291
+ subClassOf: "http://purl.org/vocab/frbr/core#Expression",
292
+ type: "http://www.w3.org/2002/07/owl#Class"
291
293
  term :MusicalItem,
292
- comment: "A single exemplar of a musical expression.\n \nFor example, it could be a single exemplar of a CD. This is normally an single object (a CD) possessed by somebody.\n\nFrom the FRBR final report: The entity defined as item is a concrete entity. It is in many instances a single physical object (e.g., a copy of a one-volume monograph, a single audio cassette, etc.). There are instances, however, where the entity defined as item comprises more than one physical object (e.g., a monograph issued as two separately bound volumes, a recording issued on three separate compact discs, etc.).\n\nIn terms of intellectual content and physical form, an item exemplifying a manifestation is normally the same as the manifestation itself. However, variations may occur from one item to another, even when the items exemplify the same manifestation, where those variations are the result of actions external to the intent of the producer of the manifestation (e.g., damage occurring after the item was produced, binding performed by a library, etc.). \n ".freeze,
293
- "http://purl.org/ontology/mo/level": "1".freeze,
294
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
295
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
296
- label: "MusicalItem".freeze,
297
- type: "http://www.w3.org/2002/07/owl#Class".freeze
294
+ comment: "A single exemplar of a musical expression.\n \nFor example, it could be a single exemplar of a CD. This is normally an single object (a CD) possessed by somebody.\n\nFrom the FRBR final report: The entity defined as item is a concrete entity. It is in many instances a single physical object (e.g., a copy of a one-volume monograph, a single audio cassette, etc.). There are instances, however, where the entity defined as item comprises more than one physical object (e.g., a monograph issued as two separately bound volumes, a recording issued on three separate compact discs, etc.).\n\nIn terms of intellectual content and physical form, an item exemplifying a manifestation is normally the same as the manifestation itself. However, variations may occur from one item to another, even when the items exemplify the same manifestation, where those variations are the result of actions external to the intent of the producer of the manifestation (e.g., damage occurring after the item was produced, binding performed by a library, etc.). \n ",
295
+ "http://purl.org/ontology/mo/level": "1",
296
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
297
+ isDefinedBy: "http://purl.org/ontology/mo/",
298
+ label: "MusicalItem",
299
+ type: "http://www.w3.org/2002/07/owl#Class"
298
300
  term :MusicalManifestation,
299
- comment: "\n\nThis entity is related to the edition/production/publication of a musical expression (musical manifestation are closely related with the music industry (their terms, concepts, definitions, methods (production, publication, etc.), etc.)\n \nFrom the FRBR final report: The entity defined as manifestation encompasses a wide range of materials, including manuscripts, books, periodicals, maps, posters, sound recordings, films, video recordings, CD-ROMs, multimedia kits, etc. As an entity, manifestation represents all the physical objects that bear the same characteristics, in respect to both intellectual content and physical form.\n\n\nWork #1 J. S. Bach's Six suites for unaccompanied cello\n\n * Expression #1 sound issued during the performance by Janos Starker recorded in 1963 and 1965\n o Manifestation #1 recordings released on 33 1/3 rpm sound discs in 1965 by Mercury\n o Manifestation #2 recordings re-released on compact disc in 1991 by Mercury \n * Expression #2 sound issued during the performances by Yo-Yo Ma recorded in 1983\n o Manifestation #1 recordings released on 33 1/3 rpm sound discs in 1983 by CBS Records\n o Manifestation #2 recordings re-released on compact disc in 1992 by CBS Records \n\n \nChanges that occur deliberately or even inadvertently in the production process that affect the copies result, strictly speaking, in a new manifestation. A manifestation resulting from such a change may be identified as a particular \"state\" or \"issue\" of the publication.\n\nChanges that occur to an individual copy after the production process is complete (e.g., the loss of a page, rebinding, etc.) are not considered to result in a new manifestation. That copy is simply considered to be an exemplar (or item) of the manifestation that deviates from the copy as produced.\n\nWith the entity defined as manifestation we can describe the physical characteristics of a set of items and the characteristics associated with the production and distribution of that set of items that may be important factors in enabling users to choose a manifestation appropriate to their physical needs and constraints, and to identify and acquire a copy of that manifestation.\n\nDefining manifestation as an entity also enables us to draw relationships between specific manifestations of a work. We can use the relationships between manifestations to identify, for example, the specific publication that was used to create a microreproduction. \n\n".freeze,
300
- "http://purl.org/ontology/mo/level": "1".freeze,
301
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
302
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
303
- label: "musical manifestation".freeze,
304
- subClassOf: "http://purl.org/vocab/frbr/core#Manifestation".freeze,
305
- type: "http://www.w3.org/2002/07/owl#Class".freeze
301
+ comment: "\n\nThis entity is related to the edition/production/publication of a musical expression (musical manifestation are closely related with the music industry (their terms, concepts, definitions, methods (production, publication, etc.), etc.)\n \nFrom the FRBR final report: The entity defined as manifestation encompasses a wide range of materials, including manuscripts, books, periodicals, maps, posters, sound recordings, films, video recordings, CD-ROMs, multimedia kits, etc. As an entity, manifestation represents all the physical objects that bear the same characteristics, in respect to both intellectual content and physical form.\n\n\nWork #1 J. S. Bach's Six suites for unaccompanied cello\n\n * Expression #1 sound issued during the performance by Janos Starker recorded in 1963 and 1965\n o Manifestation #1 recordings released on 33 1/3 rpm sound discs in 1965 by Mercury\n o Manifestation #2 recordings re-released on compact disc in 1991 by Mercury \n * Expression #2 sound issued during the performances by Yo-Yo Ma recorded in 1983\n o Manifestation #1 recordings released on 33 1/3 rpm sound discs in 1983 by CBS Records\n o Manifestation #2 recordings re-released on compact disc in 1992 by CBS Records \n\n \nChanges that occur deliberately or even inadvertently in the production process that affect the copies result, strictly speaking, in a new manifestation. A manifestation resulting from such a change may be identified as a particular \"state\" or \"issue\" of the publication.\n\nChanges that occur to an individual copy after the production process is complete (e.g., the loss of a page, rebinding, etc.) are not considered to result in a new manifestation. That copy is simply considered to be an exemplar (or item) of the manifestation that deviates from the copy as produced.\n\nWith the entity defined as manifestation we can describe the physical characteristics of a set of items and the characteristics associated with the production and distribution of that set of items that may be important factors in enabling users to choose a manifestation appropriate to their physical needs and constraints, and to identify and acquire a copy of that manifestation.\n\nDefining manifestation as an entity also enables us to draw relationships between specific manifestations of a work. We can use the relationships between manifestations to identify, for example, the specific publication that was used to create a microreproduction. \n\n",
302
+ "http://purl.org/ontology/mo/level": "1",
303
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
304
+ isDefinedBy: "http://purl.org/ontology/mo/",
305
+ label: "musical manifestation",
306
+ subClassOf: "http://purl.org/vocab/frbr/core#Manifestation",
307
+ type: "http://www.w3.org/2002/07/owl#Class"
306
308
  term :MusicalWork,
307
- comment: "\n Distinct intellectual or artistic musical creation.\n \nFrom the FRBR final report: A work is an abstract entity; there is no single material object one can point to as the work. We recognize the work through individual realizations or expressions of the work, but the work itself exists only in the commonality of\ncontent between and among the various expressions of the work. When we speak of Homer's Iliad as a work, our point of reference is not a particular recitation or text of the work, but the intellectual creation that lies behind all the various expressions of the work. \n\nFor example:\n\nwork #1 J. S. Bach's The art of the fugue\n\n \n ".freeze,
308
- "http://purl.org/ontology/mo/level": "2".freeze,
309
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
310
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
311
- label: "musical work".freeze,
312
- subClassOf: "http://purl.org/vocab/frbr/core#Work".freeze,
313
- type: "http://www.w3.org/2002/07/owl#Class".freeze
309
+ comment: "\n Distinct intellectual or artistic musical creation.\n \nFrom the FRBR final report: A work is an abstract entity; there is no single material object one can point to as the work. We recognize the work through individual realizations or expressions of the work, but the work itself exists only in the commonality of\ncontent between and among the various expressions of the work. When we speak of Homer's Iliad as a work, our point of reference is not a particular recitation or text of the work, but the intellectual creation that lies behind all the various expressions of the work. \n\nFor example:\n\nwork #1 J. S. Bach's The art of the fugue\n\n \n ",
310
+ "http://purl.org/ontology/mo/level": "2",
311
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
312
+ isDefinedBy: "http://purl.org/ontology/mo/",
313
+ label: "musical work",
314
+ subClassOf: "http://purl.org/vocab/frbr/core#Work",
315
+ type: "http://www.w3.org/2002/07/owl#Class"
314
316
  term :Orchestration,
315
- comment: "\n Orchestration includes, in addition to instrumentation, the handling of groups of instruments and their balance and interaction.\n ".freeze,
316
- "http://purl.org/ontology/mo/level": "2".freeze,
317
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
318
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
319
- label: "orchestration".freeze,
320
- subClassOf: "http://purl.org/ontology/mo/Arrangement".freeze,
321
- type: "http://www.w3.org/2002/07/owl#Class".freeze
317
+ comment: "\n Orchestration includes, in addition to instrumentation, the handling of groups of instruments and their balance and interaction.\n ",
318
+ "http://purl.org/ontology/mo/level": "2",
319
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
320
+ isDefinedBy: "http://purl.org/ontology/mo/",
321
+ label: "orchestration",
322
+ subClassOf: "http://purl.org/ontology/mo/Arrangement",
323
+ type: "http://www.w3.org/2002/07/owl#Class"
322
324
  term :Performance,
323
- comment: "\n A performance event. \n It might include as agents performers, engineers, conductors, or even listeners.\n It might include as factors a score, a MusicalWork, musical instruments. \n It might produce a sound:-)\n ".freeze,
324
- "http://purl.org/ontology/mo/level": "2".freeze,
325
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
326
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
327
- label: "performance".freeze,
328
- subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
329
- type: "http://www.w3.org/2002/07/owl#Class".freeze
325
+ comment: "\n A performance event. \n It might include as agents performers, engineers, conductors, or even listeners.\n It might include as factors a score, a MusicalWork, musical instruments. \n It might produce a sound:-)\n ",
326
+ "http://purl.org/ontology/mo/level": "2",
327
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
328
+ isDefinedBy: "http://purl.org/ontology/mo/",
329
+ label: "performance",
330
+ subClassOf: "http://purl.org/NET/c4dm/event.owl#Event",
331
+ type: "http://www.w3.org/2002/07/owl#Class"
330
332
  term :Performer,
331
333
  equivalentClass: term(
332
- onProperty: "http://purl.org/ontology/mo/performed".freeze,
333
- someValuesFrom: "http://purl.org/ontology/mo/Performance".freeze,
334
- type: "http://www.w3.org/2002/07/owl#Restriction".freeze
334
+ onProperty: "http://purl.org/ontology/mo/performed",
335
+ someValuesFrom: "http://purl.org/ontology/mo/Performance",
336
+ type: "http://www.w3.org/2002/07/owl#Restriction"
335
337
  ),
336
- "http://purl.org/ontology/mo/level": "2".freeze,
337
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
338
- label: "performer".freeze,
339
- subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze,
340
- type: "http://www.w3.org/2002/07/owl#Class".freeze
338
+ "http://purl.org/ontology/mo/level": "2",
339
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
340
+ label: "performer",
341
+ subClassOf: "http://xmlns.com/foaf/0.1/Agent",
342
+ type: "http://www.w3.org/2002/07/owl#Class"
341
343
  term :PublishedLibretto,
342
- comment: "A published libretto".freeze,
343
- "http://purl.org/ontology/mo/level": "2".freeze,
344
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
345
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
346
- label: "published libretto".freeze,
347
- subClassOf: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
348
- type: "http://www.w3.org/2002/07/owl#Class".freeze
344
+ comment: "A published libretto",
345
+ "http://purl.org/ontology/mo/level": "2",
346
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
347
+ isDefinedBy: "http://purl.org/ontology/mo/",
348
+ label: "published libretto",
349
+ subClassOf: "http://purl.org/ontology/mo/MusicalManifestation",
350
+ type: "http://www.w3.org/2002/07/owl#Class"
349
351
  term :PublishedLyrics,
350
- comment: "Published lyrics, as a book or as a text file, for example".freeze,
351
- "http://purl.org/ontology/mo/level": "2".freeze,
352
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
353
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
354
- label: "published lyrics".freeze,
355
- subClassOf: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
356
- type: "http://www.w3.org/2002/07/owl#Class".freeze
352
+ comment: "Published lyrics, as a book or as a text file, for example",
353
+ "http://purl.org/ontology/mo/level": "2",
354
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
355
+ isDefinedBy: "http://purl.org/ontology/mo/",
356
+ label: "published lyrics",
357
+ subClassOf: "http://purl.org/ontology/mo/MusicalManifestation",
358
+ type: "http://www.w3.org/2002/07/owl#Class"
357
359
  term :PublishedScore,
358
- comment: "A published score (subclass of MusicalManifestation)".freeze,
359
- "http://purl.org/ontology/mo/level": "2".freeze,
360
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
361
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
362
- label: "published score".freeze,
363
- subClassOf: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
364
- type: "http://www.w3.org/2002/07/owl#Class".freeze
360
+ comment: "A published score (subclass of MusicalManifestation)",
361
+ "http://purl.org/ontology/mo/level": "2",
362
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
363
+ isDefinedBy: "http://purl.org/ontology/mo/",
364
+ label: "published score",
365
+ subClassOf: "http://purl.org/ontology/mo/MusicalManifestation",
366
+ type: "http://www.w3.org/2002/07/owl#Class"
365
367
  term :Record,
366
- comment: "A published record (manifestation which first aim is to render the product of a recording)".freeze,
367
- "http://purl.org/ontology/mo/level": "1".freeze,
368
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
369
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
370
- label: "record".freeze,
371
- subClassOf: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
372
- type: "http://www.w3.org/2002/07/owl#Class".freeze
368
+ comment: "A published record (manifestation which first aim is to render the product of a recording)",
369
+ "http://purl.org/ontology/mo/level": "1",
370
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
371
+ isDefinedBy: "http://purl.org/ontology/mo/",
372
+ label: "record",
373
+ subClassOf: "http://purl.org/ontology/mo/MusicalManifestation",
374
+ type: "http://www.w3.org/2002/07/owl#Class"
373
375
  term :Recording,
374
- comment: "\n A recording event.\n Takes a sound as a factor to produce a signal (analog or digital).\n The location of such events (if any) is the actual location of the corresponding\n microphone or the \"recording device\".\n ".freeze,
375
- "http://purl.org/ontology/mo/level": "2".freeze,
376
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
377
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
378
- label: "recording".freeze,
379
- subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
380
- type: "http://www.w3.org/2002/07/owl#Class".freeze
376
+ comment: "\n A recording event.\n Takes a sound as a factor to produce a signal (analog or digital).\n The location of such events (if any) is the actual location of the corresponding\n microphone or the \"recording device\".\n ",
377
+ "http://purl.org/ontology/mo/level": "2",
378
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
379
+ isDefinedBy: "http://purl.org/ontology/mo/",
380
+ label: "recording",
381
+ subClassOf: "http://purl.org/NET/c4dm/event.owl#Event",
382
+ type: "http://www.w3.org/2002/07/owl#Class"
381
383
  term :RecordingSession,
382
- comment: "A set of performances/recordings/mastering events. This event can be decomposed in its constituent events using event:sub_event".freeze,
383
- "http://purl.org/ontology/mo/level": "2".freeze,
384
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
385
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
386
- label: "recording session".freeze,
387
- subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
388
- type: "http://www.w3.org/2002/07/owl#Class".freeze
384
+ comment: "A set of performances/recordings/mastering events. This event can be decomposed in its constituent events using event:sub_event",
385
+ "http://purl.org/ontology/mo/level": "2",
386
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
387
+ isDefinedBy: "http://purl.org/ontology/mo/",
388
+ label: "recording session",
389
+ subClassOf: "http://purl.org/NET/c4dm/event.owl#Event",
390
+ type: "http://www.w3.org/2002/07/owl#Class"
389
391
  term :Release,
390
- comment: "A specific release, with barcode, box, liner notes, cover art, and a number of records".freeze,
391
- "http://purl.org/ontology/mo/level": "1".freeze,
392
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
393
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
394
- label: "release".freeze,
395
- subClassOf: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
396
- type: "http://www.w3.org/2002/07/owl#Class".freeze
392
+ comment: "A specific release, with barcode, box, liner notes, cover art, and a number of records",
393
+ "http://purl.org/ontology/mo/level": "1",
394
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
395
+ isDefinedBy: "http://purl.org/ontology/mo/",
396
+ label: "release",
397
+ subClassOf: "http://purl.org/ontology/mo/MusicalManifestation",
398
+ type: "http://www.w3.org/2002/07/owl#Class"
397
399
  term :ReleaseEvent,
398
- comment: "A release event, in a particular place (e.g. a country) at a particular time. Other factors of this event might include cover art, liner notes, box, etc. or a release grouping all these.".freeze,
399
- "http://purl.org/ontology/mo/level": "1".freeze,
400
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
401
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
402
- label: "release event".freeze,
403
- subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
404
- type: "http://www.w3.org/2002/07/owl#Class".freeze
400
+ comment: "A release event, in a particular place (e.g. a country) at a particular time. Other factors of this event might include cover art, liner notes, box, etc. or a release grouping all these.",
401
+ "http://purl.org/ontology/mo/level": "1",
402
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
403
+ isDefinedBy: "http://purl.org/ontology/mo/",
404
+ label: "release event",
405
+ subClassOf: "http://purl.org/NET/c4dm/event.owl#Event",
406
+ type: "http://www.w3.org/2002/07/owl#Class"
405
407
  term :ReleaseStatus,
406
- comment: "Musical manifestation release status.".freeze,
407
- "http://purl.org/ontology/mo/level": "1".freeze,
408
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
409
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
410
- label: "release status".freeze,
411
- type: "http://www.w3.org/2002/07/owl#Class".freeze
408
+ comment: "Musical manifestation release status.",
409
+ "http://purl.org/ontology/mo/level": "1",
410
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
411
+ isDefinedBy: "http://purl.org/ontology/mo/",
412
+ label: "release status",
413
+ type: "http://www.w3.org/2002/07/owl#Class"
412
414
  term :ReleaseType,
413
- comment: "\n Release type of a particular manifestation, such as \"album\" or \"interview\"...\n ".freeze,
414
- "http://purl.org/ontology/mo/level": "1".freeze,
415
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
416
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
417
- label: "Release type".freeze,
418
- type: "http://www.w3.org/2002/07/owl#Class".freeze
415
+ comment: "\n Release type of a particular manifestation, such as \"album\" or \"interview\"...\n ",
416
+ "http://purl.org/ontology/mo/level": "1",
417
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
418
+ isDefinedBy: "http://purl.org/ontology/mo/",
419
+ label: "Release type",
420
+ type: "http://www.w3.org/2002/07/owl#Class"
419
421
  term :SACD,
420
- comment: "Super Audio Compact Disc used as medium to record a musical manifestation.".freeze,
421
- "http://purl.org/ontology/mo/level": "1".freeze,
422
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
423
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
424
- label: "SACD".freeze,
425
- subClassOf: "http://purl.org/ontology/mo/Medium".freeze,
426
- type: "http://www.w3.org/2002/07/owl#Class".freeze
422
+ comment: "Super Audio Compact Disc used as medium to record a musical manifestation.",
423
+ "http://purl.org/ontology/mo/level": "1",
424
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
425
+ isDefinedBy: "http://purl.org/ontology/mo/",
426
+ label: "SACD",
427
+ subClassOf: "http://purl.org/ontology/mo/Medium",
428
+ type: "http://www.w3.org/2002/07/owl#Class"
427
429
  term :Score,
428
- comment: "\n Here, we are dealing with the informational object (the MusicalExpression), not the actually \"published\" score.\n This may be, for example, the product of an arrangement process.\n ".freeze,
429
- "http://purl.org/ontology/mo/level": "2".freeze,
430
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
431
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
432
- label: "score".freeze,
433
- subClassOf: "http://purl.org/ontology/mo/MusicalExpression".freeze,
434
- type: "http://www.w3.org/2002/07/owl#Class".freeze
430
+ comment: "\n Here, we are dealing with the informational object (the MusicalExpression), not the actually \"published\" score.\n This may be, for example, the product of an arrangement process.\n ",
431
+ "http://purl.org/ontology/mo/level": "2",
432
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
433
+ isDefinedBy: "http://purl.org/ontology/mo/",
434
+ label: "score",
435
+ subClassOf: "http://purl.org/ontology/mo/MusicalExpression",
436
+ type: "http://www.w3.org/2002/07/owl#Class"
435
437
  term :Show,
436
- comment: "\n A show - a musical event lasting several days, in a particular venue. Examples can be\n \"The Magic Flute\" at the Opera Bastille, August 2005, or a musical in the west end...\n ".freeze,
437
- "http://purl.org/ontology/mo/level": "2".freeze,
438
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
439
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
440
- label: "Show".freeze,
441
- subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
442
- type: "http://www.w3.org/2002/07/owl#Class".freeze
438
+ comment: "\n A show - a musical event lasting several days, in a particular venue. Examples can be\n \"The Magic Flute\" at the Opera Bastille, August 2005, or a musical in the west end...\n ",
439
+ "http://purl.org/ontology/mo/level": "2",
440
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
441
+ isDefinedBy: "http://purl.org/ontology/mo/",
442
+ label: "Show",
443
+ subClassOf: "http://purl.org/NET/c4dm/event.owl#Event",
444
+ type: "http://www.w3.org/2002/07/owl#Class"
443
445
  term :Signal,
444
- comment: "\n A subclass of MusicalExpression, representing a signal, for example a master signal produced by a performance and a recording.\n ".freeze,
445
- "http://purl.org/ontology/mo/level": "1".freeze,
446
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
447
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
448
- label: "signal".freeze,
449
- subClassOf: "http://purl.org/ontology/mo/MusicalExpression".freeze,
450
- type: "http://www.w3.org/2002/07/owl#Class".freeze
446
+ comment: "\n A subclass of MusicalExpression, representing a signal, for example a master signal produced by a performance and a recording.\n ",
447
+ "http://purl.org/ontology/mo/level": "1",
448
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
449
+ isDefinedBy: "http://purl.org/ontology/mo/",
450
+ label: "signal",
451
+ subClassOf: "http://purl.org/ontology/mo/MusicalExpression",
452
+ type: "http://www.w3.org/2002/07/owl#Class"
451
453
  term :SignalGroup,
452
- comment: "\n A musical expression representing a group of signals, for example a set of masters resulting from a whole recording/mastering session.\n ".freeze,
453
- "http://purl.org/ontology/mo/level": "1".freeze,
454
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
455
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
456
- label: "signal group".freeze,
457
- subClassOf: "http://purl.org/ontology/mo/MusicalExpression".freeze,
458
- type: "http://www.w3.org/2002/07/owl#Class".freeze
454
+ comment: "\n A musical expression representing a group of signals, for example a set of masters resulting from a whole recording/mastering session.\n ",
455
+ "http://purl.org/ontology/mo/level": "1",
456
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
457
+ isDefinedBy: "http://purl.org/ontology/mo/",
458
+ label: "signal group",
459
+ subClassOf: "http://purl.org/ontology/mo/MusicalExpression",
460
+ type: "http://www.w3.org/2002/07/owl#Class"
459
461
  term :SoloMusicArtist,
460
- comment: "Single person whose musical creative work shows sensitivity and imagination.".freeze,
461
- "http://purl.org/ontology/mo/level": "1".freeze,
462
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
463
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
464
- label: "solo music artist".freeze,
465
- subClassOf: ["http://purl.org/ontology/mo/MusicArtist".freeze, "http://xmlns.com/foaf/0.1/Person".freeze],
466
- type: "http://www.w3.org/2002/07/owl#Class".freeze
462
+ comment: "Single person whose musical creative work shows sensitivity and imagination.",
463
+ "http://purl.org/ontology/mo/level": "1",
464
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
465
+ isDefinedBy: "http://purl.org/ontology/mo/",
466
+ label: "solo music artist",
467
+ subClassOf: ["http://purl.org/ontology/mo/MusicArtist", "http://xmlns.com/foaf/0.1/Person"],
468
+ type: "http://www.w3.org/2002/07/owl#Class"
467
469
  term :Sound,
468
- comment: "\n A subclass of MusicalExpression, representing a sound. Realisation of a MusicalWork during a musical Performance.\n ".freeze,
469
- "http://purl.org/ontology/mo/level": "2".freeze,
470
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
471
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
472
- label: "sound".freeze,
473
- subClassOf: ["http://purl.org/NET/c4dm/event.owl#Event".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze],
474
- type: "http://www.w3.org/2002/07/owl#Class".freeze
470
+ comment: "\n A subclass of MusicalExpression, representing a sound. Realisation of a MusicalWork during a musical Performance.\n ",
471
+ "http://purl.org/ontology/mo/level": "2",
472
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
473
+ isDefinedBy: "http://purl.org/ontology/mo/",
474
+ label: "sound",
475
+ subClassOf: ["http://purl.org/NET/c4dm/event.owl#Event", "http://purl.org/ontology/mo/MusicalExpression"],
476
+ type: "http://www.w3.org/2002/07/owl#Class"
475
477
  term :SoundEngineer,
476
478
  equivalentClass: term(
477
- onProperty: "http://purl.org/ontology/mo/engineered".freeze,
478
- someValuesFrom: "http://purl.org/ontology/mo/Performance".freeze,
479
- type: "http://www.w3.org/2002/07/owl#Restriction".freeze
479
+ onProperty: "http://purl.org/ontology/mo/engineered",
480
+ someValuesFrom: "http://purl.org/ontology/mo/Performance",
481
+ type: "http://www.w3.org/2002/07/owl#Restriction"
480
482
  ),
481
- "http://purl.org/ontology/mo/level": "2".freeze,
482
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
483
- label: "sound engineer".freeze,
484
- subClassOf: "http://xmlns.com/foaf/0.1/Agent".freeze,
485
- type: "http://www.w3.org/2002/07/owl#Class".freeze
483
+ "http://purl.org/ontology/mo/level": "2",
484
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
485
+ label: "sound engineer",
486
+ subClassOf: "http://xmlns.com/foaf/0.1/Agent",
487
+ type: "http://www.w3.org/2002/07/owl#Class"
486
488
  term :Stream,
487
- comment: "Transmission over a network used as medium to broadcast a musical manifestation".freeze,
488
- "http://purl.org/ontology/mo/level": "1".freeze,
489
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
490
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
491
- label: "Stream".freeze,
492
- subClassOf: "http://purl.org/ontology/mo/Medium".freeze,
493
- type: "http://www.w3.org/2002/07/owl#Class".freeze
489
+ comment: "Transmission over a network used as medium to broadcast a musical manifestation",
490
+ "http://purl.org/ontology/mo/level": "1",
491
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
492
+ isDefinedBy: "http://purl.org/ontology/mo/",
493
+ label: "Stream",
494
+ subClassOf: "http://purl.org/ontology/mo/Medium",
495
+ type: "http://www.w3.org/2002/07/owl#Class"
494
496
  term :Torrent,
495
- comment: "Something available on the Bittorrent peer-2-peer filesharing network".freeze,
496
- "http://purl.org/ontology/mo/level": "1".freeze,
497
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
498
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
499
- label: "Torrent".freeze,
500
- subClassOf: "http://purl.org/ontology/mo/Medium".freeze,
501
- type: "http://www.w3.org/2002/07/owl#Class".freeze
497
+ comment: "Something available on the Bittorrent peer-2-peer filesharing network",
498
+ "http://purl.org/ontology/mo/level": "1",
499
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
500
+ isDefinedBy: "http://purl.org/ontology/mo/",
501
+ label: "Torrent",
502
+ subClassOf: "http://purl.org/ontology/mo/Medium",
503
+ type: "http://www.w3.org/2002/07/owl#Class"
502
504
  term :Track,
503
- comment: "A track on a particular record".freeze,
504
- "http://purl.org/ontology/mo/level": "1".freeze,
505
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
506
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
507
- label: "track".freeze,
508
- subClassOf: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
509
- type: "http://www.w3.org/2002/07/owl#Class".freeze
505
+ comment: "A track on a particular record",
506
+ "http://purl.org/ontology/mo/level": "1",
507
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
508
+ isDefinedBy: "http://purl.org/ontology/mo/",
509
+ label: "track",
510
+ subClassOf: "http://purl.org/ontology/mo/MusicalManifestation",
511
+ type: "http://www.w3.org/2002/07/owl#Class"
510
512
  term :Transcription,
511
- comment: "Transcription event".freeze,
512
- "http://purl.org/ontology/mo/level": "2".freeze,
513
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
514
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
515
- label: "transcription".freeze,
516
- subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
517
- type: "http://www.w3.org/2002/07/owl#Class".freeze
513
+ comment: "Transcription event",
514
+ "http://purl.org/ontology/mo/level": "2",
515
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
516
+ isDefinedBy: "http://purl.org/ontology/mo/",
517
+ label: "transcription",
518
+ subClassOf: "http://purl.org/NET/c4dm/event.owl#Event",
519
+ type: "http://www.w3.org/2002/07/owl#Class"
518
520
  term :Vinyl,
519
- comment: "Vinyl used as medium to record a musical manifestation".freeze,
520
- "http://purl.org/ontology/mo/level": "1".freeze,
521
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
522
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
523
- label: "Vinyl".freeze,
524
- subClassOf: "http://purl.org/ontology/mo/Medium".freeze,
525
- type: "http://www.w3.org/2002/07/owl#Class".freeze
521
+ comment: "Vinyl used as medium to record a musical manifestation",
522
+ "http://purl.org/ontology/mo/level": "1",
523
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
524
+ isDefinedBy: "http://purl.org/ontology/mo/",
525
+ label: "Vinyl",
526
+ subClassOf: "http://purl.org/ontology/mo/Medium",
527
+ type: "http://www.w3.org/2002/07/owl#Class"
526
528
 
527
529
  # Property definitions
528
530
  property :activity,
529
- comment: "Relates an artist to an activity period".freeze,
530
- domain: "http://purl.org/ontology/mo/MusicArtist".freeze,
531
- "http://purl.org/ontology/mo/level": "1".freeze,
532
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
533
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
534
- label: "activity".freeze,
535
- range: "http://purl.org/ontology/mo/Activity".freeze,
536
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
531
+ comment: "Relates an artist to an activity period",
532
+ domain: "http://purl.org/ontology/mo/MusicArtist",
533
+ "http://purl.org/ontology/mo/level": "1",
534
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
535
+ isDefinedBy: "http://purl.org/ontology/mo/",
536
+ label: "activity",
537
+ range: "http://purl.org/ontology/mo/Activity",
538
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
537
539
  property :activity_end,
538
- comment: "Relates an artist to a date at which its activity ended".freeze,
539
- domain: "http://purl.org/ontology/mo/MusicArtist".freeze,
540
- "http://purl.org/ontology/mo/level": "1".freeze,
541
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
542
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
543
- label: "activity end".freeze,
544
- range: "http://www.w3.org/2001/XMLSchema#date".freeze,
545
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
540
+ comment: "Relates an artist to a date at which its activity ended",
541
+ domain: "http://purl.org/ontology/mo/MusicArtist",
542
+ "http://purl.org/ontology/mo/level": "1",
543
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
544
+ isDefinedBy: "http://purl.org/ontology/mo/",
545
+ label: "activity end",
546
+ range: "http://www.w3.org/2001/XMLSchema#date",
547
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
546
548
  property :activity_start,
547
- comment: "Relates an artist to a date at which its activity started".freeze,
548
- domain: "http://purl.org/ontology/mo/MusicArtist".freeze,
549
- "http://purl.org/ontology/mo/level": "1".freeze,
550
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
551
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
552
- label: "activity start".freeze,
553
- range: "http://www.w3.org/2001/XMLSchema#date".freeze,
554
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
549
+ comment: "Relates an artist to a date at which its activity started",
550
+ domain: "http://purl.org/ontology/mo/MusicArtist",
551
+ "http://purl.org/ontology/mo/level": "1",
552
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
553
+ isDefinedBy: "http://purl.org/ontology/mo/",
554
+ label: "activity start",
555
+ range: "http://www.w3.org/2001/XMLSchema#date",
556
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
555
557
  property :amazon_asin,
556
- comment: "Used to link a work or the expression of a work to its corresponding Amazon ASINs page.".freeze,
558
+ comment: "Used to link a work or the expression of a work to its corresponding Amazon ASINs page.",
557
559
  domain: term(
558
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
559
- unionOf: list("http://purl.org/vocab/frbr/core#Work".freeze, "http://purl.org/vocab/frbr/core#Expression".freeze, "http://purl.org/vocab/frbr/core#Manifestation".freeze, "http://purl.org/vocab/frbr/core#Item".freeze)
560
+ type: "http://www.w3.org/2002/07/owl#Class",
561
+ unionOf: list("http://purl.org/vocab/frbr/core#Work", "http://purl.org/vocab/frbr/core#Expression", "http://purl.org/vocab/frbr/core#Manifestation", "http://purl.org/vocab/frbr/core#Item")
560
562
  ),
561
- "http://purl.org/ontology/mo/level": "1".freeze,
562
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
563
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
564
- label: "amazon_asin".freeze,
565
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
566
- subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze,
567
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
563
+ "http://purl.org/ontology/mo/level": "1",
564
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
565
+ isDefinedBy: "http://purl.org/ontology/mo/",
566
+ label: "amazon_asin",
567
+ range: "http://xmlns.com/foaf/0.1/Document",
568
+ subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
569
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
568
570
  property :arranged_in,
569
- comment: "\n Associates a work to an arrangement event where it was arranged\n ".freeze,
570
- domain: "http://purl.org/ontology/mo/MusicalWork".freeze,
571
- "http://purl.org/ontology/mo/level": "2".freeze,
572
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
573
- inverseOf: "http://purl.org/ontology/mo/arrangement_of".freeze,
574
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
575
- label: "arranged in".freeze,
576
- range: "http://purl.org/ontology/mo/Arrangement".freeze,
577
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#isFactorOf".freeze,
578
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
571
+ comment: "\n Associates a work to an arrangement event where it was arranged\n ",
572
+ domain: "http://purl.org/ontology/mo/MusicalWork",
573
+ "http://purl.org/ontology/mo/level": "2",
574
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
575
+ inverseOf: "http://purl.org/ontology/mo/arrangement_of",
576
+ isDefinedBy: "http://purl.org/ontology/mo/",
577
+ label: "arranged in",
578
+ range: "http://purl.org/ontology/mo/Arrangement",
579
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#isFactorOf",
580
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
579
581
  property :arrangement_of,
580
- comment: "\n Associates an arrangement event to a work\n ".freeze,
581
- domain: "http://purl.org/ontology/mo/Arrangement".freeze,
582
- "http://purl.org/ontology/mo/level": "2".freeze,
583
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
584
- inverseOf: "http://purl.org/ontology/mo/arranged_in".freeze,
585
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
586
- label: "arrangement of".freeze,
587
- range: "http://purl.org/ontology/mo/MusicalWork".freeze,
588
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#factor".freeze,
589
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
582
+ comment: "\n Associates an arrangement event to a work\n ",
583
+ domain: "http://purl.org/ontology/mo/Arrangement",
584
+ "http://purl.org/ontology/mo/level": "2",
585
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
586
+ inverseOf: "http://purl.org/ontology/mo/arranged_in",
587
+ isDefinedBy: "http://purl.org/ontology/mo/",
588
+ label: "arrangement of",
589
+ range: "http://purl.org/ontology/mo/MusicalWork",
590
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#factor",
591
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
590
592
  property :artist,
591
- comment: "Relates a membership event with the corresponding artist".freeze,
592
- domain: "http://purl.org/ontology/mo/Membership".freeze,
593
- "http://purl.org/ontology/mo/level": "1".freeze,
594
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
595
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
596
- label: "artist".freeze,
597
- range: "http://xmlns.com/foaf/0.1/Agent".freeze,
598
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
593
+ comment: "Relates a membership event with the corresponding artist",
594
+ domain: "http://purl.org/ontology/mo/Membership",
595
+ "http://purl.org/ontology/mo/level": "1",
596
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
597
+ isDefinedBy: "http://purl.org/ontology/mo/",
598
+ label: "artist",
599
+ range: "http://xmlns.com/foaf/0.1/Agent",
600
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
599
601
  property :availableAs,
600
- equivalentProperty: "http://purl.org/ontology/mo/available_as".freeze,
601
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
602
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
602
+ equivalentProperty: "http://purl.org/ontology/mo/available_as",
603
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
604
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
603
605
  property :available_as,
604
- comment: "\n Relates a musical manifestation to a musical item (this album, and my particular cd). By using\n this property, there is no assumption on wether the full content is available on the linked item.\n To be explicit about this, you can use a sub-property, such as mo:item (the full manifestation\n is available on that item) or mo:preview (only a part of the manifestation is available on\n that item).\n\n This is a subproperty of frbr:examplar.\n ".freeze,
605
- domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
606
- "http://purl.org/ontology/mo/level": "1".freeze,
607
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
608
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
609
- range: "http://purl.org/ontology/mo/MusicalItem".freeze,
610
- subPropertyOf: "http://purl.org/vocab/frbr/core#exemplar".freeze,
611
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
606
+ comment: "\n Relates a musical manifestation to a musical item (this album, and my particular cd). By using\n this property, there is no assumption on wether the full content is available on the linked item.\n To be explicit about this, you can use a sub-property, such as mo:item (the full manifestation\n is available on that item) or mo:preview (only a part of the manifestation is available on\n that item).\n\n This is a subproperty of frbr:examplar.\n ",
607
+ domain: "http://purl.org/ontology/mo/MusicalManifestation",
608
+ "http://purl.org/ontology/mo/level": "1",
609
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
610
+ isDefinedBy: "http://purl.org/ontology/mo/",
611
+ range: "http://purl.org/ontology/mo/MusicalItem",
612
+ subPropertyOf: "http://purl.org/vocab/frbr/core#exemplar",
613
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
612
614
  property :biography,
613
- comment: "Used to link an artist to their online biography.".freeze,
614
- domain: "http://purl.org/ontology/mo/MusicArtist".freeze,
615
- "http://purl.org/ontology/mo/level": "1".freeze,
616
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
617
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
618
- label: "biography".freeze,
619
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
620
- subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze,
621
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
615
+ comment: "Used to link an artist to their online biography.",
616
+ domain: "http://purl.org/ontology/mo/MusicArtist",
617
+ "http://purl.org/ontology/mo/level": "1",
618
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
619
+ isDefinedBy: "http://purl.org/ontology/mo/",
620
+ label: "biography",
621
+ range: "http://xmlns.com/foaf/0.1/Document",
622
+ subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
623
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
622
624
  property :bitsPerSample,
623
- comment: "\n Associates a digital signal to the number a bits used to encode one sample. Range is xsd:int.\n ".freeze,
624
- domain: "http://purl.org/ontology/mo/DigitalSignal".freeze,
625
- "http://purl.org/ontology/mo/level": "1".freeze,
626
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
627
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
628
- range: "http://www.w3.org/2001/XMLSchema#int".freeze,
629
- type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze]
625
+ comment: "\n Associates a digital signal to the number a bits used to encode one sample. Range is xsd:int.\n ",
626
+ domain: "http://purl.org/ontology/mo/DigitalSignal",
627
+ "http://purl.org/ontology/mo/level": "1",
628
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
629
+ isDefinedBy: "http://purl.org/ontology/mo/",
630
+ range: "http://www.w3.org/2001/XMLSchema#int",
631
+ type: ["http://www.w3.org/2002/07/owl#DatatypeProperty", "http://www.w3.org/2002/07/owl#FunctionalProperty"]
630
632
  property :bpm,
631
- comment: "\n Indicates the BPM of a MusicalWork or a particular Performance \n Beats per minute: the pace of music measured by the number of beats occurring in 60 seconds.\n ".freeze,
633
+ comment: "\n Indicates the BPM of a MusicalWork or a particular Performance \n Beats per minute: the pace of music measured by the number of beats occurring in 60 seconds.\n ",
632
634
  domain: term(
633
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
634
- unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/Performance".freeze, "http://purl.org/ontology/mo/Signal".freeze)
635
+ type: "http://www.w3.org/2002/07/owl#Class",
636
+ unionOf: list("http://purl.org/ontology/mo/MusicalWork", "http://purl.org/ontology/mo/Performance", "http://purl.org/ontology/mo/Signal")
635
637
  ),
636
- "http://purl.org/ontology/mo/level": "2".freeze,
637
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
638
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
639
- label: "bpm".freeze,
640
- range: "http://www.w3.org/2001/XMLSchema#float".freeze,
641
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
638
+ "http://purl.org/ontology/mo/level": "2",
639
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
640
+ isDefinedBy: "http://purl.org/ontology/mo/",
641
+ label: "bpm",
642
+ range: "http://www.w3.org/2001/XMLSchema#float",
643
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
642
644
  property :catalogue_number,
643
- comment: "Links a release with the corresponding catalogue number".freeze,
644
- domain: "http://purl.org/ontology/mo/Release".freeze,
645
- "http://purl.org/ontology/mo/level": "1".freeze,
646
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
647
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
648
- label: "catalogue number".freeze,
649
- range: "http://www.w3.org/2001/XMLSchema#string".freeze,
650
- subPropertyOf: "http://purl.org/ontology/mo/uuid".freeze,
651
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
645
+ comment: "Links a release with the corresponding catalogue number",
646
+ domain: "http://purl.org/ontology/mo/Release",
647
+ "http://purl.org/ontology/mo/level": "1",
648
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
649
+ isDefinedBy: "http://purl.org/ontology/mo/",
650
+ label: "catalogue number",
651
+ range: "http://www.w3.org/2001/XMLSchema#string",
652
+ subPropertyOf: "http://purl.org/ontology/mo/uuid",
653
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
652
654
  property :channels,
653
- comment: "\n Associates a signal to the number of channels it holds (mono --> 1, stereo --> 2). Range is xsd:int.\n ".freeze,
654
- domain: "http://purl.org/ontology/mo/Signal".freeze,
655
- "http://purl.org/ontology/mo/level": "1".freeze,
656
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
657
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
658
- range: "http://www.w3.org/2001/XMLSchema#int".freeze,
659
- type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze]
655
+ comment: "\n Associates a signal to the number of channels it holds (mono --> 1, stereo --> 2). Range is xsd:int.\n ",
656
+ domain: "http://purl.org/ontology/mo/Signal",
657
+ "http://purl.org/ontology/mo/level": "1",
658
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
659
+ isDefinedBy: "http://purl.org/ontology/mo/",
660
+ range: "http://www.w3.org/2001/XMLSchema#int",
661
+ type: ["http://www.w3.org/2002/07/owl#DatatypeProperty", "http://www.w3.org/2002/07/owl#FunctionalProperty"]
660
662
  property :collaborated_with,
661
- comment: "Used to relate two collaborating people on a work.".freeze,
662
- domain: "http://xmlns.com/foaf/0.1/Agent".freeze,
663
- "http://purl.org/ontology/mo/level": "1".freeze,
664
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
665
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
666
- label: "collaborated_with".freeze,
667
- range: "http://xmlns.com/foaf/0.1/Agent".freeze,
668
- type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze]
663
+ comment: "Used to relate two collaborating people on a work.",
664
+ domain: "http://xmlns.com/foaf/0.1/Agent",
665
+ "http://purl.org/ontology/mo/level": "1",
666
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
667
+ isDefinedBy: "http://purl.org/ontology/mo/",
668
+ label: "collaborated_with",
669
+ range: "http://xmlns.com/foaf/0.1/Agent",
670
+ type: ["http://www.w3.org/2002/07/owl#ObjectProperty", "http://www.w3.org/2002/07/owl#SymmetricProperty"]
669
671
  property :compilation_of,
670
- comment: "Indicates that a musical manifestation is a compilation of several Signals.".freeze,
671
- domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
672
- "http://purl.org/ontology/mo/level": "1".freeze,
673
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
674
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
675
- label: "compilation_of".freeze,
676
- range: "http://purl.org/ontology/mo/Signal".freeze,
677
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
672
+ comment: "Indicates that a musical manifestation is a compilation of several Signals.",
673
+ domain: "http://purl.org/ontology/mo/MusicalManifestation",
674
+ "http://purl.org/ontology/mo/level": "1",
675
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
676
+ isDefinedBy: "http://purl.org/ontology/mo/",
677
+ label: "compilation_of",
678
+ range: "http://purl.org/ontology/mo/Signal",
679
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
678
680
  property :compiled,
679
- comment: "Used to relate an person or a group of person who compiled the manifestation of a musical work.".freeze,
680
- domain: "http://purl.org/ontology/mo/MusicArtist".freeze,
681
- "http://purl.org/ontology/mo/level": "1".freeze,
682
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
683
- inverseOf: "http://purl.org/ontology/mo/compiler".freeze,
684
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
685
- label: "compiled".freeze,
686
- range: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
687
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
681
+ comment: "Used to relate an person or a group of person who compiled the manifestation of a musical work.",
682
+ domain: "http://purl.org/ontology/mo/MusicArtist",
683
+ "http://purl.org/ontology/mo/level": "1",
684
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
685
+ inverseOf: "http://purl.org/ontology/mo/compiler",
686
+ isDefinedBy: "http://purl.org/ontology/mo/",
687
+ label: "compiled",
688
+ range: "http://purl.org/ontology/mo/MusicalManifestation",
689
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
688
690
  property :compiler,
689
- comment: "Used to relate the manifestation of a musical work to a person or a group of person who compiled it.".freeze,
690
- domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
691
- "http://purl.org/ontology/mo/level": "1".freeze,
692
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
693
- inverseOf: "http://purl.org/ontology/mo/compiled".freeze,
694
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
695
- label: "compiler".freeze,
696
- range: "http://purl.org/ontology/mo/MusicArtist".freeze,
697
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
691
+ comment: "Used to relate the manifestation of a musical work to a person or a group of person who compiled it.",
692
+ domain: "http://purl.org/ontology/mo/MusicalManifestation",
693
+ "http://purl.org/ontology/mo/level": "1",
694
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
695
+ inverseOf: "http://purl.org/ontology/mo/compiled",
696
+ isDefinedBy: "http://purl.org/ontology/mo/",
697
+ label: "compiler",
698
+ range: "http://purl.org/ontology/mo/MusicArtist",
699
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
698
700
  property :composed_in,
699
- comment: "\n Associates a MusicalWork to the Composition event pertaining\n to its creation. For example, I might use this property to associate\n the Magic Flute to its composition event, occuring during 1782 and having as\n a mo:composer Mozart.\n ".freeze,
700
- domain: "http://purl.org/ontology/mo/MusicalWork".freeze,
701
- "http://purl.org/ontology/mo/level": "2".freeze,
702
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
703
- inverseOf: "http://purl.org/ontology/mo/produced_work".freeze,
704
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
705
- label: "composed in".freeze,
706
- range: "http://purl.org/ontology/mo/Composition".freeze,
707
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#producedIn".freeze,
708
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
701
+ comment: "\n Associates a MusicalWork to the Composition event pertaining\n to its creation. For example, I might use this property to associate\n the Magic Flute to its composition event, occuring during 1782 and having as\n a mo:composer Mozart.\n ",
702
+ domain: "http://purl.org/ontology/mo/MusicalWork",
703
+ "http://purl.org/ontology/mo/level": "2",
704
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
705
+ inverseOf: "http://purl.org/ontology/mo/produced_work",
706
+ isDefinedBy: "http://purl.org/ontology/mo/",
707
+ label: "composed in",
708
+ range: "http://purl.org/ontology/mo/Composition",
709
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#producedIn",
710
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
709
711
  property :composer,
710
- comment: "\n Associates a composition event to the actual composer. For example,\n this property could link the event corresponding to the composition of the\n Magic Flute in 1782 to Mozart himself (who obviously has a FOAF profile:-) ).\n ".freeze,
711
- domain: "http://purl.org/ontology/mo/Composition".freeze,
712
- "http://purl.org/ontology/mo/level": "2".freeze,
713
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
714
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
715
- label: "composer".freeze,
716
- range: "http://xmlns.com/foaf/0.1/Agent".freeze,
717
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#agent".freeze,
718
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
712
+ comment: "\n Associates a composition event to the actual composer. For example,\n this property could link the event corresponding to the composition of the\n Magic Flute in 1782 to Mozart himself (who obviously has a FOAF profile:-) ).\n ",
713
+ domain: "http://purl.org/ontology/mo/Composition",
714
+ "http://purl.org/ontology/mo/level": "2",
715
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
716
+ isDefinedBy: "http://purl.org/ontology/mo/",
717
+ label: "composer",
718
+ range: "http://xmlns.com/foaf/0.1/Agent",
719
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#agent",
720
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
719
721
  property :conducted,
720
- comment: "Relates agents to the performances they were conducting".freeze,
721
- domain: "http://xmlns.com/foaf/0.1/Agent".freeze,
722
- "http://purl.org/ontology/mo/level": "2".freeze,
723
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
724
- inverseOf: "http://purl.org/ontology/mo/conductor".freeze,
725
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
726
- label: "conducted".freeze,
727
- range: "http://purl.org/ontology/mo/Performance".freeze,
728
- subPropertyOf: ["http://purl.org/NET/c4dm/event.owl#isAgentIn".freeze, "http://purl.org/vocab/bio/0.1/event".freeze],
729
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
722
+ comment: "Relates agents to the performances they were conducting",
723
+ domain: "http://xmlns.com/foaf/0.1/Agent",
724
+ "http://purl.org/ontology/mo/level": "2",
725
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
726
+ inverseOf: "http://purl.org/ontology/mo/conductor",
727
+ isDefinedBy: "http://purl.org/ontology/mo/",
728
+ label: "conducted",
729
+ range: "http://purl.org/ontology/mo/Performance",
730
+ subPropertyOf: ["http://purl.org/NET/c4dm/event.owl#isAgentIn", "http://purl.org/vocab/bio/0.1/event"],
731
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
730
732
  property :conductor,
731
- comment: "Relates a performance to the conductor involved".freeze,
732
- domain: "http://purl.org/ontology/mo/Performance".freeze,
733
- "http://purl.org/ontology/mo/level": "2".freeze,
734
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
735
- inverseOf: "http://purl.org/ontology/mo/conducted".freeze,
736
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
737
- range: "http://xmlns.com/foaf/0.1/Agent".freeze,
738
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#agent".freeze,
739
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
733
+ comment: "Relates a performance to the conductor involved",
734
+ domain: "http://purl.org/ontology/mo/Performance",
735
+ "http://purl.org/ontology/mo/level": "2",
736
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
737
+ inverseOf: "http://purl.org/ontology/mo/conducted",
738
+ isDefinedBy: "http://purl.org/ontology/mo/",
739
+ range: "http://xmlns.com/foaf/0.1/Agent",
740
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#agent",
741
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
740
742
  property :contains_sample_from,
741
- comment: "\n Relates a signal to another signal, which has been sampled.\n ".freeze,
742
- "http://purl.org/ontology/mo/level": "1".freeze,
743
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
744
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
745
- label: "contains_sample_from".freeze,
746
- subPropertyOf: "http://purl.org/ontology/mo/derived_from".freeze,
747
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
743
+ comment: "\n Relates a signal to another signal, which has been sampled.\n ",
744
+ "http://purl.org/ontology/mo/level": "1",
745
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
746
+ isDefinedBy: "http://purl.org/ontology/mo/",
747
+ label: "contains_sample_from",
748
+ subPropertyOf: "http://purl.org/ontology/mo/derived_from",
749
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
748
750
  property :derived_from,
749
- comment: "A related signal from which the described signal is derived.".freeze,
750
- domain: "http://purl.org/ontology/mo/Signal".freeze,
751
- "http://purl.org/ontology/mo/level": "1".freeze,
752
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
753
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
754
- label: "derived from".freeze,
755
- range: "http://purl.org/ontology/mo/Signal".freeze,
756
- subPropertyOf: "http://purl.org/dc/terms/source".freeze,
757
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
751
+ comment: "A related signal from which the described signal is derived.",
752
+ domain: "http://purl.org/ontology/mo/Signal",
753
+ "http://purl.org/ontology/mo/level": "1",
754
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
755
+ isDefinedBy: "http://purl.org/ontology/mo/",
756
+ label: "derived from",
757
+ range: "http://purl.org/ontology/mo/Signal",
758
+ subPropertyOf: "http://purl.org/dc/terms/source",
759
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
758
760
  property :discography,
759
- comment: "Used to links an artist to an online discography of their musical works. The discography should provide a summary of each released musical work of the artist.".freeze,
760
- domain: "http://purl.org/ontology/mo/MusicArtist".freeze,
761
- "http://purl.org/ontology/mo/level": "1".freeze,
762
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
763
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
764
- label: "discography".freeze,
765
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
766
- subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze,
767
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
761
+ comment: "Used to links an artist to an online discography of their musical works. The discography should provide a summary of each released musical work of the artist.",
762
+ domain: "http://purl.org/ontology/mo/MusicArtist",
763
+ "http://purl.org/ontology/mo/level": "1",
764
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
765
+ isDefinedBy: "http://purl.org/ontology/mo/",
766
+ label: "discography",
767
+ range: "http://xmlns.com/foaf/0.1/Document",
768
+ subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
769
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
768
770
  property :discogs,
769
- comment: "Used to link a musical work or the expression of a musical work, an artist or a corporate body to to its corresponding Discogs page.".freeze,
771
+ comment: "Used to link a musical work or the expression of a musical work, an artist or a corporate body to to its corresponding Discogs page.",
770
772
  domain: term(
771
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
772
- unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze, "http://purl.org/ontology/mo/MusicArtist".freeze, "http://purl.org/ontology/mo/CorporateBody".freeze)
773
+ type: "http://www.w3.org/2002/07/owl#Class",
774
+ unionOf: list("http://purl.org/ontology/mo/MusicalWork", "http://purl.org/ontology/mo/MusicalExpression", "http://purl.org/ontology/mo/MusicalManifestation", "http://purl.org/ontology/mo/MusicArtist", "http://purl.org/ontology/mo/CorporateBody")
773
775
  ),
774
- "http://purl.org/ontology/mo/level": "1".freeze,
775
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
776
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
777
- label: "discogs".freeze,
778
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
779
- subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze,
780
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
776
+ "http://purl.org/ontology/mo/level": "1",
777
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
778
+ isDefinedBy: "http://purl.org/ontology/mo/",
779
+ label: "discogs",
780
+ range: "http://xmlns.com/foaf/0.1/Document",
781
+ subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
782
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
781
783
  property :djmix_of,
782
- comment: "Indicates that all (or most of) the tracks of a musical work or the expression of a musical work were mixed together from all (or most of) the tracks from another musical work or the expression of a musical work to form a so called DJ-Mix. \n \nThe tracks might have been altered by pitching (so that the tempo of one track matches the tempo of the following track) and fading (so that one track blends in smoothly with the other). If the tracks have been more substantially altered, the \"mo:remix\" relationship type is more appropriate. ".freeze,
783
- "http://purl.org/ontology/mo/level": "1".freeze,
784
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
785
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
786
- label: "djmix_of".freeze,
787
- subPropertyOf: "http://purl.org/ontology/mo/derived_from".freeze,
788
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
784
+ comment: "Indicates that all (or most of) the tracks of a musical work or the expression of a musical work were mixed together from all (or most of) the tracks from another musical work or the expression of a musical work to form a so called DJ-Mix. \n \nThe tracks might have been altered by pitching (so that the tempo of one track matches the tempo of the following track) and fading (so that one track blends in smoothly with the other). If the tracks have been more substantially altered, the \"mo:remix\" relationship type is more appropriate. ",
785
+ "http://purl.org/ontology/mo/level": "1",
786
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
787
+ isDefinedBy: "http://purl.org/ontology/mo/",
788
+ label: "djmix_of",
789
+ subPropertyOf: "http://purl.org/ontology/mo/derived_from",
790
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
789
791
  property :djmixed,
790
- comment: "Used to relate an artist who djmixed a musical work or the expression of a musical work. \n \nThe artist usually selected the tracks, chose their sequence, and slightly changed them by fading (so that one track blends in smoothly with the other) or pitching (so that the tempo of one track matches the tempo of the following track). This applies to a 'Mixtape' in which all tracks were DJ-mixed together into one single long track. ".freeze,
791
- domain: "http://purl.org/ontology/mo/MusicArtist".freeze,
792
- "http://purl.org/ontology/mo/level": "1".freeze,
793
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
794
- inverseOf: "http://purl.org/ontology/mo/djmixed_by".freeze,
795
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
796
- label: "djmixed".freeze,
797
- range: "http://purl.org/ontology/mo/Signal".freeze,
798
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
792
+ comment: "Used to relate an artist who djmixed a musical work or the expression of a musical work. \n \nThe artist usually selected the tracks, chose their sequence, and slightly changed them by fading (so that one track blends in smoothly with the other) or pitching (so that the tempo of one track matches the tempo of the following track). This applies to a 'Mixtape' in which all tracks were DJ-mixed together into one single long track. ",
793
+ domain: "http://purl.org/ontology/mo/MusicArtist",
794
+ "http://purl.org/ontology/mo/level": "1",
795
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
796
+ inverseOf: "http://purl.org/ontology/mo/djmixed_by",
797
+ isDefinedBy: "http://purl.org/ontology/mo/",
798
+ label: "djmixed",
799
+ range: "http://purl.org/ontology/mo/Signal",
800
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
799
801
  property :djmixed_by,
800
- comment: "Used to relate a work or the expression of a work to an artist who djmixed it. \n \nThe artist usually selected the tracks, chose their sequence, and slightly changed them by fading (so that one track blends in smoothly with the other) or pitching (so that the tempo of one track matches the tempo of the following track). This applies to a 'Mixtape' in which all tracks were DJ-mixed together into one single long track. ".freeze,
801
- domain: "http://purl.org/ontology/mo/Signal".freeze,
802
- "http://purl.org/ontology/mo/level": "1".freeze,
803
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
804
- inverseOf: "http://purl.org/ontology/mo/djmixed".freeze,
805
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
806
- label: "djmixed_by".freeze,
807
- range: "http://purl.org/ontology/mo/MusicArtist".freeze,
808
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
802
+ comment: "Used to relate a work or the expression of a work to an artist who djmixed it. \n \nThe artist usually selected the tracks, chose their sequence, and slightly changed them by fading (so that one track blends in smoothly with the other) or pitching (so that the tempo of one track matches the tempo of the following track). This applies to a 'Mixtape' in which all tracks were DJ-mixed together into one single long track. ",
803
+ domain: "http://purl.org/ontology/mo/Signal",
804
+ "http://purl.org/ontology/mo/level": "1",
805
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
806
+ inverseOf: "http://purl.org/ontology/mo/djmixed",
807
+ isDefinedBy: "http://purl.org/ontology/mo/",
808
+ label: "djmixed_by",
809
+ range: "http://purl.org/ontology/mo/MusicArtist",
810
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
809
811
  property :download,
810
- comment: "\n This property can be used to link from a person to the website where they make their works available, or from\n a manifestation (a track or an album, for example) to a web page where it is available for\n download.\n \n It is better to use one of the three sub-properties instead of this one in order to specify wether the\n content can be accessed for free (mo:freedownload), if it is just free preview material (mo:previewdownload), or\n if it can be accessed for some money (mo:paiddownload) (this includes links to the Amazon store, for example).\n\n This property MUST be used only if the content is just available through a web page (holding, for example\n a Flash application) - it is better to link to actual content directly through the use of mo:available_as and\n mo:Stream, mo:Torrent or mo:ED2K, etc. Therefore, Semantic Web user agents that don't know how to read HTML and even\n less to rip streams from Flash applications can still access the audio content.\n ".freeze,
812
+ comment: "\n This property can be used to link from a person to the website where they make their works available, or from\n a manifestation (a track or an album, for example) to a web page where it is available for\n download.\n \n It is better to use one of the three sub-properties instead of this one in order to specify wether the\n content can be accessed for free (mo:freedownload), if it is just free preview material (mo:previewdownload), or\n if it can be accessed for some money (mo:paiddownload) (this includes links to the Amazon store, for example).\n\n This property MUST be used only if the content is just available through a web page (holding, for example\n a Flash application) - it is better to link to actual content directly through the use of mo:available_as and\n mo:Stream, mo:Torrent or mo:ED2K, etc. Therefore, Semantic Web user agents that don't know how to read HTML and even\n less to rip streams from Flash applications can still access the audio content.\n ",
811
813
  domain: term(
812
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
813
- unionOf: list("http://purl.org/vocab/frbr/core#Manifestation".freeze, "http://xmlns.com/foaf/0.1/Agent".freeze, "http://purl.org/ontology/mo/CorporateBody".freeze)
814
+ type: "http://www.w3.org/2002/07/owl#Class",
815
+ unionOf: list("http://purl.org/vocab/frbr/core#Manifestation", "http://xmlns.com/foaf/0.1/Agent", "http://purl.org/ontology/mo/CorporateBody")
814
816
  ),
815
- "http://purl.org/ontology/mo/level": "1".freeze,
816
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
817
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
818
- label: "download".freeze,
819
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
820
- subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze,
821
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
817
+ "http://purl.org/ontology/mo/level": "1",
818
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
819
+ isDefinedBy: "http://purl.org/ontology/mo/",
820
+ label: "download",
821
+ range: "http://xmlns.com/foaf/0.1/Document",
822
+ subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
823
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
822
824
  property :duration,
823
- comment: "The duration of a track or a signal in ms".freeze,
825
+ comment: "The duration of a track or a signal in ms",
824
826
  domain: term(
825
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
826
- unionOf: list("http://purl.org/ontology/mo/Track".freeze, "http://purl.org/ontology/mo/Signal".freeze)
827
+ type: "http://www.w3.org/2002/07/owl#Class",
828
+ unionOf: list("http://purl.org/ontology/mo/Track", "http://purl.org/ontology/mo/Signal")
827
829
  ),
828
- "http://purl.org/ontology/mo/level": "1".freeze,
829
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
830
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
831
- range: "http://www.w3.org/2001/XMLSchema#float".freeze,
832
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
830
+ "http://purl.org/ontology/mo/level": "1",
831
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
832
+ isDefinedBy: "http://purl.org/ontology/mo/",
833
+ range: "http://www.w3.org/2001/XMLSchema#float",
834
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
833
835
  property :ean,
834
- comment: "The European Article Number (EAN) is a universal identifier for products, commonly printed in form of barcodes on them. The numbers represented by those codes can either be 8 or 13 digits long, with the 13-digit-version being most common. EANs form a superset of the North American Universal Product Code (UPC) as every UPC can be made an EAN by adding a leading zero to it. Additionally every EAN is also a Japanese Article Number (JAN). The identifiers were formerly assigned by EAN International which merged with Uniform Code Council (UCC, the guys behind the UPCs) and Electronic Commerce Council of Canada (ECCC) to become GS1. ".freeze,
835
- domain: "http://purl.org/ontology/mo/Release".freeze,
836
- "http://purl.org/ontology/mo/level": "1".freeze,
837
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
838
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
839
- label: "ean".freeze,
840
- range: "http://www.w3.org/2001/XMLSchema#string".freeze,
841
- subPropertyOf: "http://purl.org/ontology/mo/gtin".freeze,
842
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
836
+ comment: "The European Article Number (EAN) is a universal identifier for products, commonly printed in form of barcodes on them. The numbers represented by those codes can either be 8 or 13 digits long, with the 13-digit-version being most common. EANs form a superset of the North American Universal Product Code (UPC) as every UPC can be made an EAN by adding a leading zero to it. Additionally every EAN is also a Japanese Article Number (JAN). The identifiers were formerly assigned by EAN International which merged with Uniform Code Council (UCC, the guys behind the UPCs) and Electronic Commerce Council of Canada (ECCC) to become GS1. ",
837
+ domain: "http://purl.org/ontology/mo/Release",
838
+ "http://purl.org/ontology/mo/level": "1",
839
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
840
+ isDefinedBy: "http://purl.org/ontology/mo/",
841
+ label: "ean",
842
+ range: "http://www.w3.org/2001/XMLSchema#string",
843
+ subPropertyOf: "http://purl.org/ontology/mo/gtin",
844
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
843
845
  property :encodes,
844
- comment: "\n Relates a MusicalItem (a track on a particular CD, an audio file, a stream somewhere) to the signal it encodes.\n\n This is usually a lower-resolution version of the master signal (issued from a Recording event).\n ".freeze,
845
- domain: "http://purl.org/ontology/mo/MusicalItem".freeze,
846
- "http://purl.org/ontology/mo/level": "1".freeze,
847
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
848
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
849
- label: "encodes".freeze,
850
- range: "http://purl.org/ontology/mo/Signal".freeze,
851
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
846
+ comment: "\n Relates a MusicalItem (a track on a particular CD, an audio file, a stream somewhere) to the signal it encodes.\n\n This is usually a lower-resolution version of the master signal (issued from a Recording event).\n ",
847
+ domain: "http://purl.org/ontology/mo/MusicalItem",
848
+ "http://purl.org/ontology/mo/level": "1",
849
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
850
+ isDefinedBy: "http://purl.org/ontology/mo/",
851
+ label: "encodes",
852
+ range: "http://purl.org/ontology/mo/Signal",
853
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
852
854
  property :encoding,
853
- comment: "Method used to convert analog electronic signals into digital format such as \"MP3 CBR @ 128kbps\", \"OGG @ 160kbps\", \"FLAC\", etc.".freeze,
854
- domain: "http://purl.org/ontology/mo/AudioFile".freeze,
855
- "http://purl.org/ontology/mo/level": "1".freeze,
856
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
857
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
858
- label: "encoding".freeze,
859
- range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
860
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
855
+ comment: "Method used to convert analog electronic signals into digital format such as \"MP3 CBR @ 128kbps\", \"OGG @ 160kbps\", \"FLAC\", etc.",
856
+ domain: "http://purl.org/ontology/mo/AudioFile",
857
+ "http://purl.org/ontology/mo/level": "1",
858
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
859
+ isDefinedBy: "http://purl.org/ontology/mo/",
860
+ label: "encoding",
861
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal",
862
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
861
863
  property :engineer,
862
- comment: "Relates a performance or a recording to the engineer involved".freeze,
864
+ comment: "Relates a performance or a recording to the engineer involved",
863
865
  domain: term(
864
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
865
- unionOf: list("http://purl.org/ontology/mo/Performance".freeze, "http://purl.org/ontology/mo/Recording".freeze, "http://purl.org/ontology/mo/RecordingSession".freeze)
866
+ type: "http://www.w3.org/2002/07/owl#Class",
867
+ unionOf: list("http://purl.org/ontology/mo/Performance", "http://purl.org/ontology/mo/Recording", "http://purl.org/ontology/mo/RecordingSession")
866
868
  ),
867
- "http://purl.org/ontology/mo/level": "2".freeze,
868
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
869
- inverseOf: "http://purl.org/ontology/mo/engineered".freeze,
870
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
871
- range: "http://xmlns.com/foaf/0.1/Agent".freeze,
872
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#agent".freeze,
873
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
869
+ "http://purl.org/ontology/mo/level": "2",
870
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
871
+ inverseOf: "http://purl.org/ontology/mo/engineered",
872
+ isDefinedBy: "http://purl.org/ontology/mo/",
873
+ range: "http://xmlns.com/foaf/0.1/Agent",
874
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#agent",
875
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
874
876
  property :engineered,
875
- comment: "Relates agents to the performances/recordings they were engineering in".freeze,
876
- domain: "http://xmlns.com/foaf/0.1/Agent".freeze,
877
- "http://purl.org/ontology/mo/level": "2".freeze,
878
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
879
- inverseOf: "http://purl.org/ontology/mo/engineer".freeze,
880
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
881
- label: "engineered".freeze,
877
+ comment: "Relates agents to the performances/recordings they were engineering in",
878
+ domain: "http://xmlns.com/foaf/0.1/Agent",
879
+ "http://purl.org/ontology/mo/level": "2",
880
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
881
+ inverseOf: "http://purl.org/ontology/mo/engineer",
882
+ isDefinedBy: "http://purl.org/ontology/mo/",
883
+ label: "engineered",
882
884
  range: term(
883
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
884
- unionOf: list("http://purl.org/ontology/mo/Performance".freeze, "http://purl.org/ontology/mo/Recording".freeze, "http://purl.org/ontology/mo/RecordingSession".freeze)
885
+ type: "http://www.w3.org/2002/07/owl#Class",
886
+ unionOf: list("http://purl.org/ontology/mo/Performance", "http://purl.org/ontology/mo/Recording", "http://purl.org/ontology/mo/RecordingSession")
885
887
  ),
886
- subPropertyOf: ["http://purl.org/NET/c4dm/event.owl#isAgentIn".freeze, "http://purl.org/vocab/bio/0.1/event".freeze],
887
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
888
+ subPropertyOf: ["http://purl.org/NET/c4dm/event.owl#isAgentIn", "http://purl.org/vocab/bio/0.1/event"],
889
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
888
890
  property :eventHomePage,
889
- equivalentProperty: "http://purl.org/ontology/mo/event_homepage".freeze,
890
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
891
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
891
+ equivalentProperty: "http://purl.org/ontology/mo/event_homepage",
892
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
893
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
892
894
  property :event_homepage,
893
- comment: "Links a particular event to a web page".freeze,
894
- domain: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
895
- "http://purl.org/ontology/mo/level": "2".freeze,
896
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
897
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
898
- label: "event homepage".freeze,
899
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
900
- subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze,
901
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
895
+ comment: "Links a particular event to a web page",
896
+ domain: "http://purl.org/NET/c4dm/event.owl#Event",
897
+ "http://purl.org/ontology/mo/level": "2",
898
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
899
+ isDefinedBy: "http://purl.org/ontology/mo/",
900
+ label: "event homepage",
901
+ range: "http://xmlns.com/foaf/0.1/Document",
902
+ subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
903
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
902
904
  property :exchange_item,
903
- comment: "A person, a group of person or an organization exchanging an exemplar of a single manifestation.".freeze,
904
- domain: "http://xmlns.com/foaf/0.1/Agent".freeze,
905
- "http://purl.org/ontology/mo/level": "1".freeze,
906
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
907
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
908
- label: "exchange_item".freeze,
909
- range: "http://purl.org/vocab/frbr/core#Item".freeze,
910
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
905
+ comment: "A person, a group of person or an organization exchanging an exemplar of a single manifestation.",
906
+ domain: "http://xmlns.com/foaf/0.1/Agent",
907
+ "http://purl.org/ontology/mo/level": "1",
908
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
909
+ isDefinedBy: "http://purl.org/ontology/mo/",
910
+ label: "exchange_item",
911
+ range: "http://purl.org/vocab/frbr/core#Item",
912
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
911
913
  property :fanpage,
912
- comment: "Used to link an artist to a fan-created webpage devoted to that artist.".freeze,
913
- domain: "http://purl.org/ontology/mo/MusicArtist".freeze,
914
- "http://purl.org/ontology/mo/level": "1".freeze,
915
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
916
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
917
- label: "fanpage".freeze,
918
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
919
- subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze,
920
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
914
+ comment: "Used to link an artist to a fan-created webpage devoted to that artist.",
915
+ domain: "http://purl.org/ontology/mo/MusicArtist",
916
+ "http://purl.org/ontology/mo/level": "1",
917
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
918
+ isDefinedBy: "http://purl.org/ontology/mo/",
919
+ label: "fanpage",
920
+ range: "http://xmlns.com/foaf/0.1/Document",
921
+ subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
922
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
921
923
  property :free_download,
922
- comment: "\n This property can be used to link from a person to the website where they make their works available, or from\n a manifestation (a track or an album, for example) to a web page where it is available for free \n download.\n\n This property MUST be used only if the content is just available through a web page (holding, for example\n a Flash application) - it is better to link to actual content directly through the use of mo:available_as and \n mo:Stream, mo:Torrent or mo:ED2K, etc. Therefore, Semantic Web user agents that don't know how to read HTML and even\n less to rip streams from Flash applications can still access the audio content.\n ".freeze,
924
+ comment: "\n This property can be used to link from a person to the website where they make their works available, or from\n a manifestation (a track or an album, for example) to a web page where it is available for free \n download.\n\n This property MUST be used only if the content is just available through a web page (holding, for example\n a Flash application) - it is better to link to actual content directly through the use of mo:available_as and \n mo:Stream, mo:Torrent or mo:ED2K, etc. Therefore, Semantic Web user agents that don't know how to read HTML and even\n less to rip streams from Flash applications can still access the audio content.\n ",
923
925
  domain: term(
924
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
925
- unionOf: list("http://purl.org/vocab/frbr/core#Manifestation".freeze, "http://xmlns.com/foaf/0.1/Agent".freeze, "http://purl.org/ontology/mo/CorporateBody".freeze)
926
+ type: "http://www.w3.org/2002/07/owl#Class",
927
+ unionOf: list("http://purl.org/vocab/frbr/core#Manifestation", "http://xmlns.com/foaf/0.1/Agent", "http://purl.org/ontology/mo/CorporateBody")
926
928
  ),
927
- "http://purl.org/ontology/mo/level": "1".freeze,
928
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
929
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
930
- label: "free download".freeze,
931
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
932
- subPropertyOf: ["http://purl.org/ontology/mo/download".freeze, "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze],
933
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
929
+ "http://purl.org/ontology/mo/level": "1",
930
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
931
+ isDefinedBy: "http://purl.org/ontology/mo/",
932
+ label: "free download",
933
+ range: "http://xmlns.com/foaf/0.1/Document",
934
+ subPropertyOf: ["http://purl.org/ontology/mo/download", "http://xmlns.com/foaf/0.1/isPrimaryTopicOf"],
935
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
934
936
  property :freedownload,
935
- equivalentProperty: "http://purl.org/ontology/mo/free_download".freeze,
936
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
937
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
938
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
937
+ equivalentProperty: "http://purl.org/ontology/mo/free_download",
938
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
939
+ isDefinedBy: "http://purl.org/ontology/mo/",
940
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
939
941
  property :genre,
940
- comment: "\n Associates an event (like a performance or a recording) to a particular musical genre.\n Further version of this property may also include works and scores in the domain.\n ".freeze,
942
+ comment: "\n Associates an event (like a performance or a recording) to a particular musical genre.\n Further version of this property may also include works and scores in the domain.\n ",
941
943
  domain: term(
942
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
943
- unionOf: list("http://xmlns.com/foaf/0.1/Agent".freeze, "http://purl.org/ontology/mo/Performance".freeze, "http://purl.org/ontology/mo/Arrangement".freeze, "http://purl.org/ontology/mo/Composition".freeze, "http://purl.org/ontology/mo/Recording".freeze, "http://purl.org/ontology/mo/RecordingSession".freeze, "http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze, "http://purl.org/ontology/mo/MusicalItem".freeze)
944
+ type: "http://www.w3.org/2002/07/owl#Class",
945
+ unionOf: list("http://xmlns.com/foaf/0.1/Agent", "http://purl.org/ontology/mo/Performance", "http://purl.org/ontology/mo/Arrangement", "http://purl.org/ontology/mo/Composition", "http://purl.org/ontology/mo/Recording", "http://purl.org/ontology/mo/RecordingSession", "http://purl.org/ontology/mo/MusicalWork", "http://purl.org/ontology/mo/MusicalExpression", "http://purl.org/ontology/mo/MusicalManifestation", "http://purl.org/ontology/mo/MusicalItem")
944
946
  ),
945
- "http://purl.org/ontology/mo/level": "2".freeze,
946
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
947
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
948
- label: "genre".freeze,
949
- range: "http://purl.org/ontology/mo/Genre".freeze,
950
- subPropertyOf: "http://purl.org/ontology/ao/core#genre".freeze,
951
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
947
+ "http://purl.org/ontology/mo/level": "2",
948
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
949
+ isDefinedBy: "http://purl.org/ontology/mo/",
950
+ label: "genre",
951
+ range: "http://purl.org/ontology/mo/Genre",
952
+ subPropertyOf: "http://purl.org/ontology/ao/core#genre",
953
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
952
954
  property :grid,
953
- comment: "The Global Release Identifier (GRid) is a system for uniquely identifying Releases of music over electronic networks (that is, online stores where you can buy music as digital files). As that it can be seen as the equivalent of the BarCode (or more correctly the GTIN) as found on physical releases of music. Like the ISRC (a code for identifying single recordings as found on releases) it was developed by the IFPI but it does not appear to be a standard of the ISO.".freeze,
954
- domain: "http://purl.org/ontology/mo/Release".freeze,
955
- "http://purl.org/ontology/mo/level": "1".freeze,
956
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
957
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
958
- label: "GRid".freeze,
959
- range: "http://www.w3.org/2001/XMLSchema#string".freeze,
960
- subPropertyOf: "http://purl.org/ontology/mo/uuid".freeze,
961
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
955
+ comment: "The Global Release Identifier (GRid) is a system for uniquely identifying Releases of music over electronic networks (that is, online stores where you can buy music as digital files). As that it can be seen as the equivalent of the BarCode (or more correctly the GTIN) as found on physical releases of music. Like the ISRC (a code for identifying single recordings as found on releases) it was developed by the IFPI but it does not appear to be a standard of the ISO.",
956
+ domain: "http://purl.org/ontology/mo/Release",
957
+ "http://purl.org/ontology/mo/level": "1",
958
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
959
+ isDefinedBy: "http://purl.org/ontology/mo/",
960
+ label: "GRid",
961
+ range: "http://www.w3.org/2001/XMLSchema#string",
962
+ subPropertyOf: "http://purl.org/ontology/mo/uuid",
963
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
962
964
  property :group,
963
- comment: "Relates a membership event with the corresponding group".freeze,
964
- domain: "http://purl.org/ontology/mo/Membership".freeze,
965
- "http://purl.org/ontology/mo/level": "1".freeze,
966
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
967
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
968
- label: "group".freeze,
969
- range: "http://xmlns.com/foaf/0.1/Group".freeze,
970
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
965
+ comment: "Relates a membership event with the corresponding group",
966
+ domain: "http://purl.org/ontology/mo/Membership",
967
+ "http://purl.org/ontology/mo/level": "1",
968
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
969
+ isDefinedBy: "http://purl.org/ontology/mo/",
970
+ label: "group",
971
+ range: "http://xmlns.com/foaf/0.1/Group",
972
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
971
973
  property :gtin,
972
- comment: "GTIN is a grouping term for EANs and UPCs. In common speech those are called barcodes although the barcodes are just a representation of those identifying numbers.".freeze,
973
- domain: "http://purl.org/ontology/mo/Release".freeze,
974
- "http://purl.org/ontology/mo/level": "1".freeze,
975
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
976
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
977
- label: "gtin".freeze,
978
- range: "http://www.w3.org/2001/XMLSchema#string".freeze,
979
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
974
+ comment: "GTIN is a grouping term for EANs and UPCs. In common speech those are called barcodes although the barcodes are just a representation of those identifying numbers.",
975
+ domain: "http://purl.org/ontology/mo/Release",
976
+ "http://purl.org/ontology/mo/level": "1",
977
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
978
+ isDefinedBy: "http://purl.org/ontology/mo/",
979
+ label: "gtin",
980
+ range: "http://www.w3.org/2001/XMLSchema#string",
981
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
980
982
  property :has_track,
981
- equivalentProperty: "http://purl.org/ontology/mo/track".freeze,
982
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
983
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
984
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
983
+ equivalentProperty: "http://purl.org/ontology/mo/track",
984
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
985
+ isDefinedBy: "http://purl.org/ontology/mo/",
986
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
985
987
  property :headliner,
986
- comment: "Relates a performance to the headliner(s) involved".freeze,
987
- "http://purl.org/ontology/mo/level": "2".freeze,
988
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
989
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
990
- label: "headliner".freeze,
991
- subPropertyOf: "http://purl.org/ontology/mo/performer".freeze,
992
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
988
+ comment: "Relates a performance to the headliner(s) involved",
989
+ "http://purl.org/ontology/mo/level": "2",
990
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
991
+ isDefinedBy: "http://purl.org/ontology/mo/",
992
+ label: "headliner",
993
+ subPropertyOf: "http://purl.org/ontology/mo/performer",
994
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
993
995
  property :homepage,
994
- comment: "Links an artist, a record, etc. to a corresponding web page".freeze,
996
+ comment: "Links an artist, a record, etc. to a corresponding web page",
995
997
  domain: term(
996
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
997
- unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicArtist".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze, "http://purl.org/ontology/mo/MusicalItem".freeze)
998
+ type: "http://www.w3.org/2002/07/owl#Class",
999
+ unionOf: list("http://purl.org/ontology/mo/MusicalWork", "http://purl.org/ontology/mo/MusicArtist", "http://purl.org/ontology/mo/MusicalExpression", "http://purl.org/ontology/mo/MusicalManifestation", "http://purl.org/ontology/mo/MusicalItem")
998
1000
  ),
999
- "http://purl.org/ontology/mo/level": "1".freeze,
1000
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1001
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1002
- label: "homepage".freeze,
1003
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
1004
- subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze,
1005
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1001
+ "http://purl.org/ontology/mo/level": "1",
1002
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1003
+ isDefinedBy: "http://purl.org/ontology/mo/",
1004
+ label: "homepage",
1005
+ range: "http://xmlns.com/foaf/0.1/Document",
1006
+ subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
1007
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1006
1008
  property :image,
1007
- comment: "Indicates a pictorial image (JPEG, GIF, PNG, Etc.) of a musical work, the expression of a musical work, the manifestation of a work or the examplar of a manifestation.".freeze,
1009
+ comment: "Indicates a pictorial image (JPEG, GIF, PNG, Etc.) of a musical work, the expression of a musical work, the manifestation of a work or the examplar of a manifestation.",
1008
1010
  domain: term(
1009
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1010
- unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicArtist".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze, "http://purl.org/ontology/mo/MusicalItem".freeze)
1011
+ type: "http://www.w3.org/2002/07/owl#Class",
1012
+ unionOf: list("http://purl.org/ontology/mo/MusicalWork", "http://purl.org/ontology/mo/MusicArtist", "http://purl.org/ontology/mo/MusicalExpression", "http://purl.org/ontology/mo/MusicalManifestation", "http://purl.org/ontology/mo/MusicalItem")
1011
1013
  ),
1012
- "http://purl.org/ontology/mo/level": "1".freeze,
1013
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1014
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1015
- label: "image".freeze,
1016
- range: "http://xmlns.com/foaf/0.1/Image".freeze,
1017
- subPropertyOf: "http://xmlns.com/foaf/0.1/depiction".freeze,
1018
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1014
+ "http://purl.org/ontology/mo/level": "1",
1015
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1016
+ isDefinedBy: "http://purl.org/ontology/mo/",
1017
+ label: "image",
1018
+ range: "http://xmlns.com/foaf/0.1/Image",
1019
+ subPropertyOf: "http://xmlns.com/foaf/0.1/depiction",
1020
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1019
1021
  property :imdb,
1020
- comment: "Used to link an artist, a musical work or the expression of a musical work to their equivalent page on IMDb, the InternetMovieDatabase.".freeze,
1022
+ comment: "Used to link an artist, a musical work or the expression of a musical work to their equivalent page on IMDb, the InternetMovieDatabase.",
1021
1023
  domain: term(
1022
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1023
- unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze, "http://purl.org/ontology/mo/MusicArtist".freeze, "http://purl.org/ontology/mo/CorporateBody".freeze)
1024
+ type: "http://www.w3.org/2002/07/owl#Class",
1025
+ unionOf: list("http://purl.org/ontology/mo/MusicalWork", "http://purl.org/ontology/mo/MusicalExpression", "http://purl.org/ontology/mo/MusicalManifestation", "http://purl.org/ontology/mo/MusicArtist", "http://purl.org/ontology/mo/CorporateBody")
1024
1026
  ),
1025
- "http://purl.org/ontology/mo/level": "1".freeze,
1026
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1027
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1028
- label: "imdb".freeze,
1029
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
1030
- subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze,
1031
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1027
+ "http://purl.org/ontology/mo/level": "1",
1028
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1029
+ isDefinedBy: "http://purl.org/ontology/mo/",
1030
+ label: "imdb",
1031
+ range: "http://xmlns.com/foaf/0.1/Document",
1032
+ subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
1033
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1032
1034
  property :instrument,
1033
- comment: "Relates a performance to a musical instrument involved".freeze,
1034
- domain: "http://purl.org/ontology/mo/Performance".freeze,
1035
- "http://purl.org/ontology/mo/level": "2".freeze,
1036
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1037
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1038
- range: "http://purl.org/ontology/mo/Instrument".freeze,
1039
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#factor".freeze,
1040
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1035
+ comment: "Relates a performance to a musical instrument involved",
1036
+ domain: "http://purl.org/ontology/mo/Performance",
1037
+ "http://purl.org/ontology/mo/level": "2",
1038
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1039
+ isDefinedBy: "http://purl.org/ontology/mo/",
1040
+ range: "http://purl.org/ontology/mo/Instrument",
1041
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#factor",
1042
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1041
1043
  property :interpreter,
1042
- comment: "Adds an involved music artist, who interpreted, remixed, or otherwise modified an existing signal, which resulted in the signal that is here the subject of this relation.".freeze,
1043
- domain: "http://purl.org/ontology/mo/Signal".freeze,
1044
- "http://purl.org/ontology/mo/level": "1".freeze,
1045
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1046
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1047
- label: "has interpeter".freeze,
1048
- range: "http://purl.org/ontology/mo/MusicArtist".freeze,
1049
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1044
+ comment: "Adds an involved music artist, who interpreted, remixed, or otherwise modified an existing signal, which resulted in the signal that is here the subject of this relation.",
1045
+ domain: "http://purl.org/ontology/mo/Signal",
1046
+ "http://purl.org/ontology/mo/level": "1",
1047
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1048
+ isDefinedBy: "http://purl.org/ontology/mo/",
1049
+ label: "has interpeter",
1050
+ range: "http://purl.org/ontology/mo/MusicArtist",
1051
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1050
1052
  property :ipi,
1051
- comment: "The Interested Parties Information Code (IPI) is an ISO standard similar to ISBNs for identifying the people or groups with some involvement with a particular musical work / compositions.".freeze,
1052
- domain: "http://purl.org/ontology/mo/MusicArtist".freeze,
1053
- "http://purl.org/ontology/mo/level": "1".freeze,
1054
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1055
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1056
- label: "ipi".freeze,
1057
- range: "http://www.w3.org/2001/XMLSchema#string".freeze,
1058
- subPropertyOf: "http://purl.org/ontology/mo/uuid".freeze,
1059
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1053
+ comment: "The Interested Parties Information Code (IPI) is an ISO standard similar to ISBNs for identifying the people or groups with some involvement with a particular musical work / compositions.",
1054
+ domain: "http://purl.org/ontology/mo/MusicArtist",
1055
+ "http://purl.org/ontology/mo/level": "1",
1056
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1057
+ isDefinedBy: "http://purl.org/ontology/mo/",
1058
+ label: "ipi",
1059
+ range: "http://www.w3.org/2001/XMLSchema#string",
1060
+ subPropertyOf: "http://purl.org/ontology/mo/uuid",
1061
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1060
1062
  property :ismn,
1061
- comment: "The International Standard Music Number (ISMN) is an ISO standard similar to ISBNs for identifying printed music publications".freeze,
1063
+ comment: "The International Standard Music Number (ISMN) is an ISO standard similar to ISBNs for identifying printed music publications",
1062
1064
  domain: term(
1063
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1064
- unionOf: list("http://purl.org/ontology/mo/PublishedLyrics".freeze, "http://purl.org/ontology/mo/PublishedLibretto".freeze, "http://purl.org/ontology/mo/PublishedScore".freeze)
1065
+ type: "http://www.w3.org/2002/07/owl#Class",
1066
+ unionOf: list("http://purl.org/ontology/mo/PublishedLyrics", "http://purl.org/ontology/mo/PublishedLibretto", "http://purl.org/ontology/mo/PublishedScore")
1065
1067
  ),
1066
- "http://purl.org/ontology/mo/level": "1".freeze,
1067
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1068
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1069
- label: "ismn".freeze,
1070
- range: "http://www.w3.org/2001/XMLSchema#string".freeze,
1071
- subPropertyOf: "http://purl.org/ontology/mo/uuid".freeze,
1072
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1068
+ "http://purl.org/ontology/mo/level": "1",
1069
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1070
+ isDefinedBy: "http://purl.org/ontology/mo/",
1071
+ label: "ismn",
1072
+ range: "http://www.w3.org/2001/XMLSchema#string",
1073
+ subPropertyOf: "http://purl.org/ontology/mo/uuid",
1074
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1073
1075
  property :isrc,
1074
- comment: "\n The ISRC (International Standard Recording Code) is the international identification system for sound recordings and music videorecordings. \n Each ISRC is a unique and permanent identifier for a specific recording which can be permanently encoded into a product as its digital fingerprint. \n Encoded ISRC provide the means to automatically identify recordings for royalty payments.\n ".freeze,
1075
- domain: "http://purl.org/ontology/mo/Signal".freeze,
1076
- "http://purl.org/ontology/mo/level": "1".freeze,
1077
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1078
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1079
- label: "isrc".freeze,
1080
- range: "http://www.w3.org/2001/XMLSchema#string".freeze,
1081
- subPropertyOf: "http://purl.org/ontology/mo/uuid".freeze,
1082
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1076
+ comment: "\n The ISRC (International Standard Recording Code) is the international identification system for sound recordings and music videorecordings. \n Each ISRC is a unique and permanent identifier for a specific recording which can be permanently encoded into a product as its digital fingerprint. \n Encoded ISRC provide the means to automatically identify recordings for royalty payments.\n ",
1077
+ domain: "http://purl.org/ontology/mo/Signal",
1078
+ "http://purl.org/ontology/mo/level": "1",
1079
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1080
+ isDefinedBy: "http://purl.org/ontology/mo/",
1081
+ label: "isrc",
1082
+ range: "http://www.w3.org/2001/XMLSchema#string",
1083
+ subPropertyOf: "http://purl.org/ontology/mo/uuid",
1084
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1083
1085
  property :iswc,
1084
- comment: "Links a musical work to the corresponding ISWC number".freeze,
1085
- domain: "http://purl.org/ontology/mo/MusicalWork".freeze,
1086
- "http://purl.org/ontology/mo/level": "1".freeze,
1087
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1088
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1089
- label: "iswc".freeze,
1090
- range: "http://www.w3.org/2001/XMLSchema#string".freeze,
1091
- subPropertyOf: "http://purl.org/ontology/mo/uuid".freeze,
1092
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1086
+ comment: "Links a musical work to the corresponding ISWC number",
1087
+ domain: "http://purl.org/ontology/mo/MusicalWork",
1088
+ "http://purl.org/ontology/mo/level": "1",
1089
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1090
+ isDefinedBy: "http://purl.org/ontology/mo/",
1091
+ label: "iswc",
1092
+ range: "http://www.w3.org/2001/XMLSchema#string",
1093
+ subPropertyOf: "http://purl.org/ontology/mo/uuid",
1094
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1093
1095
  property :item,
1094
- comment: "\n Relates a musical manifestation to a musical item (this album, and my particular cd) holding the\n entire manifestation, and not just a part of it.\n ".freeze,
1095
- domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
1096
- "http://purl.org/ontology/mo/level": "1".freeze,
1097
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1098
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1099
- range: "http://purl.org/ontology/mo/MusicalItem".freeze,
1100
- subPropertyOf: "http://purl.org/ontology/mo/available_as".freeze,
1101
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1096
+ comment: "\n Relates a musical manifestation to a musical item (this album, and my particular cd) holding the\n entire manifestation, and not just a part of it.\n ",
1097
+ domain: "http://purl.org/ontology/mo/MusicalManifestation",
1098
+ "http://purl.org/ontology/mo/level": "1",
1099
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1100
+ isDefinedBy: "http://purl.org/ontology/mo/",
1101
+ range: "http://purl.org/ontology/mo/MusicalItem",
1102
+ subPropertyOf: "http://purl.org/ontology/mo/available_as",
1103
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1102
1104
  property :key,
1103
- comment: "\n Indicated the key used by the musicians during a performance, or the key of a MusicalWork.\n Any of 24 major or minor diatonic scales that provide the tonal framework for a piece of music.".freeze,
1105
+ comment: "\n Indicated the key used by the musicians during a performance, or the key of a MusicalWork.\n Any of 24 major or minor diatonic scales that provide the tonal framework for a piece of music.",
1104
1106
  domain: term(
1105
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1106
- unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/Performance".freeze, "http://purl.org/ontology/mo/Signal".freeze)
1107
+ type: "http://www.w3.org/2002/07/owl#Class",
1108
+ unionOf: list("http://purl.org/ontology/mo/MusicalWork", "http://purl.org/ontology/mo/Performance", "http://purl.org/ontology/mo/Signal")
1107
1109
  ),
1108
- "http://purl.org/ontology/mo/level": "2".freeze,
1109
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1110
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1111
- label: "key".freeze,
1112
- range: "http://purl.org/NET/c4dm/keys.owl#Key".freeze,
1113
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1110
+ "http://purl.org/ontology/mo/level": "2",
1111
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1112
+ isDefinedBy: "http://purl.org/ontology/mo/",
1113
+ label: "key",
1114
+ range: "http://purl.org/NET/c4dm/keys.owl#Key",
1115
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1114
1116
  property :label,
1115
- comment: "Associates a release event with the label releasing the record".freeze,
1117
+ comment: "Associates a release event with the label releasing the record",
1116
1118
  domain: term(
1117
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1118
- unionOf: list("http://purl.org/ontology/mo/Release".freeze, "http://purl.org/ontology/mo/MusicArtist".freeze)
1119
+ type: "http://www.w3.org/2002/07/owl#Class",
1120
+ unionOf: list("http://purl.org/ontology/mo/Release", "http://purl.org/ontology/mo/MusicArtist")
1119
1121
  ),
1120
- "http://purl.org/ontology/mo/level": "1".freeze,
1121
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1122
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1123
- label: "label".freeze,
1124
- range: "http://purl.org/ontology/mo/Label".freeze,
1125
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1122
+ "http://purl.org/ontology/mo/level": "1",
1123
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1124
+ isDefinedBy: "http://purl.org/ontology/mo/",
1125
+ label: "label",
1126
+ range: "http://purl.org/ontology/mo/Label",
1127
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1126
1128
  property :lc,
1127
- comment: "The Label Code (LC) was introduced in 1977 by the IFPI (International Federation of Phonogram and Videogram Industries) in order to unmistakably identify the different record labels (see Introduction, Record labels) for rights purposes. The Label Code consists historically of 4 figures, presently being extended to 5 figures, preceded by LC and a dash (e.g. LC-0193 = Electrola; LC-0233 = His Master's Voice). Note that the number of countries using the LC is limited, and that the code given on the item is not always accurate.".freeze,
1128
- domain: "http://purl.org/ontology/mo/Label".freeze,
1129
- "http://purl.org/ontology/mo/level": "1".freeze,
1130
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1131
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1132
- label: "lc".freeze,
1133
- range: "http://www.w3.org/2001/XMLSchema#string".freeze,
1134
- subPropertyOf: "http://purl.org/ontology/mo/uuid".freeze,
1135
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1129
+ comment: "The Label Code (LC) was introduced in 1977 by the IFPI (International Federation of Phonogram and Videogram Industries) in order to unmistakably identify the different record labels (see Introduction, Record labels) for rights purposes. The Label Code consists historically of 4 figures, presently being extended to 5 figures, preceded by LC and a dash (e.g. LC-0193 = Electrola; LC-0233 = His Master's Voice). Note that the number of countries using the LC is limited, and that the code given on the item is not always accurate.",
1130
+ domain: "http://purl.org/ontology/mo/Label",
1131
+ "http://purl.org/ontology/mo/level": "1",
1132
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1133
+ isDefinedBy: "http://purl.org/ontology/mo/",
1134
+ label: "lc",
1135
+ range: "http://www.w3.org/2001/XMLSchema#string",
1136
+ subPropertyOf: "http://purl.org/ontology/mo/uuid",
1137
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1136
1138
  property :level,
1137
- comment: "\n This annotation property associates to a particular Music Ontology term the corresponding\n expressiveness level. These levels can be:\n\n - 1: Only editorial/Musicbrainz type information\n - 2: Workflow information\n - 3: Even decomposition\n \n This property is mainly used for specification generation.\n ".freeze,
1138
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1139
- label: "level".freeze,
1140
- type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze
1139
+ comment: "\n This annotation property associates to a particular Music Ontology term the corresponding\n expressiveness level. These levels can be:\n\n - 1: Only editorial/Musicbrainz type information\n - 2: Workflow information\n - 3: Even decomposition\n \n This property is mainly used for specification generation.\n ",
1140
+ isDefinedBy: "http://purl.org/ontology/mo/",
1141
+ label: "level",
1142
+ type: "http://www.w3.org/2002/07/owl#AnnotationProperty"
1141
1143
  property :licence,
1142
- comment: "Used to link a work or the expression of a work to the license under which they can be manipulated (downloaded, modified, etc). \n \nThis is usually used to link to a Creative Commons licence.".freeze,
1144
+ comment: "Used to link a work or the expression of a work to the license under which they can be manipulated (downloaded, modified, etc). \n \nThis is usually used to link to a Creative Commons licence.",
1143
1145
  domain: term(
1144
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1145
- unionOf: list("http://purl.org/vocab/frbr/core#Work".freeze, "http://purl.org/vocab/frbr/core#Expression".freeze, "http://purl.org/vocab/frbr/core#Manifestation".freeze)
1146
+ type: "http://www.w3.org/2002/07/owl#Class",
1147
+ unionOf: list("http://purl.org/vocab/frbr/core#Work", "http://purl.org/vocab/frbr/core#Expression", "http://purl.org/vocab/frbr/core#Manifestation")
1146
1148
  ),
1147
- "http://purl.org/ontology/mo/level": "1".freeze,
1148
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1149
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1150
- label: "licence".freeze,
1151
- range: "http://web.resource.org/cc/License".freeze,
1152
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1149
+ "http://purl.org/ontology/mo/level": "1",
1150
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1151
+ isDefinedBy: "http://purl.org/ontology/mo/",
1152
+ label: "licence",
1153
+ range: "http://web.resource.org/cc/License",
1154
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1153
1155
  property :listened,
1154
- comment: "Relates agents to the performances they were listening in".freeze,
1155
- domain: "http://xmlns.com/foaf/0.1/Agent".freeze,
1156
- "http://purl.org/ontology/mo/level": "2".freeze,
1157
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1158
- inverseOf: "http://purl.org/ontology/mo/listener".freeze,
1159
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1160
- label: "listened".freeze,
1161
- range: "http://purl.org/ontology/mo/Performance".freeze,
1162
- subPropertyOf: ["http://purl.org/NET/c4dm/event.owl#isAgentIn".freeze, "http://purl.org/vocab/bio/0.1/event".freeze],
1163
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1156
+ comment: "Relates agents to the performances they were listening in",
1157
+ domain: "http://xmlns.com/foaf/0.1/Agent",
1158
+ "http://purl.org/ontology/mo/level": "2",
1159
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1160
+ inverseOf: "http://purl.org/ontology/mo/listener",
1161
+ isDefinedBy: "http://purl.org/ontology/mo/",
1162
+ label: "listened",
1163
+ range: "http://purl.org/ontology/mo/Performance",
1164
+ subPropertyOf: ["http://purl.org/NET/c4dm/event.owl#isAgentIn", "http://purl.org/vocab/bio/0.1/event"],
1165
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1164
1166
  property :listener,
1165
- comment: "Relates a performance to the listener involved".freeze,
1166
- domain: "http://purl.org/ontology/mo/Performance".freeze,
1167
- "http://purl.org/ontology/mo/level": "2".freeze,
1168
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1169
- inverseOf: "http://purl.org/ontology/mo/listened".freeze,
1170
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1171
- range: "http://xmlns.com/foaf/0.1/Agent".freeze,
1172
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#agent".freeze,
1173
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1167
+ comment: "Relates a performance to the listener involved",
1168
+ domain: "http://purl.org/ontology/mo/Performance",
1169
+ "http://purl.org/ontology/mo/level": "2",
1170
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1171
+ inverseOf: "http://purl.org/ontology/mo/listened",
1172
+ isDefinedBy: "http://purl.org/ontology/mo/",
1173
+ range: "http://xmlns.com/foaf/0.1/Agent",
1174
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#agent",
1175
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1174
1176
  property :lyrics,
1175
- comment: "Associates lyrics with a musical work".freeze,
1176
- domain: "http://purl.org/ontology/mo/MusicalWork".freeze,
1177
- "http://purl.org/ontology/mo/level": "2".freeze,
1178
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1179
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1180
- label: "lyrics".freeze,
1181
- range: "http://purl.org/ontology/mo/Lyrics".freeze,
1182
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1177
+ comment: "Associates lyrics with a musical work",
1178
+ domain: "http://purl.org/ontology/mo/MusicalWork",
1179
+ "http://purl.org/ontology/mo/level": "2",
1180
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1181
+ isDefinedBy: "http://purl.org/ontology/mo/",
1182
+ label: "lyrics",
1183
+ range: "http://purl.org/ontology/mo/Lyrics",
1184
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1183
1185
  property :mailorder,
1184
- comment: "Used to link a musical work or the expression of a musical work to a website where people can buy a copy of the musical manifestation.".freeze,
1186
+ comment: "Used to link a musical work or the expression of a musical work to a website where people can buy a copy of the musical manifestation.",
1185
1187
  domain: term(
1186
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1187
- unionOf: list("http://purl.org/vocab/frbr/core#Manifestation".freeze, "http://purl.org/ontology/mo/MusicArtist".freeze, "http://purl.org/ontology/mo/CorporateBody".freeze)
1188
+ type: "http://www.w3.org/2002/07/owl#Class",
1189
+ unionOf: list("http://purl.org/vocab/frbr/core#Manifestation", "http://purl.org/ontology/mo/MusicArtist", "http://purl.org/ontology/mo/CorporateBody")
1188
1190
  ),
1189
- "http://purl.org/ontology/mo/level": "1".freeze,
1190
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1191
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1192
- label: "mailorder".freeze,
1193
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
1194
- subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze,
1195
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1191
+ "http://purl.org/ontology/mo/level": "1",
1192
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1193
+ isDefinedBy: "http://purl.org/ontology/mo/",
1194
+ label: "mailorder",
1195
+ range: "http://xmlns.com/foaf/0.1/Document",
1196
+ subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
1197
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1196
1198
  property :mashup_of,
1197
- comment: "Indicates that musical works or the expressions of a musical work were mashed up on this album or track. \n \nThis means that two musical works or the expressions of a musical work by different artists are mixed together, over each other, or otherwise combined into a single musical work (usually by a third artist, the remixer).".freeze,
1198
- "http://purl.org/ontology/mo/level": "1".freeze,
1199
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1200
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1201
- label: "mashup_of".freeze,
1202
- subPropertyOf: "http://purl.org/ontology/mo/derived_from".freeze,
1203
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1199
+ comment: "Indicates that musical works or the expressions of a musical work were mashed up on this album or track. \n \nThis means that two musical works or the expressions of a musical work by different artists are mixed together, over each other, or otherwise combined into a single musical work (usually by a third artist, the remixer).",
1200
+ "http://purl.org/ontology/mo/level": "1",
1201
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1202
+ isDefinedBy: "http://purl.org/ontology/mo/",
1203
+ label: "mashup_of",
1204
+ subPropertyOf: "http://purl.org/ontology/mo/derived_from",
1205
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1204
1206
  property :media_type,
1205
- comment: "The mediatype (file format or MIME type, or physical medium) of a musical manifestation, e.g. a MP3, CD or vinyl.".freeze,
1206
- domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
1207
- "http://purl.org/ontology/mo/level": "1".freeze,
1208
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1209
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1210
- label: "has media type".freeze,
1211
- range: "http://purl.org/dc/terms/MediaType".freeze,
1212
- subPropertyOf: "http://purl.org/dc/terms/format".freeze,
1213
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1207
+ comment: "The mediatype (file format or MIME type, or physical medium) of a musical manifestation, e.g. a MP3, CD or vinyl.",
1208
+ domain: "http://purl.org/ontology/mo/MusicalManifestation",
1209
+ "http://purl.org/ontology/mo/level": "1",
1210
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1211
+ isDefinedBy: "http://purl.org/ontology/mo/",
1212
+ label: "has media type",
1213
+ range: "http://purl.org/dc/terms/MediaType",
1214
+ subPropertyOf: "http://purl.org/dc/terms/format",
1215
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1214
1216
  property :medley_of,
1215
- comment: "Indicates that a musical expression is a medley of several other musical expressions. \n \nThis means that the orignial musical expression were rearranged to create a new musical expression in the form of a medley. ".freeze,
1216
- "http://purl.org/ontology/mo/level": "1".freeze,
1217
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1218
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1219
- label: "medley_of".freeze,
1220
- subPropertyOf: "http://purl.org/ontology/mo/derived_from".freeze,
1221
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1217
+ comment: "Indicates that a musical expression is a medley of several other musical expressions. \n \nThis means that the orignial musical expression were rearranged to create a new musical expression in the form of a medley. ",
1218
+ "http://purl.org/ontology/mo/level": "1",
1219
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1220
+ isDefinedBy: "http://purl.org/ontology/mo/",
1221
+ label: "medley_of",
1222
+ subPropertyOf: "http://purl.org/ontology/mo/derived_from",
1223
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1222
1224
  property :member,
1223
- comment: "\n Indicates a member of a musical group\n ".freeze,
1224
- domain: "http://purl.org/ontology/mo/MusicGroup".freeze,
1225
- "http://purl.org/ontology/mo/level": "1".freeze,
1226
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1227
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1228
- label: "member".freeze,
1229
- range: "http://xmlns.com/foaf/0.1/Agent".freeze,
1230
- subPropertyOf: "http://xmlns.com/foaf/0.1/member".freeze,
1231
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1225
+ comment: "\n Indicates a member of a musical group\n ",
1226
+ domain: "http://purl.org/ontology/mo/MusicGroup",
1227
+ "http://purl.org/ontology/mo/level": "1",
1228
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1229
+ isDefinedBy: "http://purl.org/ontology/mo/",
1230
+ label: "member",
1231
+ range: "http://xmlns.com/foaf/0.1/Agent",
1232
+ subPropertyOf: "http://xmlns.com/foaf/0.1/member",
1233
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1232
1234
  property :member_of,
1233
- comment: "Inverse of the foaf:member property".freeze,
1234
- domain: "http://xmlns.com/foaf/0.1/Agent".freeze,
1235
- "http://purl.org/ontology/mo/level": "1".freeze,
1236
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1237
- inverseOf: "http://xmlns.com/foaf/0.1/member".freeze,
1238
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1239
- label: "member_of".freeze,
1240
- range: "http://xmlns.com/foaf/0.1/Group".freeze,
1241
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1235
+ comment: "Inverse of the foaf:member property",
1236
+ domain: "http://xmlns.com/foaf/0.1/Agent",
1237
+ "http://purl.org/ontology/mo/level": "1",
1238
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1239
+ inverseOf: "http://xmlns.com/foaf/0.1/member",
1240
+ isDefinedBy: "http://purl.org/ontology/mo/",
1241
+ label: "member_of",
1242
+ range: "http://xmlns.com/foaf/0.1/Group",
1243
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1242
1244
  property :membership,
1243
- comment: "Relates an agent with related membership events".freeze,
1244
- domain: "http://xmlns.com/foaf/0.1/Agent".freeze,
1245
- "http://purl.org/ontology/mo/level": "1".freeze,
1246
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1247
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1248
- label: "membership".freeze,
1249
- range: "http://purl.org/ontology/mo/Membership".freeze,
1250
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1245
+ comment: "Relates an agent with related membership events",
1246
+ domain: "http://xmlns.com/foaf/0.1/Agent",
1247
+ "http://purl.org/ontology/mo/level": "1",
1248
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1249
+ isDefinedBy: "http://purl.org/ontology/mo/",
1250
+ label: "membership",
1251
+ range: "http://purl.org/ontology/mo/Membership",
1252
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1251
1253
  property :meter,
1252
- comment: "Associates a musical work or a score with its meter".freeze,
1254
+ comment: "Associates a musical work or a score with its meter",
1253
1255
  domain: term(
1254
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1255
- unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/Score".freeze)
1256
+ type: "http://www.w3.org/2002/07/owl#Class",
1257
+ unionOf: list("http://purl.org/ontology/mo/MusicalWork", "http://purl.org/ontology/mo/Score")
1256
1258
  ),
1257
- "http://purl.org/ontology/mo/level": "2".freeze,
1258
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1259
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1260
- label: "meter".freeze,
1261
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1259
+ "http://purl.org/ontology/mo/level": "2",
1260
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1261
+ isDefinedBy: "http://purl.org/ontology/mo/",
1262
+ label: "meter",
1263
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1262
1264
  property :movement,
1263
- comment: "Indicates that a musical work has movements".freeze,
1264
- domain: "http://purl.org/ontology/mo/MusicalWork".freeze,
1265
- "http://purl.org/ontology/mo/level": "2".freeze,
1266
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1267
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1268
- label: "has_movement".freeze,
1269
- range: "http://purl.org/ontology/mo/Movement".freeze,
1270
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1265
+ comment: "Indicates that a musical work has movements",
1266
+ domain: "http://purl.org/ontology/mo/MusicalWork",
1267
+ "http://purl.org/ontology/mo/level": "2",
1268
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1269
+ isDefinedBy: "http://purl.org/ontology/mo/",
1270
+ label: "has_movement",
1271
+ range: "http://purl.org/ontology/mo/Movement",
1272
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1271
1273
  property :movementNum,
1272
- equivalentProperty: "http://purl.org/ontology/mo/movement_number".freeze,
1273
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1274
+ equivalentProperty: "http://purl.org/ontology/mo/movement_number",
1275
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1274
1276
  property :movement_number,
1275
- comment: "Indicates the position of a movement in a musical work.".freeze,
1276
- domain: "http://purl.org/ontology/mo/Movement".freeze,
1277
- "http://purl.org/ontology/mo/level": "2".freeze,
1278
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1279
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1280
- label: "movement number".freeze,
1281
- range: "http://www.w3.org/2001/XMLSchema#int".freeze,
1282
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1277
+ comment: "Indicates the position of a movement in a musical work.",
1278
+ domain: "http://purl.org/ontology/mo/Movement",
1279
+ "http://purl.org/ontology/mo/level": "2",
1280
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1281
+ isDefinedBy: "http://purl.org/ontology/mo/",
1282
+ label: "movement number",
1283
+ range: "http://www.w3.org/2001/XMLSchema#int",
1284
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1283
1285
  property :musicbrainz,
1284
- comment: "\n Linking an agent, a track or a record to its corresponding Musicbrainz page.\n ".freeze,
1286
+ comment: "\n Linking an agent, a track or a record to its corresponding Musicbrainz page.\n ",
1285
1287
  domain: term(
1286
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1287
- unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze, "http://xmlns.com/foaf/0.1/Agent".freeze, "http://purl.org/ontology/mo/Signal".freeze)
1288
+ type: "http://www.w3.org/2002/07/owl#Class",
1289
+ unionOf: list("http://purl.org/ontology/mo/MusicalWork", "http://purl.org/ontology/mo/MusicalManifestation", "http://xmlns.com/foaf/0.1/Agent", "http://purl.org/ontology/mo/Signal")
1288
1290
  ),
1289
- "http://purl.org/ontology/mo/level": "1".freeze,
1290
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1291
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1292
- label: "musicbrainz".freeze,
1293
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
1294
- subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze,
1295
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1291
+ "http://purl.org/ontology/mo/level": "1",
1292
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1293
+ isDefinedBy: "http://purl.org/ontology/mo/",
1294
+ label: "musicbrainz",
1295
+ range: "http://xmlns.com/foaf/0.1/Document",
1296
+ subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
1297
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1296
1298
  property :musicbrainz_guid,
1297
- comment: "Links an object to the corresponding Musicbrainz identifier".freeze,
1299
+ comment: "Links an object to the corresponding Musicbrainz identifier",
1298
1300
  domain: term(
1299
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1300
- unionOf: list("http://purl.org/ontology/mo/MusicArtist".freeze, "http://purl.org/ontology/mo/Track".freeze, "http://purl.org/ontology/mo/Record".freeze, "http://purl.org/ontology/mo/SignalGroup".freeze, "http://purl.org/ontology/mo/Signal".freeze, "http://purl.org/ontology/mo/ReleaseEvent".freeze, "http://purl.org/ontology/mo/Label".freeze)
1301
+ type: "http://www.w3.org/2002/07/owl#Class",
1302
+ unionOf: list("http://purl.org/ontology/mo/MusicArtist", "http://purl.org/ontology/mo/Track", "http://purl.org/ontology/mo/Record", "http://purl.org/ontology/mo/SignalGroup", "http://purl.org/ontology/mo/Signal", "http://purl.org/ontology/mo/ReleaseEvent", "http://purl.org/ontology/mo/Label")
1301
1303
  ),
1302
- "http://purl.org/ontology/mo/level": "1".freeze,
1303
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1304
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1305
- label: "Musicbrainz GUID".freeze,
1306
- subPropertyOf: "http://purl.org/ontology/mo/uuid".freeze,
1307
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1304
+ "http://purl.org/ontology/mo/level": "1",
1305
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1306
+ isDefinedBy: "http://purl.org/ontology/mo/",
1307
+ label: "Musicbrainz GUID",
1308
+ subPropertyOf: "http://purl.org/ontology/mo/uuid",
1309
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1308
1310
  property :musicmoz,
1309
- comment: "Used to link an artist, a musical work or the expression of a musical work to its corresponding MusicMoz page.".freeze,
1311
+ comment: "Used to link an artist, a musical work or the expression of a musical work to its corresponding MusicMoz page.",
1310
1312
  domain: term(
1311
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1312
- unionOf: list("http://purl.org/ontology/mo/MusicArtist".freeze, "http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze)
1313
+ type: "http://www.w3.org/2002/07/owl#Class",
1314
+ unionOf: list("http://purl.org/ontology/mo/MusicArtist", "http://purl.org/ontology/mo/MusicalWork", "http://purl.org/ontology/mo/MusicalExpression", "http://purl.org/ontology/mo/MusicalManifestation")
1313
1315
  ),
1314
- "http://purl.org/ontology/mo/level": "1".freeze,
1315
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1316
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1317
- label: "musicmoz".freeze,
1318
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
1319
- subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze,
1320
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1316
+ "http://purl.org/ontology/mo/level": "1",
1317
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1318
+ isDefinedBy: "http://purl.org/ontology/mo/",
1319
+ label: "musicmoz",
1320
+ range: "http://xmlns.com/foaf/0.1/Document",
1321
+ subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
1322
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1321
1323
  property :myspace,
1322
- comment: "Used to link a person to its corresponding MySpace page.".freeze,
1323
- domain: "http://xmlns.com/foaf/0.1/Agent".freeze,
1324
- "http://purl.org/ontology/mo/level": "1".freeze,
1325
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1326
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1327
- label: "myspace".freeze,
1328
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
1329
- subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze,
1330
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1324
+ comment: "Used to link a person to its corresponding MySpace page.",
1325
+ domain: "http://xmlns.com/foaf/0.1/Agent",
1326
+ "http://purl.org/ontology/mo/level": "1",
1327
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1328
+ isDefinedBy: "http://purl.org/ontology/mo/",
1329
+ label: "myspace",
1330
+ range: "http://xmlns.com/foaf/0.1/Document",
1331
+ subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
1332
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1331
1333
  property :olga,
1332
- comment: "Used to link a track to a tabulature file for track in the On-Line Guitar Archive.".freeze,
1333
- domain: "http://purl.org/ontology/mo/Track".freeze,
1334
- "http://purl.org/ontology/mo/level": "1".freeze,
1335
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1336
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1337
- label: "olga".freeze,
1338
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
1339
- subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze,
1340
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1334
+ comment: "Used to link a track to a tabulature file for track in the On-Line Guitar Archive.",
1335
+ domain: "http://purl.org/ontology/mo/Track",
1336
+ "http://purl.org/ontology/mo/level": "1",
1337
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1338
+ isDefinedBy: "http://purl.org/ontology/mo/",
1339
+ label: "olga",
1340
+ range: "http://xmlns.com/foaf/0.1/Document",
1341
+ subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
1342
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1341
1343
  property :onlinecommunity,
1342
- comment: "Used to link a person with an online community web page like a blog, a wiki, a forum, a livejournal page, Etc.".freeze,
1343
- domain: "http://xmlns.com/foaf/0.1/Agent".freeze,
1344
- "http://purl.org/ontology/mo/level": "1".freeze,
1345
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1346
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1347
- label: "onlinecommunity".freeze,
1348
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
1349
- subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze,
1350
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1344
+ comment: "Used to link a person with an online community web page like a blog, a wiki, a forum, a livejournal page, Etc.",
1345
+ domain: "http://xmlns.com/foaf/0.1/Agent",
1346
+ "http://purl.org/ontology/mo/level": "1",
1347
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1348
+ isDefinedBy: "http://purl.org/ontology/mo/",
1349
+ label: "onlinecommunity",
1350
+ range: "http://xmlns.com/foaf/0.1/Document",
1351
+ subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
1352
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1351
1353
  property :opus,
1352
- comment: "\n Used to define a creative work, especially a musical composition numbered to designate the order of a composer's works.\n ".freeze,
1353
- domain: "http://purl.org/ontology/mo/MusicalWork".freeze,
1354
- "http://purl.org/ontology/mo/level": "2".freeze,
1355
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1356
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1357
- label: "opus".freeze,
1358
- range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze,
1359
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1354
+ comment: "\n Used to define a creative work, especially a musical composition numbered to designate the order of a composer's works.\n ",
1355
+ domain: "http://purl.org/ontology/mo/MusicalWork",
1356
+ "http://purl.org/ontology/mo/level": "2",
1357
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1358
+ isDefinedBy: "http://purl.org/ontology/mo/",
1359
+ label: "opus",
1360
+ range: "http://www.w3.org/2000/01/rdf-schema#Literal",
1361
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1360
1362
  property :origin,
1361
- comment: "Relates an artist to its geographic origin".freeze,
1362
- domain: "http://purl.org/ontology/mo/MusicArtist".freeze,
1363
- "http://purl.org/ontology/mo/level": "1".freeze,
1364
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1365
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1366
- label: "origin".freeze,
1367
- range: "http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing".freeze,
1368
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1363
+ comment: "Relates an artist to its geographic origin",
1364
+ domain: "http://purl.org/ontology/mo/MusicArtist",
1365
+ "http://purl.org/ontology/mo/level": "1",
1366
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1367
+ isDefinedBy: "http://purl.org/ontology/mo/",
1368
+ label: "origin",
1369
+ range: "http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing",
1370
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1369
1371
  property :other_release_of,
1370
- comment: "Indicates that two musical manifestations are essentially the same.".freeze,
1371
- domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
1372
- "http://purl.org/ontology/mo/level": "1".freeze,
1373
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1374
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1375
- label: "other_release_of".freeze,
1376
- range: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
1377
- type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze]
1372
+ comment: "Indicates that two musical manifestations are essentially the same.",
1373
+ domain: "http://purl.org/ontology/mo/MusicalManifestation",
1374
+ "http://purl.org/ontology/mo/level": "1",
1375
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1376
+ isDefinedBy: "http://purl.org/ontology/mo/",
1377
+ label: "other_release_of",
1378
+ range: "http://purl.org/ontology/mo/MusicalManifestation",
1379
+ type: ["http://www.w3.org/2002/07/owl#ObjectProperty", "http://www.w3.org/2002/07/owl#SymmetricProperty"]
1378
1380
  property :paid_download,
1379
- comment: "\n Provide a link from an artist to a web page where all of that artist's musical work is available for some money,\n or a link from a manifestation (record/track, for example) to a web page providing a paid access to this manifestation.\n ".freeze,
1381
+ comment: "\n Provide a link from an artist to a web page where all of that artist's musical work is available for some money,\n or a link from a manifestation (record/track, for example) to a web page providing a paid access to this manifestation.\n ",
1380
1382
  domain: term(
1381
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1382
- unionOf: list("http://purl.org/vocab/frbr/core#Manifestation".freeze, "http://purl.org/ontology/mo/MusicArtist".freeze, "http://purl.org/ontology/mo/CorporateBody".freeze)
1383
+ type: "http://www.w3.org/2002/07/owl#Class",
1384
+ unionOf: list("http://purl.org/vocab/frbr/core#Manifestation", "http://purl.org/ontology/mo/MusicArtist", "http://purl.org/ontology/mo/CorporateBody")
1383
1385
  ),
1384
- "http://purl.org/ontology/mo/level": "1".freeze,
1385
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1386
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1387
- label: "paid download".freeze,
1388
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
1389
- subPropertyOf: ["http://purl.org/ontology/mo/download".freeze, "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze],
1390
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1386
+ "http://purl.org/ontology/mo/level": "1",
1387
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1388
+ isDefinedBy: "http://purl.org/ontology/mo/",
1389
+ label: "paid download",
1390
+ range: "http://xmlns.com/foaf/0.1/Document",
1391
+ subPropertyOf: ["http://purl.org/ontology/mo/download", "http://xmlns.com/foaf/0.1/isPrimaryTopicOf"],
1392
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1391
1393
  property :paiddownload,
1392
- equivalentProperty: "http://purl.org/ontology/mo/paid_download".freeze,
1393
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
1394
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1395
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1394
+ equivalentProperty: "http://purl.org/ontology/mo/paid_download",
1395
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
1396
+ isDefinedBy: "http://purl.org/ontology/mo/",
1397
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1396
1398
  property :performance_of,
1397
- comment: "\n Associates a Performance to a musical work or an arrangement that is being used as a factor in it.\n For example, I might use this property to attach the Magic Flute musical work to \n a particular Performance.\n ".freeze,
1398
- domain: "http://purl.org/ontology/mo/Performance".freeze,
1399
- "http://purl.org/ontology/mo/level": "2".freeze,
1400
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1401
- inverseOf: "http://purl.org/ontology/mo/performed_in".freeze,
1402
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1403
- label: "performance of".freeze,
1399
+ comment: "\n Associates a Performance to a musical work or an arrangement that is being used as a factor in it.\n For example, I might use this property to attach the Magic Flute musical work to \n a particular Performance.\n ",
1400
+ domain: "http://purl.org/ontology/mo/Performance",
1401
+ "http://purl.org/ontology/mo/level": "2",
1402
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1403
+ inverseOf: "http://purl.org/ontology/mo/performed_in",
1404
+ isDefinedBy: "http://purl.org/ontology/mo/",
1405
+ label: "performance of",
1404
1406
  range: term(
1405
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1406
- unionOf: list("http://purl.org/ontology/mo/Score".freeze, "http://purl.org/ontology/mo/MusicalWork".freeze)
1407
+ type: "http://www.w3.org/2002/07/owl#Class",
1408
+ unionOf: list("http://purl.org/ontology/mo/Score", "http://purl.org/ontology/mo/MusicalWork")
1407
1409
  ),
1408
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#factor".freeze,
1409
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1410
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#factor",
1411
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1410
1412
  property :performed,
1411
- comment: "Relates agents to the performances they were performing in".freeze,
1412
- domain: "http://xmlns.com/foaf/0.1/Agent".freeze,
1413
- "http://purl.org/ontology/mo/level": "2".freeze,
1414
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1415
- inverseOf: "http://purl.org/ontology/mo/performer".freeze,
1416
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1417
- label: "performed".freeze,
1418
- range: "http://purl.org/ontology/mo/Performance".freeze,
1419
- subPropertyOf: ["http://purl.org/NET/c4dm/event.owl#isAgentIn".freeze, "http://purl.org/vocab/bio/0.1/event".freeze],
1420
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1413
+ comment: "Relates agents to the performances they were performing in",
1414
+ domain: "http://xmlns.com/foaf/0.1/Agent",
1415
+ "http://purl.org/ontology/mo/level": "2",
1416
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1417
+ inverseOf: "http://purl.org/ontology/mo/performer",
1418
+ isDefinedBy: "http://purl.org/ontology/mo/",
1419
+ label: "performed",
1420
+ range: "http://purl.org/ontology/mo/Performance",
1421
+ subPropertyOf: ["http://purl.org/NET/c4dm/event.owl#isAgentIn", "http://purl.org/vocab/bio/0.1/event"],
1422
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1421
1423
  property :performed_in,
1422
- comment: "\n Associates a Musical Work or an Score to Performances in which they were\n a factor. For example, I might use this property in order to \n associate the Magic Flute to a particular performance at the Opera\n Bastille last year.".freeze,
1424
+ comment: "\n Associates a Musical Work or an Score to Performances in which they were\n a factor. For example, I might use this property in order to \n associate the Magic Flute to a particular performance at the Opera\n Bastille last year.",
1423
1425
  domain: term(
1424
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1425
- unionOf: list("http://purl.org/ontology/mo/Score".freeze, "http://purl.org/ontology/mo/MusicalWork".freeze)
1426
+ type: "http://www.w3.org/2002/07/owl#Class",
1427
+ unionOf: list("http://purl.org/ontology/mo/Score", "http://purl.org/ontology/mo/MusicalWork")
1426
1428
  ),
1427
- "http://purl.org/ontology/mo/level": "2".freeze,
1428
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1429
- inverseOf: "http://purl.org/ontology/mo/performance_of".freeze,
1430
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1431
- label: "performed in".freeze,
1432
- range: "http://purl.org/ontology/mo/Performance".freeze,
1433
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#isFactorOf".freeze,
1434
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1429
+ "http://purl.org/ontology/mo/level": "2",
1430
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1431
+ inverseOf: "http://purl.org/ontology/mo/performance_of",
1432
+ isDefinedBy: "http://purl.org/ontology/mo/",
1433
+ label: "performed in",
1434
+ range: "http://purl.org/ontology/mo/Performance",
1435
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#isFactorOf",
1436
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1435
1437
  property :performer,
1436
- comment: "Relates a performance to the performers involved".freeze,
1437
- domain: "http://purl.org/ontology/mo/Performance".freeze,
1438
- "http://purl.org/ontology/mo/level": "2".freeze,
1439
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1440
- inverseOf: "http://purl.org/ontology/mo/performed".freeze,
1441
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1442
- range: "http://xmlns.com/foaf/0.1/Agent".freeze,
1443
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#agent".freeze,
1444
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1438
+ comment: "Relates a performance to the performers involved",
1439
+ domain: "http://purl.org/ontology/mo/Performance",
1440
+ "http://purl.org/ontology/mo/level": "2",
1441
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1442
+ inverseOf: "http://purl.org/ontology/mo/performed",
1443
+ isDefinedBy: "http://purl.org/ontology/mo/",
1444
+ range: "http://xmlns.com/foaf/0.1/Agent",
1445
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#agent",
1446
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1445
1447
  property :possess_item,
1446
- comment: "A person, a group of person or an organization possessing an exemplar of a single manifestation.".freeze,
1447
- domain: "http://xmlns.com/foaf/0.1/Agent".freeze,
1448
- "http://purl.org/ontology/mo/level": "1".freeze,
1449
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1450
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1451
- label: "possess_item".freeze,
1452
- range: "http://purl.org/vocab/frbr/core#Item".freeze,
1453
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1448
+ comment: "A person, a group of person or an organization possessing an exemplar of a single manifestation.",
1449
+ domain: "http://xmlns.com/foaf/0.1/Agent",
1450
+ "http://purl.org/ontology/mo/level": "1",
1451
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1452
+ isDefinedBy: "http://purl.org/ontology/mo/",
1453
+ label: "possess_item",
1454
+ range: "http://purl.org/vocab/frbr/core#Item",
1455
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1454
1456
  property :preview,
1455
- comment: "\n Relates a musical manifestation to a musical item (this album, and my particular cd), which holds\n a preview of the manifestation (eg. one track for an album, or a snippet for a track)\n ".freeze,
1456
- domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
1457
- "http://purl.org/ontology/mo/level": "1".freeze,
1458
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1459
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1460
- range: "http://purl.org/ontology/mo/MusicalItem".freeze,
1461
- subPropertyOf: "http://purl.org/ontology/mo/available_as".freeze,
1462
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1457
+ comment: "\n Relates a musical manifestation to a musical item (this album, and my particular cd), which holds\n a preview of the manifestation (eg. one track for an album, or a snippet for a track)\n ",
1458
+ domain: "http://purl.org/ontology/mo/MusicalManifestation",
1459
+ "http://purl.org/ontology/mo/level": "1",
1460
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1461
+ isDefinedBy: "http://purl.org/ontology/mo/",
1462
+ range: "http://purl.org/ontology/mo/MusicalItem",
1463
+ subPropertyOf: "http://purl.org/ontology/mo/available_as",
1464
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1463
1465
  property :preview_download,
1464
- comment: "\n This property can be used to link from a person to the website where they make previews of their works available, or from\n a manifestation (a track or an album, for example) to a web page where a preview download is available.\n\n This property MUST be used only if the content is just available through a web page (holding, for example\n a Flash application) - it is better to link to actual content directly through the use of mo:available_as and\n mo:Stream, mo:Torrent or mo:ED2K, etc. Therefore, Semantic Web user agents that don't know how to read HTML and even\n less to rip streams from Flash applications can still access the audio content.\n ".freeze,
1466
+ comment: "\n This property can be used to link from a person to the website where they make previews of their works available, or from\n a manifestation (a track or an album, for example) to a web page where a preview download is available.\n\n This property MUST be used only if the content is just available through a web page (holding, for example\n a Flash application) - it is better to link to actual content directly through the use of mo:available_as and\n mo:Stream, mo:Torrent or mo:ED2K, etc. Therefore, Semantic Web user agents that don't know how to read HTML and even\n less to rip streams from Flash applications can still access the audio content.\n ",
1465
1467
  domain: term(
1466
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1467
- unionOf: list("http://purl.org/vocab/frbr/core#Manifestation".freeze, "http://xmlns.com/foaf/0.1/Agent".freeze, "http://purl.org/ontology/mo/CorporateBody".freeze)
1468
+ type: "http://www.w3.org/2002/07/owl#Class",
1469
+ unionOf: list("http://purl.org/vocab/frbr/core#Manifestation", "http://xmlns.com/foaf/0.1/Agent", "http://purl.org/ontology/mo/CorporateBody")
1468
1470
  ),
1469
- "http://purl.org/ontology/mo/level": "1".freeze,
1470
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1471
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1472
- label: "preview download".freeze,
1473
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
1474
- subPropertyOf: ["http://purl.org/ontology/mo/download".freeze, "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze],
1475
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1471
+ "http://purl.org/ontology/mo/level": "1",
1472
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1473
+ isDefinedBy: "http://purl.org/ontology/mo/",
1474
+ label: "preview download",
1475
+ range: "http://xmlns.com/foaf/0.1/Document",
1476
+ subPropertyOf: ["http://purl.org/ontology/mo/download", "http://xmlns.com/foaf/0.1/isPrimaryTopicOf"],
1477
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1476
1478
  property :primary_instrument,
1477
- comment: "Indicates that an artist primarily plays an instrument, or that a member was primarily playing a particular instrument during his membership".freeze,
1479
+ comment: "Indicates that an artist primarily plays an instrument, or that a member was primarily playing a particular instrument during his membership",
1478
1480
  domain: term(
1479
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1480
- unionOf: list("http://purl.org/ontology/mo/Membership".freeze, "http://xmlns.com/foaf/0.1/Agent".freeze)
1481
+ type: "http://www.w3.org/2002/07/owl#Class",
1482
+ unionOf: list("http://purl.org/ontology/mo/Membership", "http://xmlns.com/foaf/0.1/Agent")
1481
1483
  ),
1482
- "http://purl.org/ontology/mo/level": "1".freeze,
1483
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1484
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1485
- label: "primary instrument".freeze,
1486
- range: "http://purl.org/ontology/mo/Instrument".freeze,
1487
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1484
+ "http://purl.org/ontology/mo/level": "1",
1485
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1486
+ isDefinedBy: "http://purl.org/ontology/mo/",
1487
+ label: "primary instrument",
1488
+ range: "http://purl.org/ontology/mo/Instrument",
1489
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1488
1490
  property :produced,
1489
- comment: "Used to relate an person or a group of person who produced the manifestation of a work.".freeze,
1490
- domain: "http://xmlns.com/foaf/0.1/Agent".freeze,
1491
- "http://purl.org/ontology/mo/level": "1".freeze,
1492
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1493
- inverseOf: "http://purl.org/ontology/mo/producer".freeze,
1494
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1495
- label: "produced".freeze,
1496
- range: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
1497
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1491
+ comment: "Used to relate an person or a group of person who produced the manifestation of a work.",
1492
+ domain: "http://xmlns.com/foaf/0.1/Agent",
1493
+ "http://purl.org/ontology/mo/level": "1",
1494
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1495
+ inverseOf: "http://purl.org/ontology/mo/producer",
1496
+ isDefinedBy: "http://purl.org/ontology/mo/",
1497
+ label: "produced",
1498
+ range: "http://purl.org/ontology/mo/MusicalManifestation",
1499
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1498
1500
  property :produced_score,
1499
- comment: "\n Associates an arrangement or a composition event to a score product (score here does not refer to a published score, but more\n an abstract arrangement of a particular work).\n ".freeze,
1501
+ comment: "\n Associates an arrangement or a composition event to a score product (score here does not refer to a published score, but more\n an abstract arrangement of a particular work).\n ",
1500
1502
  domain: term(
1501
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1502
- unionOf: list("http://purl.org/ontology/mo/Composition".freeze, "http://purl.org/ontology/mo/Arrangement".freeze)
1503
+ type: "http://www.w3.org/2002/07/owl#Class",
1504
+ unionOf: list("http://purl.org/ontology/mo/Composition", "http://purl.org/ontology/mo/Arrangement")
1503
1505
  ),
1504
- "http://purl.org/ontology/mo/level": "2".freeze,
1505
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1506
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1507
- label: "produced score".freeze,
1508
- range: "http://purl.org/ontology/mo/Score".freeze,
1509
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product".freeze,
1510
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1506
+ "http://purl.org/ontology/mo/level": "2",
1507
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1508
+ isDefinedBy: "http://purl.org/ontology/mo/",
1509
+ label: "produced score",
1510
+ range: "http://purl.org/ontology/mo/Score",
1511
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product",
1512
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1511
1513
  property :produced_signal,
1512
- comment: "\n Associates a Recording to the outputted signal.\n ".freeze,
1513
- domain: "http://purl.org/ontology/mo/Recording".freeze,
1514
- "http://purl.org/ontology/mo/level": "2".freeze,
1515
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1516
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1517
- label: "produced signal".freeze,
1518
- range: "http://purl.org/ontology/mo/Signal".freeze,
1519
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product".freeze,
1520
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1514
+ comment: "\n Associates a Recording to the outputted signal.\n ",
1515
+ domain: "http://purl.org/ontology/mo/Recording",
1516
+ "http://purl.org/ontology/mo/level": "2",
1517
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1518
+ isDefinedBy: "http://purl.org/ontology/mo/",
1519
+ label: "produced signal",
1520
+ range: "http://purl.org/ontology/mo/Signal",
1521
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product",
1522
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1521
1523
  property :produced_signal_group,
1522
- comment: "Associates a recording session with a group of master signals produced by it.".freeze,
1523
- domain: "http://purl.org/ontology/mo/RecordingSession".freeze,
1524
- "http://purl.org/ontology/mo/level": "2".freeze,
1525
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1526
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1527
- label: "produced signal group".freeze,
1528
- range: "http://purl.org/ontology/mo/SignalGroup".freeze,
1529
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product".freeze,
1530
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1524
+ comment: "Associates a recording session with a group of master signals produced by it.",
1525
+ domain: "http://purl.org/ontology/mo/RecordingSession",
1526
+ "http://purl.org/ontology/mo/level": "2",
1527
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1528
+ isDefinedBy: "http://purl.org/ontology/mo/",
1529
+ label: "produced signal group",
1530
+ range: "http://purl.org/ontology/mo/SignalGroup",
1531
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product",
1532
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1531
1533
  property :produced_sound,
1532
- comment: "\n Associates a Performance to a physical Sound that is being produced by it.\n ".freeze,
1533
- domain: "http://purl.org/ontology/mo/Performance".freeze,
1534
- "http://purl.org/ontology/mo/level": "2".freeze,
1535
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1536
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1537
- label: "produced sound".freeze,
1538
- range: "http://purl.org/ontology/mo/Sound".freeze,
1539
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product".freeze,
1540
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1534
+ comment: "\n Associates a Performance to a physical Sound that is being produced by it.\n ",
1535
+ domain: "http://purl.org/ontology/mo/Performance",
1536
+ "http://purl.org/ontology/mo/level": "2",
1537
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1538
+ isDefinedBy: "http://purl.org/ontology/mo/",
1539
+ label: "produced sound",
1540
+ range: "http://purl.org/ontology/mo/Sound",
1541
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product",
1542
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1541
1543
  property :produced_work,
1542
- comment: "\n Associates a composition event to the produced MusicalWork. For example,\n this property could link the event corresponding to the composition of the\n Magic Flute in 1782 to the Magic Flute musical work itself. This musical work\n can then be used in particular performances.\n ".freeze,
1543
- domain: "http://purl.org/ontology/mo/Composition".freeze,
1544
- "http://purl.org/ontology/mo/level": "2".freeze,
1545
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1546
- inverseOf: "http://purl.org/ontology/mo/composed_in".freeze,
1547
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1548
- label: "produced work".freeze,
1549
- range: "http://purl.org/ontology/mo/MusicalWork".freeze,
1550
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product".freeze,
1551
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1544
+ comment: "\n Associates a composition event to the produced MusicalWork. For example,\n this property could link the event corresponding to the composition of the\n Magic Flute in 1782 to the Magic Flute musical work itself. This musical work\n can then be used in particular performances.\n ",
1545
+ domain: "http://purl.org/ontology/mo/Composition",
1546
+ "http://purl.org/ontology/mo/level": "2",
1547
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1548
+ inverseOf: "http://purl.org/ontology/mo/composed_in",
1549
+ isDefinedBy: "http://purl.org/ontology/mo/",
1550
+ label: "produced work",
1551
+ range: "http://purl.org/ontology/mo/MusicalWork",
1552
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product",
1553
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1552
1554
  property :producer,
1553
- comment: "Used to relate the manifestation of a work to a person or a group of person who produced it.".freeze,
1554
- domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
1555
- "http://purl.org/ontology/mo/level": "1".freeze,
1556
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1557
- inverseOf: "http://purl.org/ontology/mo/produced".freeze,
1558
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1559
- label: "producer".freeze,
1560
- range: "http://xmlns.com/foaf/0.1/Agent".freeze,
1561
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1555
+ comment: "Used to relate the manifestation of a work to a person or a group of person who produced it.",
1556
+ domain: "http://purl.org/ontology/mo/MusicalManifestation",
1557
+ "http://purl.org/ontology/mo/level": "1",
1558
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1559
+ inverseOf: "http://purl.org/ontology/mo/produced",
1560
+ isDefinedBy: "http://purl.org/ontology/mo/",
1561
+ label: "producer",
1562
+ range: "http://xmlns.com/foaf/0.1/Agent",
1563
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1562
1564
  property :producesSignal,
1563
- equivalentProperty: "http://purl.org/ontology/mo/produced_signal".freeze,
1564
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
1565
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1566
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1565
+ equivalentProperty: "http://purl.org/ontology/mo/produced_signal",
1566
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
1567
+ isDefinedBy: "http://purl.org/ontology/mo/",
1568
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1567
1569
  property :producesSound,
1568
- equivalentProperty: "http://purl.org/ontology/mo/produced_sound".freeze,
1569
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
1570
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1571
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1570
+ equivalentProperty: "http://purl.org/ontology/mo/produced_sound",
1571
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
1572
+ isDefinedBy: "http://purl.org/ontology/mo/",
1573
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1572
1574
  property :producesWork,
1573
- equivalentProperty: "http://purl.org/ontology/mo/produced_work".freeze,
1574
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1575
+ equivalentProperty: "http://purl.org/ontology/mo/produced_work",
1576
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1575
1577
  property :productOfComposition,
1576
- equivalentProperty: "http://purl.org/ontology/mo/composed_in".freeze,
1577
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
1578
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1579
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1578
+ equivalentProperty: "http://purl.org/ontology/mo/composed_in",
1579
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
1580
+ isDefinedBy: "http://purl.org/ontology/mo/",
1581
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1580
1582
  property :publicationOf,
1581
- equivalentProperty: "http://purl.org/ontology/mo/publication_of".freeze,
1582
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
1583
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1583
+ equivalentProperty: "http://purl.org/ontology/mo/publication_of",
1584
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
1585
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1584
1586
  property :publication_of,
1585
- comment: "Link a particular manifestation to the related signal, score, libretto, or lyrics".freeze,
1586
- domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
1587
- "http://purl.org/ontology/mo/level": "1".freeze,
1588
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1589
- inverseOf: "http://purl.org/ontology/mo/published_as".freeze,
1590
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1591
- label: "publication of".freeze,
1592
- range: "http://purl.org/ontology/mo/MusicalExpression".freeze,
1593
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1587
+ comment: "Link a particular manifestation to the related signal, score, libretto, or lyrics",
1588
+ domain: "http://purl.org/ontology/mo/MusicalManifestation",
1589
+ "http://purl.org/ontology/mo/level": "1",
1590
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1591
+ inverseOf: "http://purl.org/ontology/mo/published_as",
1592
+ isDefinedBy: "http://purl.org/ontology/mo/",
1593
+ label: "publication of",
1594
+ range: "http://purl.org/ontology/mo/MusicalExpression",
1595
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1594
1596
  property :published,
1595
- comment: "Used to relate an person or a group of person who published the manifestation of a work.".freeze,
1596
- domain: "http://xmlns.com/foaf/0.1/Agent".freeze,
1597
- "http://purl.org/ontology/mo/level": "1".freeze,
1598
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1599
- inverseOf: "http://purl.org/ontology/mo/publisher".freeze,
1600
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1601
- label: "published".freeze,
1602
- range: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
1603
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1597
+ comment: "Used to relate an person or a group of person who published the manifestation of a work.",
1598
+ domain: "http://xmlns.com/foaf/0.1/Agent",
1599
+ "http://purl.org/ontology/mo/level": "1",
1600
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1601
+ inverseOf: "http://purl.org/ontology/mo/publisher",
1602
+ isDefinedBy: "http://purl.org/ontology/mo/",
1603
+ label: "published",
1604
+ range: "http://purl.org/ontology/mo/MusicalManifestation",
1605
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1604
1606
  property :publishedAs,
1605
- equivalentProperty: "http://purl.org/ontology/mo/published_as".freeze,
1606
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
1607
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1607
+ equivalentProperty: "http://purl.org/ontology/mo/published_as",
1608
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
1609
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1608
1610
  property :published_as,
1609
- comment: "\n Links a musical expression (e.g. a signal or a score) to one of its manifestations (e.g. a track on a particular record or a published score).\n ".freeze,
1610
- domain: "http://purl.org/ontology/mo/MusicalExpression".freeze,
1611
- "http://purl.org/ontology/mo/level": "1".freeze,
1612
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1613
- inverseOf: "http://purl.org/ontology/mo/publication_of".freeze,
1614
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1615
- label: "published as".freeze,
1616
- range: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
1617
- subPropertyOf: "http://purl.org/vocab/frbr/core#embodiment".freeze,
1618
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1611
+ comment: "\n Links a musical expression (e.g. a signal or a score) to one of its manifestations (e.g. a track on a particular record or a published score).\n ",
1612
+ domain: "http://purl.org/ontology/mo/MusicalExpression",
1613
+ "http://purl.org/ontology/mo/level": "1",
1614
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1615
+ inverseOf: "http://purl.org/ontology/mo/publication_of",
1616
+ isDefinedBy: "http://purl.org/ontology/mo/",
1617
+ label: "published as",
1618
+ range: "http://purl.org/ontology/mo/MusicalManifestation",
1619
+ subPropertyOf: "http://purl.org/vocab/frbr/core#embodiment",
1620
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1619
1621
  property :publisher,
1620
- comment: "Used to relate a musical manifestation to a person or a group of person who published it.".freeze,
1621
- domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
1622
- "http://purl.org/ontology/mo/level": "1".freeze,
1623
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1624
- inverseOf: "http://purl.org/ontology/mo/published".freeze,
1625
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1626
- label: "publisher".freeze,
1627
- range: "http://xmlns.com/foaf/0.1/Agent".freeze,
1628
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1622
+ comment: "Used to relate a musical manifestation to a person or a group of person who published it.",
1623
+ domain: "http://purl.org/ontology/mo/MusicalManifestation",
1624
+ "http://purl.org/ontology/mo/level": "1",
1625
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1626
+ inverseOf: "http://purl.org/ontology/mo/published",
1627
+ isDefinedBy: "http://purl.org/ontology/mo/",
1628
+ label: "publisher",
1629
+ range: "http://xmlns.com/foaf/0.1/Agent",
1630
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1629
1631
  property :publishingLocation,
1630
- equivalentProperty: "http://purl.org/ontology/mo/publishing_location".freeze,
1631
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
1632
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1632
+ equivalentProperty: "http://purl.org/ontology/mo/publishing_location",
1633
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
1634
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1633
1635
  property :publishing_location,
1634
- comment: "\n Relates a musical manifestation to its publication location.\n ".freeze,
1635
- domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
1636
- "http://purl.org/ontology/mo/level": "1".freeze,
1637
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1638
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1639
- label: "publishingLocation".freeze,
1640
- range: "http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing".freeze,
1641
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1636
+ comment: "\n Relates a musical manifestation to its publication location.\n ",
1637
+ domain: "http://purl.org/ontology/mo/MusicalManifestation",
1638
+ "http://purl.org/ontology/mo/level": "1",
1639
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1640
+ isDefinedBy: "http://purl.org/ontology/mo/",
1641
+ label: "publishingLocation",
1642
+ range: "http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing",
1643
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1642
1644
  property :puid,
1643
- comment: "\n Link a signal to the PUIDs associated with it, that is, PUID computed from MusicalItems (mo:AudioFile) \n derived from this signal.\n PUIDs (Portable Unique IDentifier) are the IDs used in the \n proprietary MusicDNS AudioFingerprinting system which is operated by MusicIP.\n\n Using PUIDs, one (with some luck) can identify the Signal object associated with a particular audio file, therefore allowing\n to access further information (on which release this track is featured? etc.). Using some more metadata one can identify\n the particular Track corresponding to the audio file (a track on a particular release).".freeze,
1644
- domain: "http://purl.org/ontology/mo/Signal".freeze,
1645
- "http://purl.org/ontology/mo/level": "1".freeze,
1646
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1647
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1648
- label: "puid".freeze,
1649
- range: "http://www.w3.org/2001/XMLSchema#string".freeze,
1650
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1645
+ comment: "\n Link a signal to the PUIDs associated with it, that is, PUID computed from MusicalItems (mo:AudioFile) \n derived from this signal.\n PUIDs (Portable Unique IDentifier) are the IDs used in the \n proprietary MusicDNS AudioFingerprinting system which is operated by MusicIP.\n\n Using PUIDs, one (with some luck) can identify the Signal object associated with a particular audio file, therefore allowing\n to access further information (on which release this track is featured? etc.). Using some more metadata one can identify\n the particular Track corresponding to the audio file (a track on a particular release).",
1646
+ domain: "http://purl.org/ontology/mo/Signal",
1647
+ "http://purl.org/ontology/mo/level": "1",
1648
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1649
+ isDefinedBy: "http://purl.org/ontology/mo/",
1650
+ label: "puid",
1651
+ range: "http://www.w3.org/2001/XMLSchema#string",
1652
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1651
1653
  property :record,
1652
- comment: "Associates a release with the records it contains. A single release can be associated with multiple records, for example for a multi-disc release.".freeze,
1653
- domain: "http://purl.org/ontology/mo/Release".freeze,
1654
- "http://purl.org/ontology/mo/level": "1".freeze,
1655
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1656
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1657
- label: "released record".freeze,
1658
- range: "http://purl.org/ontology/mo/Record".freeze,
1659
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1654
+ comment: "Associates a release with the records it contains. A single release can be associated with multiple records, for example for a multi-disc release.",
1655
+ domain: "http://purl.org/ontology/mo/Release",
1656
+ "http://purl.org/ontology/mo/level": "1",
1657
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1658
+ isDefinedBy: "http://purl.org/ontology/mo/",
1659
+ label: "released record",
1660
+ range: "http://purl.org/ontology/mo/Record",
1661
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1660
1662
  property :record_count,
1661
- comment: "Associates a release with the number of records it contains, e.g. the number of discs it contains in the case of a multi-disc release.".freeze,
1662
- domain: "http://purl.org/ontology/mo/Release".freeze,
1663
- "http://purl.org/ontology/mo/level": "1".freeze,
1664
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1665
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1666
- label: "record count".freeze,
1667
- range: "http://www.w3.org/2001/XMLSchema#int".freeze,
1668
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1663
+ comment: "Associates a release with the number of records it contains, e.g. the number of discs it contains in the case of a multi-disc release.",
1664
+ domain: "http://purl.org/ontology/mo/Release",
1665
+ "http://purl.org/ontology/mo/level": "1",
1666
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1667
+ isDefinedBy: "http://purl.org/ontology/mo/",
1668
+ label: "record count",
1669
+ range: "http://www.w3.org/2001/XMLSchema#int",
1670
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1669
1671
  property :record_number,
1670
- comment: "Indicates the position of a record in a release (e.g. a 2xLP, etc.).".freeze,
1671
- domain: "http://purl.org/ontology/mo/Record".freeze,
1672
- "http://purl.org/ontology/mo/level": "1".freeze,
1673
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1674
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1675
- label: "has record number".freeze,
1676
- range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze,
1677
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1672
+ comment: "Indicates the position of a record in a release (e.g. a 2xLP, etc.).",
1673
+ domain: "http://purl.org/ontology/mo/Record",
1674
+ "http://purl.org/ontology/mo/level": "1",
1675
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1676
+ isDefinedBy: "http://purl.org/ontology/mo/",
1677
+ label: "has record number",
1678
+ range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
1679
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1678
1680
  property :record_side,
1679
- comment: "Associates the side on a vinyl record, where a track is located, e.g. A, B, C, etc. This property can then also be used \nin conjunction with mo:track_number, so that one can infer e.g. \"A1\", that means, track number 1 on side A.".freeze,
1680
- domain: "http://purl.org/ontology/mo/Track".freeze,
1681
- "http://purl.org/ontology/mo/level": "1".freeze,
1682
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1683
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1684
- label: "has record side".freeze,
1685
- range: "http://www.w3.org/2001/XMLSchema#string".freeze,
1686
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1681
+ comment: "Associates the side on a vinyl record, where a track is located, e.g. A, B, C, etc. This property can then also be used \nin conjunction with mo:track_number, so that one can infer e.g. \"A1\", that means, track number 1 on side A.",
1682
+ domain: "http://purl.org/ontology/mo/Track",
1683
+ "http://purl.org/ontology/mo/level": "1",
1684
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1685
+ isDefinedBy: "http://purl.org/ontology/mo/",
1686
+ label: "has record side",
1687
+ range: "http://www.w3.org/2001/XMLSchema#string",
1688
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1687
1689
  property :recordedAs,
1688
- equivalentProperty: "http://purl.org/ontology/mo/recorded_as".freeze,
1689
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1690
+ equivalentProperty: "http://purl.org/ontology/mo/recorded_as",
1691
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1690
1692
  property :recorded_as,
1691
- comment: "\n This is a shortcut property, allowing to bypass all the Sound/Recording steps. This property\n allows to directly link a Performance to the recorded Signal. This is recommended for \"normal\"\n users. However, advanced users wanting to express things such as the location of the microphone will\n have to create this shortcut as well as the whole workflow, in order to let the \"normal\" users access\n simply the, well, simple information:-) .\n ".freeze,
1692
- domain: "http://purl.org/ontology/mo/Performance".freeze,
1693
- "http://purl.org/ontology/mo/level": "2".freeze,
1694
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1695
- inverseOf: "http://purl.org/ontology/mo/records".freeze,
1696
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1697
- label: "recorded as".freeze,
1698
- range: "http://purl.org/ontology/mo/Signal".freeze,
1699
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1693
+ comment: "\n This is a shortcut property, allowing to bypass all the Sound/Recording steps. This property\n allows to directly link a Performance to the recorded Signal. This is recommended for \"normal\"\n users. However, advanced users wanting to express things such as the location of the microphone will\n have to create this shortcut as well as the whole workflow, in order to let the \"normal\" users access\n simply the, well, simple information:-) .\n ",
1694
+ domain: "http://purl.org/ontology/mo/Performance",
1695
+ "http://purl.org/ontology/mo/level": "2",
1696
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1697
+ inverseOf: "http://purl.org/ontology/mo/records",
1698
+ isDefinedBy: "http://purl.org/ontology/mo/",
1699
+ label: "recorded as",
1700
+ range: "http://purl.org/ontology/mo/Signal",
1701
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1700
1702
  property :recorded_in,
1701
- comment: "\n Associates a physical Sound to a Recording event where it is being used \n in order to produce a signal. For example, I might use this property to \n associate the sound produced by a particular performance of the magic flute\n to a given recording, done using my cell-phone.\n ".freeze,
1702
- domain: "http://purl.org/ontology/mo/Sound".freeze,
1703
- "http://purl.org/ontology/mo/level": "2".freeze,
1704
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1705
- inverseOf: "http://purl.org/ontology/mo/recording_of".freeze,
1706
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1707
- label: "recorded in".freeze,
1708
- range: "http://purl.org/ontology/mo/Recording".freeze,
1709
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#isFactorOf".freeze,
1710
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1703
+ comment: "\n Associates a physical Sound to a Recording event where it is being used \n in order to produce a signal. For example, I might use this property to \n associate the sound produced by a particular performance of the magic flute\n to a given recording, done using my cell-phone.\n ",
1704
+ domain: "http://purl.org/ontology/mo/Sound",
1705
+ "http://purl.org/ontology/mo/level": "2",
1706
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1707
+ inverseOf: "http://purl.org/ontology/mo/recording_of",
1708
+ isDefinedBy: "http://purl.org/ontology/mo/",
1709
+ label: "recorded in",
1710
+ range: "http://purl.org/ontology/mo/Recording",
1711
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#isFactorOf",
1712
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1711
1713
  property :recording_of,
1712
- comment: "\n Associates a Recording event to a physical Sound being recorded.\n For example, I might use this property to\n associate a given recording, done using my cell phone, to the \n sound produced by a particular performance of the magic flute.\n ".freeze,
1713
- domain: "http://purl.org/ontology/mo/Recording".freeze,
1714
- "http://purl.org/ontology/mo/level": "2".freeze,
1715
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1716
- inverseOf: "http://purl.org/ontology/mo/recorded_in".freeze,
1717
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1718
- label: "recorded sound".freeze,
1719
- range: "http://purl.org/ontology/mo/Sound".freeze,
1720
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#factor".freeze,
1721
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1714
+ comment: "\n Associates a Recording event to a physical Sound being recorded.\n For example, I might use this property to\n associate a given recording, done using my cell phone, to the \n sound produced by a particular performance of the magic flute.\n ",
1715
+ domain: "http://purl.org/ontology/mo/Recording",
1716
+ "http://purl.org/ontology/mo/level": "2",
1717
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1718
+ inverseOf: "http://purl.org/ontology/mo/recorded_in",
1719
+ isDefinedBy: "http://purl.org/ontology/mo/",
1720
+ label: "recorded sound",
1721
+ range: "http://purl.org/ontology/mo/Sound",
1722
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#factor",
1723
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1722
1724
  property :records,
1723
- comment: "\n This is the inverse of the shortcut property recordedAs, allowing to relate directly a performance\n to a signal.\n ".freeze,
1724
- domain: "http://purl.org/ontology/mo/Signal".freeze,
1725
- "http://purl.org/ontology/mo/level": "2".freeze,
1726
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1727
- inverseOf: "http://purl.org/ontology/mo/recordedAs".freeze,
1728
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1729
- label: "records".freeze,
1730
- range: "http://purl.org/ontology/mo/Performance".freeze,
1731
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1725
+ comment: "\n This is the inverse of the shortcut property recordedAs, allowing to relate directly a performance\n to a signal.\n ",
1726
+ domain: "http://purl.org/ontology/mo/Signal",
1727
+ "http://purl.org/ontology/mo/level": "2",
1728
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1729
+ inverseOf: "http://purl.org/ontology/mo/recordedAs",
1730
+ isDefinedBy: "http://purl.org/ontology/mo/",
1731
+ label: "records",
1732
+ range: "http://purl.org/ontology/mo/Performance",
1733
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1732
1734
  property :release,
1733
- comment: "Associates a release with the corresponding release event".freeze,
1734
- domain: "http://purl.org/ontology/mo/ReleaseEvent".freeze,
1735
- "http://purl.org/ontology/mo/level": "1".freeze,
1736
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1737
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1738
- label: "release".freeze,
1739
- range: "http://purl.org/ontology/mo/Release".freeze,
1740
- subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product".freeze,
1741
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1735
+ comment: "Associates a release with the corresponding release event",
1736
+ domain: "http://purl.org/ontology/mo/ReleaseEvent",
1737
+ "http://purl.org/ontology/mo/level": "1",
1738
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1739
+ isDefinedBy: "http://purl.org/ontology/mo/",
1740
+ label: "release",
1741
+ range: "http://purl.org/ontology/mo/Release",
1742
+ subPropertyOf: "http://purl.org/NET/c4dm/event.owl#product",
1743
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1742
1744
  property :releaseStatus,
1743
- equivalentProperty: "http://purl.org/ontology/mo/release_status".freeze,
1744
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
1745
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1745
+ equivalentProperty: "http://purl.org/ontology/mo/release_status",
1746
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
1747
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1746
1748
  property :releaseType,
1747
- equivalentProperty: "http://purl.org/ontology/mo/release_type".freeze,
1748
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
1749
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1749
+ equivalentProperty: "http://purl.org/ontology/mo/release_type",
1750
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
1751
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1750
1752
  property :release_status,
1751
- comment: "\n Relates a musical manifestation to its release status (bootleg, ...)\n ".freeze,
1752
- domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
1753
- "http://purl.org/ontology/mo/level": "1".freeze,
1754
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1755
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1756
- range: "http://purl.org/ontology/mo/ReleaseStatus".freeze,
1757
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1753
+ comment: "\n Relates a musical manifestation to its release status (bootleg, ...)\n ",
1754
+ domain: "http://purl.org/ontology/mo/MusicalManifestation",
1755
+ "http://purl.org/ontology/mo/level": "1",
1756
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1757
+ isDefinedBy: "http://purl.org/ontology/mo/",
1758
+ range: "http://purl.org/ontology/mo/ReleaseStatus",
1759
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1758
1760
  property :release_type,
1759
- comment: "\n Relates a musical manifestation to its release type (interview, spoken word, album, ...)\n ".freeze,
1760
- domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
1761
- "http://purl.org/ontology/mo/level": "1".freeze,
1762
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1763
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1764
- range: "http://purl.org/ontology/mo/ReleaseType".freeze,
1765
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1761
+ comment: "\n Relates a musical manifestation to its release type (interview, spoken word, album, ...)\n ",
1762
+ domain: "http://purl.org/ontology/mo/MusicalManifestation",
1763
+ "http://purl.org/ontology/mo/level": "1",
1764
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1765
+ isDefinedBy: "http://purl.org/ontology/mo/",
1766
+ range: "http://purl.org/ontology/mo/ReleaseType",
1767
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1766
1768
  property :remaster_of,
1767
- comment: "This relates two musical work or the expression of a musical work, where one is a remaster of the other. \n \nA remaster is a new version made for release from source recordings that were earlier released separately. This is usually done to improve the audio quality or adjust for more modern playback equipment. The process generally doesn't involve changing the music in any artistically important way. It may, however, result in tracks that are a few seconds longer or shorter.".freeze,
1768
- "http://purl.org/ontology/mo/level": "1".freeze,
1769
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1770
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1771
- label: "remaster_of".freeze,
1772
- subPropertyOf: "http://purl.org/ontology/mo/derived_from".freeze,
1773
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1769
+ comment: "This relates two musical work or the expression of a musical work, where one is a remaster of the other. \n \nA remaster is a new version made for release from source recordings that were earlier released separately. This is usually done to improve the audio quality or adjust for more modern playback equipment. The process generally doesn't involve changing the music in any artistically important way. It may, however, result in tracks that are a few seconds longer or shorter.",
1770
+ "http://purl.org/ontology/mo/level": "1",
1771
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1772
+ isDefinedBy: "http://purl.org/ontology/mo/",
1773
+ label: "remaster_of",
1774
+ subPropertyOf: "http://purl.org/ontology/mo/derived_from",
1775
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1774
1776
  property :remix_of,
1775
- comment: "Used to relate the remix of a musical work in a substantially altered version produced by mixing together individual tracks or segments of an original musical source work.".freeze,
1776
- "http://purl.org/ontology/mo/level": "1".freeze,
1777
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1778
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1779
- label: "remix_of".freeze,
1780
- subPropertyOf: "http://purl.org/ontology/mo/derived_from".freeze,
1781
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1777
+ comment: "Used to relate the remix of a musical work in a substantially altered version produced by mixing together individual tracks or segments of an original musical source work.",
1778
+ "http://purl.org/ontology/mo/level": "1",
1779
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1780
+ isDefinedBy: "http://purl.org/ontology/mo/",
1781
+ label: "remix_of",
1782
+ subPropertyOf: "http://purl.org/ontology/mo/derived_from",
1783
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1782
1784
  property :remixed,
1783
- comment: "Used to relate an artist who remixed a musical work or the expression of a musical work. \n \nThis involves taking just one other musical work and using audio editing to make it sound like a significantly different, but usually still recognisable, song. It can be used to link an artist to a single song that they remixed, or, if they remixed an entire musical work.".freeze,
1784
- domain: "http://purl.org/ontology/mo/MusicArtist".freeze,
1785
- "http://purl.org/ontology/mo/level": "1".freeze,
1786
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1787
- inverseOf: "http://purl.org/ontology/mo/remixer".freeze,
1788
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1789
- label: "remixed".freeze,
1790
- range: "http://purl.org/ontology/mo/Signal".freeze,
1791
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1785
+ comment: "Used to relate an artist who remixed a musical work or the expression of a musical work. \n \nThis involves taking just one other musical work and using audio editing to make it sound like a significantly different, but usually still recognisable, song. It can be used to link an artist to a single song that they remixed, or, if they remixed an entire musical work.",
1786
+ domain: "http://purl.org/ontology/mo/MusicArtist",
1787
+ "http://purl.org/ontology/mo/level": "1",
1788
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1789
+ inverseOf: "http://purl.org/ontology/mo/remixer",
1790
+ isDefinedBy: "http://purl.org/ontology/mo/",
1791
+ label: "remixed",
1792
+ range: "http://purl.org/ontology/mo/Signal",
1793
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1792
1794
  property :remixer,
1793
- comment: "Used to relate a musical work or the expression of a musical work to an artist who remixed it. \n \nThis involves taking just one other musical work and using audio editing to make it sound like a significantly different, but usually still recognisable, song. It can be used to link an artist to a single song that they remixed, or, if they remixed an entire musical work.".freeze,
1794
- "http://purl.org/ontology/mo/level": "1".freeze,
1795
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1796
- inverseOf: "http://purl.org/ontology/mo/remixed".freeze,
1797
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1798
- label: "remixer".freeze,
1799
- subPropertyOf: "http://purl.org/ontology/mo/interpreter".freeze,
1800
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1795
+ comment: "Used to relate a musical work or the expression of a musical work to an artist who remixed it. \n \nThis involves taking just one other musical work and using audio editing to make it sound like a significantly different, but usually still recognisable, song. It can be used to link an artist to a single song that they remixed, or, if they remixed an entire musical work.",
1796
+ "http://purl.org/ontology/mo/level": "1",
1797
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1798
+ inverseOf: "http://purl.org/ontology/mo/remixed",
1799
+ isDefinedBy: "http://purl.org/ontology/mo/",
1800
+ label: "remixer",
1801
+ subPropertyOf: "http://purl.org/ontology/mo/interpreter",
1802
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1801
1803
  property :review,
1802
- comment: "Used to link a work or the expression of a work to a review. \n \nThe review does not have to be open content, as long as it is accessible to the general internet population.".freeze,
1804
+ comment: "Used to link a work or the expression of a work to a review. \n \nThe review does not have to be open content, as long as it is accessible to the general internet population.",
1803
1805
  domain: term(
1804
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1805
- unionOf: list("http://purl.org/vocab/frbr/core#Work".freeze, "http://purl.org/vocab/frbr/core#Expression".freeze, "http://purl.org/vocab/frbr/core#Manifestation".freeze)
1806
+ type: "http://www.w3.org/2002/07/owl#Class",
1807
+ unionOf: list("http://purl.org/vocab/frbr/core#Work", "http://purl.org/vocab/frbr/core#Expression", "http://purl.org/vocab/frbr/core#Manifestation")
1806
1808
  ),
1807
- "http://purl.org/ontology/mo/level": "1".freeze,
1808
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1809
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1810
- label: "review".freeze,
1811
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
1812
- subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze,
1813
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1809
+ "http://purl.org/ontology/mo/level": "1",
1810
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1811
+ isDefinedBy: "http://purl.org/ontology/mo/",
1812
+ label: "review",
1813
+ range: "http://xmlns.com/foaf/0.1/Document",
1814
+ subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
1815
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1814
1816
  property :sampleRate,
1815
- equivalentProperty: "http://purl.org/ontology/mo/sample_rate".freeze,
1816
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
1817
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1817
+ equivalentProperty: "http://purl.org/ontology/mo/sample_rate",
1818
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
1819
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1818
1820
  property :sample_rate,
1819
- comment: "\n Associates a digital signal to its sample rate. It might be easier to express it this way instead of\n defining a timeline map:-) Range is xsd:float.\n ".freeze,
1820
- domain: "http://purl.org/ontology/mo/DigitalSignal".freeze,
1821
- "http://purl.org/ontology/mo/level": "1".freeze,
1822
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1823
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1824
- range: "http://www.w3.org/2001/XMLSchema#float".freeze,
1825
- type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze]
1821
+ comment: "\n Associates a digital signal to its sample rate. It might be easier to express it this way instead of\n defining a timeline map:-) Range is xsd:float.\n ",
1822
+ domain: "http://purl.org/ontology/mo/DigitalSignal",
1823
+ "http://purl.org/ontology/mo/level": "1",
1824
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1825
+ isDefinedBy: "http://purl.org/ontology/mo/",
1826
+ range: "http://www.w3.org/2001/XMLSchema#float",
1827
+ type: ["http://www.w3.org/2002/07/owl#DatatypeProperty", "http://www.w3.org/2002/07/owl#FunctionalProperty"]
1826
1828
  property :sampled,
1827
- comment: "Used to relate an artist who sampled a Signal.".freeze,
1828
- domain: "http://purl.org/ontology/mo/MusicArtist".freeze,
1829
- "http://purl.org/ontology/mo/level": "1".freeze,
1830
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1831
- inverseOf: "http://purl.org/ontology/mo/sampler".freeze,
1832
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1833
- label: "sampled".freeze,
1834
- range: "http://purl.org/ontology/mo/Signal".freeze,
1835
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1829
+ comment: "Used to relate an artist who sampled a Signal.",
1830
+ domain: "http://purl.org/ontology/mo/MusicArtist",
1831
+ "http://purl.org/ontology/mo/level": "1",
1832
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1833
+ inverseOf: "http://purl.org/ontology/mo/sampler",
1834
+ isDefinedBy: "http://purl.org/ontology/mo/",
1835
+ label: "sampled",
1836
+ range: "http://purl.org/ontology/mo/Signal",
1837
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1836
1838
  property :sampledVersionOf,
1837
- equivalentProperty: "http://purl.org/ontology/mo/sampled_version_of".freeze,
1838
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
1839
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1840
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1839
+ equivalentProperty: "http://purl.org/ontology/mo/sampled_version_of",
1840
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
1841
+ isDefinedBy: "http://purl.org/ontology/mo/",
1842
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1841
1843
  property :sampled_version,
1842
- comment: "\n Associates an analog signal with a sampled version of it\n ".freeze,
1843
- domain: "http://purl.org/ontology/mo/AnalogSignal".freeze,
1844
- "http://purl.org/ontology/mo/level": "2".freeze,
1845
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1846
- inverseOf: "http://purl.org/ontology/mo/sampled_version_of".freeze,
1847
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1848
- label: "sampled version".freeze,
1849
- range: "http://purl.org/ontology/mo/DigitalSignal".freeze,
1850
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1844
+ comment: "\n Associates an analog signal with a sampled version of it\n ",
1845
+ domain: "http://purl.org/ontology/mo/AnalogSignal",
1846
+ "http://purl.org/ontology/mo/level": "2",
1847
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1848
+ inverseOf: "http://purl.org/ontology/mo/sampled_version_of",
1849
+ isDefinedBy: "http://purl.org/ontology/mo/",
1850
+ label: "sampled version",
1851
+ range: "http://purl.org/ontology/mo/DigitalSignal",
1852
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1851
1853
  property :sampled_version_of,
1852
- comment: "\n Associates a digital signal with the analog version of it\n ".freeze,
1853
- domain: "http://purl.org/ontology/mo/DigitalSignal".freeze,
1854
- "http://purl.org/ontology/mo/level": "2".freeze,
1855
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1856
- inverseOf: "http://purl.org/ontology/mo/sampled_version".freeze,
1857
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1858
- label: "sampled version of".freeze,
1859
- range: "http://purl.org/ontology/mo/AnalogSignal".freeze,
1860
- subPropertyOf: "http://purl.org/ontology/mo/derived_from".freeze,
1861
- type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
1854
+ comment: "\n Associates a digital signal with the analog version of it\n ",
1855
+ domain: "http://purl.org/ontology/mo/DigitalSignal",
1856
+ "http://purl.org/ontology/mo/level": "2",
1857
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1858
+ inverseOf: "http://purl.org/ontology/mo/sampled_version",
1859
+ isDefinedBy: "http://purl.org/ontology/mo/",
1860
+ label: "sampled version of",
1861
+ range: "http://purl.org/ontology/mo/AnalogSignal",
1862
+ subPropertyOf: "http://purl.org/ontology/mo/derived_from",
1863
+ type: ["http://www.w3.org/2002/07/owl#FunctionalProperty", "http://www.w3.org/2002/07/owl#ObjectProperty"]
1862
1864
  property :sampler,
1863
- comment: "Used to relate the signal of a musical work to an artist who sampled it.".freeze,
1864
- "http://purl.org/ontology/mo/level": "1".freeze,
1865
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1866
- inverseOf: "http://purl.org/ontology/mo/sampled".freeze,
1867
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1868
- label: "sampler".freeze,
1869
- subPropertyOf: "http://purl.org/ontology/mo/interpreter".freeze,
1870
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1865
+ comment: "Used to relate the signal of a musical work to an artist who sampled it.",
1866
+ "http://purl.org/ontology/mo/level": "1",
1867
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1868
+ inverseOf: "http://purl.org/ontology/mo/sampled",
1869
+ isDefinedBy: "http://purl.org/ontology/mo/",
1870
+ label: "sampler",
1871
+ subPropertyOf: "http://purl.org/ontology/mo/interpreter",
1872
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1871
1873
  property :sell_item,
1872
- comment: "A person, a group of person or an organization selling an exemplar of a single manifestation.".freeze,
1873
- domain: "http://xmlns.com/foaf/0.1/Agent".freeze,
1874
- "http://purl.org/ontology/mo/level": "1".freeze,
1875
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1876
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1877
- label: "sell_item".freeze,
1878
- range: "http://purl.org/vocab/frbr/core#Item".freeze,
1879
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1874
+ comment: "A person, a group of person or an organization selling an exemplar of a single manifestation.",
1875
+ domain: "http://xmlns.com/foaf/0.1/Agent",
1876
+ "http://purl.org/ontology/mo/level": "1",
1877
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1878
+ isDefinedBy: "http://purl.org/ontology/mo/",
1879
+ label: "sell_item",
1880
+ range: "http://purl.org/vocab/frbr/core#Item",
1881
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1880
1882
  property :signal,
1881
- comment: "Associates a group of signals with one of the signals it contains".freeze,
1882
- domain: "http://purl.org/ontology/mo/SignalGroup".freeze,
1883
- "http://purl.org/ontology/mo/level": "1".freeze,
1884
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1885
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1886
- label: "signal".freeze,
1887
- range: "http://purl.org/ontology/mo/Signal".freeze,
1888
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1883
+ comment: "Associates a group of signals with one of the signals it contains",
1884
+ domain: "http://purl.org/ontology/mo/SignalGroup",
1885
+ "http://purl.org/ontology/mo/level": "1",
1886
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1887
+ isDefinedBy: "http://purl.org/ontology/mo/",
1888
+ label: "signal",
1889
+ range: "http://purl.org/ontology/mo/Signal",
1890
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1889
1891
  property :signalTime,
1890
- equivalentProperty: "http://purl.org/ontology/mo/time".freeze,
1891
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
1892
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1893
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1892
+ equivalentProperty: "http://purl.org/ontology/mo/time",
1893
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
1894
+ isDefinedBy: "http://purl.org/ontology/mo/",
1895
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1894
1896
  property :similar_to,
1895
- comment: "\n A similarity relationships between two objects (so far, either an agent, a signal or a genre, but\n this could grow).\n This relationship is pretty general and doesn't make any assumptions on how the similarity claim\n was derived.\n Such similarity statements can come from a range of different sources (Musicbrainz similarities between\n artists, or coming from some automatic content analysis).\n However, the origin of such statements should be kept using a named graph approach - and ultimately, the \n documents providing such statements should attach some metadata to themselves (confidence of the claim, etc.).\n ".freeze,
1897
+ comment: "\n A similarity relationships between two objects (so far, either an agent, a signal or a genre, but\n this could grow).\n This relationship is pretty general and doesn't make any assumptions on how the similarity claim\n was derived.\n Such similarity statements can come from a range of different sources (Musicbrainz similarities between\n artists, or coming from some automatic content analysis).\n However, the origin of such statements should be kept using a named graph approach - and ultimately, the \n documents providing such statements should attach some metadata to themselves (confidence of the claim, etc.).\n ",
1896
1898
  domain: term(
1897
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1898
- unionOf: list("http://xmlns.com/foaf/0.1/Agent".freeze, "http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze, "http://purl.org/ontology/mo/MusicalItem".freeze, "http://purl.org/ontology/mo/Genre".freeze)
1899
+ type: "http://www.w3.org/2002/07/owl#Class",
1900
+ unionOf: list("http://xmlns.com/foaf/0.1/Agent", "http://purl.org/ontology/mo/MusicalWork", "http://purl.org/ontology/mo/MusicalExpression", "http://purl.org/ontology/mo/MusicalManifestation", "http://purl.org/ontology/mo/MusicalItem", "http://purl.org/ontology/mo/Genre")
1899
1901
  ),
1900
- "http://purl.org/ontology/mo/level": "1".freeze,
1901
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1902
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1903
- label: "similar_to".freeze,
1902
+ "http://purl.org/ontology/mo/level": "1",
1903
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1904
+ isDefinedBy: "http://purl.org/ontology/mo/",
1905
+ label: "similar_to",
1904
1906
  range: term(
1905
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1906
- unionOf: list("http://xmlns.com/foaf/0.1/Agent".freeze, "http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/MusicalExpression".freeze, "http://purl.org/ontology/mo/MusicalManifestation".freeze, "http://purl.org/ontology/mo/MusicalItem".freeze, "http://purl.org/ontology/mo/Genre".freeze)
1907
+ type: "http://www.w3.org/2002/07/owl#Class",
1908
+ unionOf: list("http://xmlns.com/foaf/0.1/Agent", "http://purl.org/ontology/mo/MusicalWork", "http://purl.org/ontology/mo/MusicalExpression", "http://purl.org/ontology/mo/MusicalManifestation", "http://purl.org/ontology/mo/MusicalItem", "http://purl.org/ontology/mo/Genre")
1907
1909
  ),
1908
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1910
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1909
1911
  property :singer,
1910
- comment: "Relates a performance to an involved singer".freeze,
1911
- domain: "http://purl.org/ontology/mo/Performance".freeze,
1912
- "http://purl.org/ontology/mo/level": "2".freeze,
1913
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1914
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1915
- range: "http://xmlns.com/foaf/0.1/Agent".freeze,
1916
- subPropertyOf: "http://purl.org/ontology/mo/performer".freeze,
1917
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1912
+ comment: "Relates a performance to an involved singer",
1913
+ domain: "http://purl.org/ontology/mo/Performance",
1914
+ "http://purl.org/ontology/mo/level": "2",
1915
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1916
+ isDefinedBy: "http://purl.org/ontology/mo/",
1917
+ range: "http://xmlns.com/foaf/0.1/Agent",
1918
+ subPropertyOf: "http://purl.org/ontology/mo/performer",
1919
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1918
1920
  property :supporting_musician,
1919
- comment: "Used to relate an artist doing long-time instrumental or vocal support for another artist.".freeze,
1920
- domain: "http://purl.org/ontology/mo/MusicArtist".freeze,
1921
- "http://purl.org/ontology/mo/level": "1".freeze,
1922
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1923
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1924
- label: "supporting_musician".freeze,
1925
- range: "http://purl.org/ontology/mo/MusicArtist".freeze,
1926
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1921
+ comment: "Used to relate an artist doing long-time instrumental or vocal support for another artist.",
1922
+ domain: "http://purl.org/ontology/mo/MusicArtist",
1923
+ "http://purl.org/ontology/mo/level": "1",
1924
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1925
+ isDefinedBy: "http://purl.org/ontology/mo/",
1926
+ label: "supporting_musician",
1927
+ range: "http://purl.org/ontology/mo/MusicArtist",
1928
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1927
1929
  property :tempo,
1928
- comment: "\n Rate of speed or pace of music. Tempo markings are traditionally given in Italian; \n common markings include: grave (solemn; very, very slow); largo (broad; very slow); \n adagio (quite slow); andante (a walking pace); moderato (moderate); allegro (fast; cheerful); \n vivace (lively); presto (very fast); accelerando (getting faster); ritardando (getting slower); \n and a tempo (in time; returning to the original pace).\n ".freeze,
1930
+ comment: "\n Rate of speed or pace of music. Tempo markings are traditionally given in Italian; \n common markings include: grave (solemn; very, very slow); largo (broad; very slow); \n adagio (quite slow); andante (a walking pace); moderato (moderate); allegro (fast; cheerful); \n vivace (lively); presto (very fast); accelerando (getting faster); ritardando (getting slower); \n and a tempo (in time; returning to the original pace).\n ",
1929
1931
  domain: term(
1930
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
1931
- unionOf: list("http://purl.org/ontology/mo/MusicalWork".freeze, "http://purl.org/ontology/mo/Performance".freeze, "http://purl.org/ontology/mo/Signal".freeze)
1932
+ type: "http://www.w3.org/2002/07/owl#Class",
1933
+ unionOf: list("http://purl.org/ontology/mo/MusicalWork", "http://purl.org/ontology/mo/Performance", "http://purl.org/ontology/mo/Signal")
1932
1934
  ),
1933
- "http://purl.org/ontology/mo/level": "2".freeze,
1934
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1935
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1936
- label: "tempo".freeze,
1937
- range: "http://www.w3.org/2001/XMLSchema#string".freeze,
1938
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1935
+ "http://purl.org/ontology/mo/level": "2",
1936
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1937
+ isDefinedBy: "http://purl.org/ontology/mo/",
1938
+ label: "tempo",
1939
+ range: "http://www.w3.org/2001/XMLSchema#string",
1940
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1939
1941
  property :text,
1940
- comment: "Associates lyrics with their text.".freeze,
1941
- domain: "http://purl.org/ontology/mo/Lyrics".freeze,
1942
- "http://purl.org/ontology/mo/level": "2".freeze,
1943
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1944
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1945
- label: "text".freeze,
1946
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1942
+ comment: "Associates lyrics with their text.",
1943
+ domain: "http://purl.org/ontology/mo/Lyrics",
1944
+ "http://purl.org/ontology/mo/level": "2",
1945
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1946
+ isDefinedBy: "http://purl.org/ontology/mo/",
1947
+ label: "text",
1948
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1947
1949
  property :time,
1948
- comment: "\n Associates a Signal to a time object - its actual domain\n ".freeze,
1949
- domain: "http://purl.org/ontology/mo/Signal".freeze,
1950
- "http://purl.org/ontology/mo/level": "1".freeze,
1951
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1952
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1953
- label: "time".freeze,
1954
- range: "http://www.w3.org/2006/time#TemporalEntity".freeze,
1955
- type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
1950
+ comment: "\n Associates a Signal to a time object - its actual domain\n ",
1951
+ domain: "http://purl.org/ontology/mo/Signal",
1952
+ "http://purl.org/ontology/mo/level": "1",
1953
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1954
+ isDefinedBy: "http://purl.org/ontology/mo/",
1955
+ label: "time",
1956
+ range: "http://www.w3.org/2006/time#TemporalEntity",
1957
+ type: ["http://www.w3.org/2002/07/owl#FunctionalProperty", "http://www.w3.org/2002/07/owl#ObjectProperty"]
1956
1958
  property :track,
1957
- comment: "Indicates a part of a musical manifestation - in this particular case, a track.".freeze,
1958
- domain: "http://purl.org/ontology/mo/Record".freeze,
1959
- "http://purl.org/ontology/mo/level": "1".freeze,
1960
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1961
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1962
- label: "track".freeze,
1963
- range: "http://purl.org/ontology/mo/Track".freeze,
1964
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1959
+ comment: "Indicates a part of a musical manifestation - in this particular case, a track.",
1960
+ domain: "http://purl.org/ontology/mo/Record",
1961
+ "http://purl.org/ontology/mo/level": "1",
1962
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1963
+ isDefinedBy: "http://purl.org/ontology/mo/",
1964
+ label: "track",
1965
+ range: "http://purl.org/ontology/mo/Track",
1966
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1965
1967
  property :trackNum,
1966
- equivalentProperty: "http://purl.org/ontology/mo/track_number".freeze,
1967
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
1968
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1969
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1968
+ equivalentProperty: "http://purl.org/ontology/mo/track_number",
1969
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
1970
+ isDefinedBy: "http://purl.org/ontology/mo/",
1971
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1970
1972
  property :track_count,
1971
- comment: "The track count of a record".freeze,
1972
- domain: "http://purl.org/ontology/mo/Record".freeze,
1973
- "http://purl.org/ontology/mo/level": "1".freeze,
1974
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
1975
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1976
- label: "track count".freeze,
1977
- range: "http://www.w3.org/2001/XMLSchema#int".freeze,
1978
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1973
+ comment: "The track count of a record",
1974
+ domain: "http://purl.org/ontology/mo/Record",
1975
+ "http://purl.org/ontology/mo/level": "1",
1976
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
1977
+ isDefinedBy: "http://purl.org/ontology/mo/",
1978
+ label: "track count",
1979
+ range: "http://www.w3.org/2001/XMLSchema#int",
1980
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1979
1981
  property :track_number,
1980
- comment: "Indicates the position of a track on a record medium (a CD, etc.).".freeze,
1981
- domain: "http://purl.org/ontology/mo/Track".freeze,
1982
- "http://purl.org/ontology/mo/level": "1".freeze,
1983
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
1984
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1985
- label: "track number".freeze,
1986
- range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze,
1987
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
1982
+ comment: "Indicates the position of a track on a record medium (a CD, etc.).",
1983
+ domain: "http://purl.org/ontology/mo/Track",
1984
+ "http://purl.org/ontology/mo/level": "1",
1985
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
1986
+ isDefinedBy: "http://purl.org/ontology/mo/",
1987
+ label: "track number",
1988
+ range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
1989
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
1988
1990
  property :translation_of,
1989
- comment: "Indicates that a work or the expression of a work has translated or transliterated into another expression of a work.".freeze,
1990
- domain: "http://purl.org/vocab/frbr/core#Expression".freeze,
1991
- "http://purl.org/ontology/mo/level": "1".freeze,
1992
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
1993
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
1994
- label: "translation_of".freeze,
1995
- range: "http://purl.org/vocab/frbr/core#Expression".freeze,
1996
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
1991
+ comment: "Indicates that a work or the expression of a work has translated or transliterated into another expression of a work.",
1992
+ domain: "http://purl.org/vocab/frbr/core#Expression",
1993
+ "http://purl.org/ontology/mo/level": "1",
1994
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
1995
+ isDefinedBy: "http://purl.org/ontology/mo/",
1996
+ label: "translation_of",
1997
+ range: "http://purl.org/vocab/frbr/core#Expression",
1998
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
1997
1999
  property :tribute_to,
1998
- comment: "Indicates a musical work or the expression of a musical work that is a tribute to an artist - normally consisting of music being composed by the artist but performed by other artists. ".freeze,
1999
- domain: "http://purl.org/ontology/mo/MusicalManifestation".freeze,
2000
- "http://purl.org/ontology/mo/level": "1".freeze,
2001
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable".freeze,
2002
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2003
- label: "tribute_to".freeze,
2004
- range: "http://purl.org/ontology/mo/MusicArtist".freeze,
2005
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2000
+ comment: "Indicates a musical work or the expression of a musical work that is a tribute to an artist - normally consisting of music being composed by the artist but performed by other artists. ",
2001
+ domain: "http://purl.org/ontology/mo/MusicalManifestation",
2002
+ "http://purl.org/ontology/mo/level": "1",
2003
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "unstable",
2004
+ isDefinedBy: "http://purl.org/ontology/mo/",
2005
+ label: "tribute_to",
2006
+ range: "http://purl.org/ontology/mo/MusicArtist",
2007
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
2006
2008
  property :trmid,
2007
- comment: "\n Indicates the TRMID of a track.\n TRM IDs are MusicBrainz' old AudioFingerprinting system. \n TRM (TRM Recognizes Music) IDs are (somewhat) unique ids that represent \n the audio signature of a musical piece (see AudioFingerprint).\n ".freeze,
2008
- domain: "http://purl.org/ontology/mo/Signal".freeze,
2009
- "http://purl.org/ontology/mo/level": "1".freeze,
2010
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
2011
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2012
- label: "trmid".freeze,
2013
- range: "http://www.w3.org/2001/XMLSchema#string".freeze,
2014
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2009
+ comment: "\n Indicates the TRMID of a track.\n TRM IDs are MusicBrainz' old AudioFingerprinting system. \n TRM (TRM Recognizes Music) IDs are (somewhat) unique ids that represent \n the audio signature of a musical piece (see AudioFingerprint).\n ",
2010
+ domain: "http://purl.org/ontology/mo/Signal",
2011
+ "http://purl.org/ontology/mo/level": "1",
2012
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
2013
+ isDefinedBy: "http://purl.org/ontology/mo/",
2014
+ label: "trmid",
2015
+ range: "http://www.w3.org/2001/XMLSchema#string",
2016
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
2015
2017
  property :upc,
2016
- comment: "UPC stands for \"Universal Product Code\", which was the original barcode used in the United States and Canada. The UPC (now officially EAN.UCC-12 is a numerical method of identifying products without redundancy worldwide for all types of products in the retail sector. The EAN is a superset of the original UPC increasing the digits to 13 with the prefix 0 reserved for UPC. As of 2005, manufacturers are only allowed to use the new 13-digit codes on their items, rather than having two separate numbers.".freeze,
2017
- domain: "http://purl.org/ontology/mo/Release".freeze,
2018
- "http://purl.org/ontology/mo/level": "1".freeze,
2019
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
2020
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2021
- label: "upc".freeze,
2022
- range: "http://www.w3.org/2001/XMLSchema#string".freeze,
2023
- subPropertyOf: "http://purl.org/ontology/mo/gtin".freeze,
2024
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2018
+ comment: "UPC stands for \"Universal Product Code\", which was the original barcode used in the United States and Canada. The UPC (now officially EAN.UCC-12 is a numerical method of identifying products without redundancy worldwide for all types of products in the retail sector. The EAN is a superset of the original UPC increasing the digits to 13 with the prefix 0 reserved for UPC. As of 2005, manufacturers are only allowed to use the new 13-digit codes on their items, rather than having two separate numbers.",
2019
+ domain: "http://purl.org/ontology/mo/Release",
2020
+ "http://purl.org/ontology/mo/level": "1",
2021
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
2022
+ isDefinedBy: "http://purl.org/ontology/mo/",
2023
+ label: "upc",
2024
+ range: "http://www.w3.org/2001/XMLSchema#string",
2025
+ subPropertyOf: "http://purl.org/ontology/mo/gtin",
2026
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
2025
2027
  property :usedInPerformance,
2026
- equivalentProperty: "http://purl.org/ontology/mo/performed_in".freeze,
2027
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
2028
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2029
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2028
+ equivalentProperty: "http://purl.org/ontology/mo/performed_in",
2029
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
2030
+ isDefinedBy: "http://purl.org/ontology/mo/",
2031
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
2030
2032
  property :usedInRecording,
2031
- equivalentProperty: "http://purl.org/ontology/mo/recorded_in".freeze,
2032
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
2033
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2034
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2033
+ equivalentProperty: "http://purl.org/ontology/mo/recorded_in",
2034
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
2035
+ isDefinedBy: "http://purl.org/ontology/mo/",
2036
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
2035
2037
  property :usesSound,
2036
- equivalentProperty: "http://purl.org/ontology/mo/recording_of".freeze,
2037
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
2038
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2039
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2038
+ equivalentProperty: "http://purl.org/ontology/mo/recording_of",
2039
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
2040
+ isDefinedBy: "http://purl.org/ontology/mo/",
2041
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
2040
2042
  property :usesWork,
2041
- equivalentProperty: "http://purl.org/ontology/mo/performance_of".freeze,
2042
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze,
2043
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2044
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2043
+ equivalentProperty: "http://purl.org/ontology/mo/performance_of",
2044
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated",
2045
+ isDefinedBy: "http://purl.org/ontology/mo/",
2046
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
2045
2047
  property :uuid,
2046
- comment: "\n Links an object to an universally unique identifier for it.\n ".freeze,
2047
- domain: "http://www.w3.org/2002/07/owl#Thing".freeze,
2048
- "http://purl.org/ontology/mo/level": "1".freeze,
2049
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze,
2050
- label: "universally unique identifier".freeze,
2051
- subPropertyOf: "http://purl.org/dc/terms/identifier".freeze,
2052
- type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
2048
+ comment: "\n Links an object to an universally unique identifier for it.\n ",
2049
+ domain: "http://www.w3.org/2002/07/owl#Thing",
2050
+ "http://purl.org/ontology/mo/level": "1",
2051
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing",
2052
+ label: "universally unique identifier",
2053
+ subPropertyOf: "http://purl.org/dc/terms/identifier",
2054
+ type: "http://www.w3.org/2002/07/owl#DatatypeProperty"
2053
2055
  property :want_item,
2054
- comment: "A person, a group of person or an organization wanting an exemplar of a single manifestation.".freeze,
2055
- domain: "http://xmlns.com/foaf/0.1/Agent".freeze,
2056
- "http://purl.org/ontology/mo/level": "1".freeze,
2057
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
2058
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2059
- label: "want_item".freeze,
2060
- range: "http://purl.org/vocab/frbr/core#Item".freeze,
2061
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2056
+ comment: "A person, a group of person or an organization wanting an exemplar of a single manifestation.",
2057
+ domain: "http://xmlns.com/foaf/0.1/Agent",
2058
+ "http://purl.org/ontology/mo/level": "1",
2059
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
2060
+ isDefinedBy: "http://purl.org/ontology/mo/",
2061
+ label: "want_item",
2062
+ range: "http://purl.org/vocab/frbr/core#Item",
2063
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
2062
2064
  property :wikipedia,
2063
- comment: "\n Used to link an work, an expression of a work, a manifestation of a work, \n a person, an instrument or a musical genre to its corresponding WikiPedia page. \n The full URL should be used, not just the WikiName.\n ".freeze,
2065
+ comment: "\n Used to link an work, an expression of a work, a manifestation of a work, \n a person, an instrument or a musical genre to its corresponding WikiPedia page. \n The full URL should be used, not just the WikiName.\n ",
2064
2066
  domain: term(
2065
- type: "http://www.w3.org/2002/07/owl#Class".freeze,
2066
- unionOf: list("http://purl.org/vocab/frbr/core#Work".freeze, "http://purl.org/vocab/frbr/core#Expression".freeze, "http://purl.org/vocab/frbr/core#Manifestation".freeze, "http://purl.org/vocab/frbr/core#Item".freeze, "http://xmlns.com/foaf/0.1/Agent".freeze, "http://purl.org/ontology/mo/Instrument".freeze, "http://purl.org/ontology/mo/Genre".freeze)
2067
+ type: "http://www.w3.org/2002/07/owl#Class",
2068
+ unionOf: list("http://purl.org/vocab/frbr/core#Work", "http://purl.org/vocab/frbr/core#Expression", "http://purl.org/vocab/frbr/core#Manifestation", "http://purl.org/vocab/frbr/core#Item", "http://xmlns.com/foaf/0.1/Agent", "http://purl.org/ontology/mo/Instrument", "http://purl.org/ontology/mo/Genre")
2067
2069
  ),
2068
- "http://purl.org/ontology/mo/level": "1".freeze,
2069
- "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze,
2070
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2071
- label: "wikipedia".freeze,
2072
- range: "http://xmlns.com/foaf/0.1/Document".freeze,
2073
- subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf".freeze,
2074
- type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
2070
+ "http://purl.org/ontology/mo/level": "1",
2071
+ "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable",
2072
+ isDefinedBy: "http://purl.org/ontology/mo/",
2073
+ label: "wikipedia",
2074
+ range: "http://xmlns.com/foaf/0.1/Document",
2075
+ subPropertyOf: "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
2076
+ type: "http://www.w3.org/2002/07/owl#ObjectProperty"
2075
2077
 
2076
2078
  # Extra definitions
2077
2079
  term :album,
2078
- "http://purl.org/dc/elements/1.1/description": "\n One or more track issued together.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze,
2079
- "http://purl.org/dc/elements/1.1/title": "album".freeze,
2080
- "http://purl.org/ontology/mo/level": "1".freeze,
2081
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2082
- type: "http://purl.org/ontology/mo/ReleaseType".freeze
2080
+ "http://purl.org/dc/elements/1.1/description": "\n One or more track issued together.\n This is a type of MusicalManifestation defined by the musical industry.\n ",
2081
+ "http://purl.org/dc/elements/1.1/title": "album",
2082
+ "http://purl.org/ontology/mo/level": "1",
2083
+ isDefinedBy: "http://purl.org/ontology/mo/",
2084
+ type: "http://purl.org/ontology/mo/ReleaseType"
2083
2085
  term :audiobook,
2084
- "http://purl.org/dc/elements/1.1/description": "\n Book read by a narrator without music.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze,
2085
- "http://purl.org/dc/elements/1.1/title": "audio book".freeze,
2086
- "http://purl.org/ontology/mo/level": "1".freeze,
2087
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2088
- type: "http://purl.org/ontology/mo/ReleaseType".freeze
2086
+ "http://purl.org/dc/elements/1.1/description": "\n Book read by a narrator without music.\n This is a type of MusicalManifestation defined by the musical industry.\n ",
2087
+ "http://purl.org/dc/elements/1.1/title": "audio book",
2088
+ "http://purl.org/ontology/mo/level": "1",
2089
+ isDefinedBy: "http://purl.org/ontology/mo/",
2090
+ type: "http://purl.org/ontology/mo/ReleaseType"
2089
2091
  term :bootleg,
2090
- "http://purl.org/dc/elements/1.1/description": "An unofficial/underground musical work or the expression of a musical work that was not sanctioned by the artist and/or the corporate body. ".freeze,
2091
- "http://purl.org/dc/elements/1.1/title": "bootleg".freeze,
2092
- "http://purl.org/ontology/mo/level": "1".freeze,
2093
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2094
- type: "http://purl.org/ontology/mo/ReleaseStatus".freeze
2092
+ "http://purl.org/dc/elements/1.1/description": "An unofficial/underground musical work or the expression of a musical work that was not sanctioned by the artist and/or the corporate body. ",
2093
+ "http://purl.org/dc/elements/1.1/title": "bootleg",
2094
+ "http://purl.org/ontology/mo/level": "1",
2095
+ isDefinedBy: "http://purl.org/ontology/mo/",
2096
+ type: "http://purl.org/ontology/mo/ReleaseStatus"
2095
2097
  term :compilation,
2096
- "http://purl.org/dc/elements/1.1/description": "\n Collection of previously released manifestations of a musical expression by one or more artists.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze,
2097
- "http://purl.org/dc/elements/1.1/title": "compilation".freeze,
2098
- "http://purl.org/ontology/mo/level": "1".freeze,
2099
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2100
- type: "http://purl.org/ontology/mo/ReleaseType".freeze
2098
+ "http://purl.org/dc/elements/1.1/description": "\n Collection of previously released manifestations of a musical expression by one or more artists.\n This is a type of MusicalManifestation defined by the musical industry.\n ",
2099
+ "http://purl.org/dc/elements/1.1/title": "compilation",
2100
+ "http://purl.org/ontology/mo/level": "1",
2101
+ isDefinedBy: "http://purl.org/ontology/mo/",
2102
+ type: "http://purl.org/ontology/mo/ReleaseType"
2101
2103
  term :ep,
2102
- "http://purl.org/dc/elements/1.1/description": "\n An EP\n ".freeze,
2103
- "http://purl.org/dc/elements/1.1/title": "ep".freeze,
2104
- "http://purl.org/ontology/mo/level": "1".freeze,
2105
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2106
- type: "http://purl.org/ontology/mo/ReleaseType".freeze
2104
+ "http://purl.org/dc/elements/1.1/description": "\n An EP\n ",
2105
+ "http://purl.org/dc/elements/1.1/title": "ep",
2106
+ "http://purl.org/ontology/mo/level": "1",
2107
+ isDefinedBy: "http://purl.org/ontology/mo/",
2108
+ type: "http://purl.org/ontology/mo/ReleaseType"
2107
2109
  term :interview,
2108
- "http://purl.org/dc/elements/1.1/description": "\n Recording of the questioning of a person.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze,
2109
- "http://purl.org/dc/elements/1.1/title": "interview".freeze,
2110
- "http://purl.org/ontology/mo/level": "1".freeze,
2111
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2112
- type: "http://purl.org/ontology/mo/ReleaseType".freeze
2110
+ "http://purl.org/dc/elements/1.1/description": "\n Recording of the questioning of a person.\n This is a type of MusicalManifestation defined by the musical industry.\n ",
2111
+ "http://purl.org/dc/elements/1.1/title": "interview",
2112
+ "http://purl.org/ontology/mo/level": "1",
2113
+ isDefinedBy: "http://purl.org/ontology/mo/",
2114
+ type: "http://purl.org/ontology/mo/ReleaseType"
2113
2115
  term :live,
2114
- "http://purl.org/dc/elements/1.1/description": "\n A musical manifestation that was recorded live.\n This is a type of MusicalManifestation defined by the musical industry.".freeze,
2115
- "http://purl.org/dc/elements/1.1/title": "live".freeze,
2116
- "http://purl.org/ontology/mo/level": "1".freeze,
2117
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2118
- type: "http://purl.org/ontology/mo/ReleaseType".freeze
2116
+ "http://purl.org/dc/elements/1.1/description": "\n A musical manifestation that was recorded live.\n This is a type of MusicalManifestation defined by the musical industry.",
2117
+ "http://purl.org/dc/elements/1.1/title": "live",
2118
+ "http://purl.org/ontology/mo/level": "1",
2119
+ isDefinedBy: "http://purl.org/ontology/mo/",
2120
+ type: "http://purl.org/ontology/mo/ReleaseType"
2119
2121
  term :official,
2120
- "http://purl.org/dc/elements/1.1/description": "Any musical work or the expression of a musical work officially sanctioned by the artist and/or their corporate body.".freeze,
2121
- "http://purl.org/dc/elements/1.1/title": "official".freeze,
2122
- "http://purl.org/ontology/mo/level": "1".freeze,
2123
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2124
- type: "http://purl.org/ontology/mo/ReleaseStatus".freeze
2122
+ "http://purl.org/dc/elements/1.1/description": "Any musical work or the expression of a musical work officially sanctioned by the artist and/or their corporate body.",
2123
+ "http://purl.org/dc/elements/1.1/title": "official",
2124
+ "http://purl.org/ontology/mo/level": "1",
2125
+ isDefinedBy: "http://purl.org/ontology/mo/",
2126
+ type: "http://purl.org/ontology/mo/ReleaseStatus"
2125
2127
  term :promotion,
2126
- "http://purl.org/dc/elements/1.1/description": "A giveaway musical work or the expression of a musical work intended to promote an upcoming official musical work or the expression of a musical work.".freeze,
2127
- "http://purl.org/dc/elements/1.1/title": "promotion".freeze,
2128
- "http://purl.org/ontology/mo/level": "1".freeze,
2129
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2130
- type: "http://purl.org/ontology/mo/ReleaseStatus".freeze
2128
+ "http://purl.org/dc/elements/1.1/description": "A giveaway musical work or the expression of a musical work intended to promote an upcoming official musical work or the expression of a musical work.",
2129
+ "http://purl.org/dc/elements/1.1/title": "promotion",
2130
+ "http://purl.org/ontology/mo/level": "1",
2131
+ isDefinedBy: "http://purl.org/ontology/mo/",
2132
+ type: "http://purl.org/ontology/mo/ReleaseStatus"
2131
2133
  term :remix,
2132
- "http://purl.org/dc/elements/1.1/description": "\n Musical manifestation that primarily contains remixed material. \n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze,
2133
- "http://purl.org/dc/elements/1.1/title": "remix".freeze,
2134
- "http://purl.org/ontology/mo/level": "1".freeze,
2135
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2136
- type: "http://purl.org/ontology/mo/ReleaseType".freeze
2134
+ "http://purl.org/dc/elements/1.1/description": "\n Musical manifestation that primarily contains remixed material. \n This is a type of MusicalManifestation defined by the musical industry.\n ",
2135
+ "http://purl.org/dc/elements/1.1/title": "remix",
2136
+ "http://purl.org/ontology/mo/level": "1",
2137
+ isDefinedBy: "http://purl.org/ontology/mo/",
2138
+ type: "http://purl.org/ontology/mo/ReleaseType"
2137
2139
  term :single,
2138
- "http://purl.org/dc/elements/1.1/description": "A single or record single is a type of release, typically a recording of two tracks. In most cases, the single is a song that is released separately from an album, but it can still appear on an album.".freeze,
2139
- "http://purl.org/dc/elements/1.1/title": "single".freeze,
2140
- "http://purl.org/ontology/mo/level": "1".freeze,
2141
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2142
- type: "http://purl.org/ontology/mo/ReleaseType".freeze
2140
+ "http://purl.org/dc/elements/1.1/description": "A single or record single is a type of release, typically a recording of two tracks. In most cases, the single is a song that is released separately from an album, but it can still appear on an album.",
2141
+ "http://purl.org/dc/elements/1.1/title": "single",
2142
+ "http://purl.org/ontology/mo/level": "1",
2143
+ isDefinedBy: "http://purl.org/ontology/mo/",
2144
+ type: "http://purl.org/ontology/mo/ReleaseType"
2143
2145
  term :soundtrack,
2144
- "http://purl.org/dc/elements/1.1/description": "\n Sound recording on a narrow strip of a motion picture film.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze,
2145
- "http://purl.org/dc/elements/1.1/title": "soundtrack".freeze,
2146
- "http://purl.org/ontology/mo/level": "1".freeze,
2147
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2148
- type: "http://purl.org/ontology/mo/ReleaseType".freeze
2146
+ "http://purl.org/dc/elements/1.1/description": "\n Sound recording on a narrow strip of a motion picture film.\n This is a type of MusicalManifestation defined by the musical industry.\n ",
2147
+ "http://purl.org/dc/elements/1.1/title": "soundtrack",
2148
+ "http://purl.org/ontology/mo/level": "1",
2149
+ isDefinedBy: "http://purl.org/ontology/mo/",
2150
+ type: "http://purl.org/ontology/mo/ReleaseType"
2149
2151
  term :spokenword,
2150
- "http://purl.org/dc/elements/1.1/description": "\n Spoken word is a form of music or artistic performance in which lyrics, poetry, or stories are spoken rather than sung. \n Spoken-word is often done with a musical background, but emphasis is kept on the speaker.\n This is a type of MusicalManifestation defined by the musical industry.\n ".freeze,
2151
- "http://purl.org/dc/elements/1.1/title": "spoken word".freeze,
2152
- "http://purl.org/ontology/mo/level": "1".freeze,
2153
- isDefinedBy: "http://purl.org/ontology/mo/".freeze,
2154
- type: "http://purl.org/ontology/mo/ReleaseType".freeze
2152
+ "http://purl.org/dc/elements/1.1/description": "\n Spoken word is a form of music or artistic performance in which lyrics, poetry, or stories are spoken rather than sung. \n Spoken-word is often done with a musical background, but emphasis is kept on the speaker.\n This is a type of MusicalManifestation defined by the musical industry.\n ",
2153
+ "http://purl.org/dc/elements/1.1/title": "spoken word",
2154
+ "http://purl.org/ontology/mo/level": "1",
2155
+ isDefinedBy: "http://purl.org/ontology/mo/",
2156
+ type: "http://purl.org/ontology/mo/ReleaseType"
2155
2157
  end
2156
2158
  end