rdf-vocab 3.1.2 → 3.1.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +69 -45
  4. data/VERSION +1 -1
  5. data/lib/rdf/vocab.rb +60 -40
  6. data/lib/rdf/vocab/acl.rb +104 -61
  7. data/lib/rdf/vocab/as.rb +556 -91
  8. data/lib/rdf/vocab/bf2.rb +1791 -475
  9. data/lib/rdf/vocab/bibframe.rb +1 -2
  10. data/lib/rdf/vocab/bibo.rb +616 -124
  11. data/lib/rdf/vocab/cc.rb +125 -48
  12. data/lib/rdf/vocab/cert.rb +68 -1
  13. data/lib/rdf/vocab/cnt.rb +79 -1
  14. data/lib/rdf/vocab/crm.rb +1543 -776
  15. data/lib/rdf/vocab/datacite.rb +1 -1
  16. data/lib/rdf/vocab/dbo.rb +10463 -1
  17. data/lib/rdf/vocab/dc.rb +485 -99
  18. data/lib/rdf/vocab/dc11.rb +93 -31
  19. data/lib/rdf/vocab/dcat.rb +236 -88
  20. data/lib/rdf/vocab/dcmitype.rb +63 -13
  21. data/lib/rdf/vocab/disco.rb +286 -59
  22. data/lib/rdf/vocab/doap.rb +175 -1
  23. data/lib/rdf/vocab/dwc.rb +941 -189
  24. data/lib/rdf/vocab/earl.rb +324 -0
  25. data/lib/rdf/vocab/ebucore.rb +7255 -2184
  26. data/lib/rdf/vocab/edm.rb +202 -76
  27. data/lib/rdf/vocab/exif.rb +650 -1
  28. data/lib/rdf/vocab/extensions.rb +257 -203
  29. data/lib/rdf/vocab/fcrepo4.rb +398 -22
  30. data/lib/rdf/vocab/foaf.rb +380 -76
  31. data/lib/rdf/vocab/geo.rb +47 -110
  32. data/lib/rdf/vocab/geojson.rb +82 -17
  33. data/lib/rdf/vocab/geonames.rb +1508 -1351
  34. data/lib/rdf/vocab/gr.rb +861 -565
  35. data/lib/rdf/vocab/gs1.rb +1597 -1
  36. data/lib/rdf/vocab/ht.rb +204 -41
  37. data/lib/rdf/vocab/hydra.rb +335 -60
  38. data/lib/rdf/vocab/iana.rb +301 -114
  39. data/lib/rdf/vocab/ical.rb +534 -121
  40. data/lib/rdf/vocab/identifiers.rb +459 -499
  41. data/lib/rdf/vocab/iiif.rb +161 -26
  42. data/lib/rdf/vocab/jsonld.rb +179 -53
  43. data/lib/rdf/vocab/ldp.rb +130 -1
  44. data/lib/rdf/vocab/lrmi.rb +85 -17
  45. data/lib/rdf/vocab/ma.rb +460 -80
  46. data/lib/rdf/vocab/mads.rb +610 -22
  47. data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +813 -4
  48. data/lib/rdf/vocab/mo.rb +1115 -540
  49. data/lib/rdf/vocab/mods.rb +635 -124
  50. data/lib/rdf/vocab/nfo.rb +1 -1
  51. data/lib/rdf/vocab/oa.rb +343 -73
  52. data/lib/rdf/vocab/og.rb +100 -1
  53. data/lib/rdf/vocab/ogc.rb +42 -9
  54. data/lib/rdf/vocab/ore.rb +69 -14
  55. data/lib/rdf/vocab/org.rb +235 -47
  56. data/lib/rdf/vocab/pcdm.rb +58 -34
  57. data/lib/rdf/vocab/pplan.rb +21 -136
  58. data/lib/rdf/vocab/premis.rb +1171 -779
  59. data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +156 -2
  60. data/lib/rdf/vocab/prov.rb +700 -107
  61. data/lib/rdf/vocab/ptr.rb +172 -37
  62. data/lib/rdf/vocab/rightsstatements.rb +17 -13
  63. data/lib/rdf/vocab/rsa.rb +30 -1
  64. data/lib/rdf/vocab/rss.rb +52 -11
  65. data/lib/rdf/vocab/schema.rb +14970 -3993
  66. data/lib/rdf/vocab/schemas.rb +27066 -0
  67. data/lib/rdf/vocab/sd.rb +372 -0
  68. data/lib/rdf/vocab/sh.rb +919 -184
  69. data/lib/rdf/vocab/sioc.rb +498 -98
  70. data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +46 -9
  71. data/lib/rdf/vocab/sioctypes.rb +434 -0
  72. data/lib/rdf/vocab/skos.rb +160 -44
  73. data/lib/rdf/vocab/skosxl.rb +40 -11
  74. data/lib/rdf/vocab/v.rb +323 -37
  75. data/lib/rdf/vocab/vcard.rb +625 -119
  76. data/lib/rdf/vocab/vmd.rb +323 -37
  77. data/lib/rdf/vocab/void.rb +147 -27
  78. data/lib/rdf/vocab/vs.rb +23 -5
  79. data/lib/rdf/vocab/wdrs.rb +112 -23
  80. data/lib/rdf/vocab/wot.rb +96 -19
  81. data/lib/rdf/vocab/xhtml.rb +2 -1
  82. data/lib/rdf/vocab/xhv.rb +422 -201
  83. data/lib/rdf/vocab/xkos.rb +156 -7
  84. data/spec/extensions_spec.rb +68 -0
  85. data/spec/vocab_spec.rb +10 -0
  86. metadata +20 -11
  87. data/lib/rdf/vocab/sioct.rb +0 -277
@@ -5,29 +5,314 @@ require 'rdf'
5
5
  module RDF::Vocab
6
6
  # @!parse
7
7
  # # Vocabulary for <http://id.loc.gov/vocabulary/identifiers/>
8
+ # #
9
+ # # Standard Identifier Schemes
10
+ # #
11
+ # # Standard Identifiers Scheme lists standard number or code systems and assigns a URI to each database or publication that defines or contains the identifiers. The purpose of these source codes is to enable the type of standard numbers or codes in resource descriptions to be indicated by URI.
8
12
  # class Identifiers < RDF::StrictVocabulary
13
+ # # Generic Identifier property. It is expected that one will use one of its many subproperties.
14
+ # # @return [RDF::Vocabulary::Term]
15
+ # attr_reader :id
16
+ #
17
+ # # @return [RDF::Vocabulary::Term]
18
+ # attr_reader :agrovoc
19
+ #
20
+ # # @return [RDF::Vocabulary::Term]
21
+ # attr_reader :allmovie
22
+ #
23
+ # # @return [RDF::Vocabulary::Term]
24
+ # attr_reader :allmusic
25
+ #
26
+ # # @return [RDF::Vocabulary::Term]
27
+ # attr_reader :allocine
28
+ #
29
+ # # @return [RDF::Vocabulary::Term]
30
+ # attr_reader :amnbo
31
+ #
32
+ # # @return [RDF::Vocabulary::Term]
33
+ # attr_reader :ansi
34
+ #
35
+ # # @return [RDF::Vocabulary::Term]
36
+ # attr_reader :artsy
37
+ #
38
+ # # @return [RDF::Vocabulary::Term]
39
+ # attr_reader :bdusc
40
+ #
41
+ # # @return [RDF::Vocabulary::Term]
42
+ # attr_reader :bfi
43
+ #
44
+ # # @return [RDF::Vocabulary::Term]
45
+ # attr_reader :bnfcg
46
+ #
47
+ # # @return [RDF::Vocabulary::Term]
48
+ # attr_reader :cantic
49
+ #
50
+ # # @return [RDF::Vocabulary::Term]
51
+ # attr_reader :cgndb
52
+ #
53
+ # # @return [RDF::Vocabulary::Term]
54
+ # attr_reader :danacode
55
+ #
56
+ # # @return [RDF::Vocabulary::Term]
57
+ # attr_reader :datoses
58
+ #
59
+ # # @return [RDF::Vocabulary::Term]
60
+ # attr_reader :discogs
61
+ #
62
+ # # @return [RDF::Vocabulary::Term]
63
+ # attr_reader :dkfilm
64
+ #
65
+ # # @return [RDF::Vocabulary::Term]
66
+ # attr_reader :doi
67
+ #
68
+ # # @return [RDF::Vocabulary::Term]
69
+ # attr_reader :ean
70
+ #
71
+ # # @return [RDF::Vocabulary::Term]
72
+ # attr_reader :eidr
73
+ #
74
+ # # @return [RDF::Vocabulary::Term]
75
+ # attr_reader :fast
76
+ #
77
+ # # @return [RDF::Vocabulary::Term]
78
+ # attr_reader :filmport
79
+ #
80
+ # # @return [RDF::Vocabulary::Term]
81
+ # attr_reader :findagr
82
+ #
83
+ # # @return [RDF::Vocabulary::Term]
84
+ # attr_reader :freebase
85
+ #
86
+ # # @return [RDF::Vocabulary::Term]
87
+ # attr_reader :gec
88
+ #
89
+ # # @return [RDF::Vocabulary::Term]
90
+ # attr_reader :geogndb
91
+ #
92
+ # # @return [RDF::Vocabulary::Term]
93
+ # attr_reader :geonames
94
+ #
95
+ # # @return [RDF::Vocabulary::Term]
96
+ # attr_reader :gettytgn
97
+ #
98
+ # # @return [RDF::Vocabulary::Term]
99
+ # attr_reader :gettyulan
100
+ #
101
+ # # @return [RDF::Vocabulary::Term]
102
+ # attr_reader :gnd
103
+ #
104
+ # # @return [RDF::Vocabulary::Term]
105
+ # attr_reader :gnis
106
+ #
107
+ # # @return [RDF::Vocabulary::Term]
108
+ # attr_reader :hdl
109
+ #
110
+ # # @return [RDF::Vocabulary::Term]
111
+ # attr_reader :ibdb
112
+ #
113
+ # # @return [RDF::Vocabulary::Term]
114
+ # attr_reader :idref
115
+ #
116
+ # # @return [RDF::Vocabulary::Term]
117
+ # attr_reader :imdb
118
+ #
119
+ # # @return [RDF::Vocabulary::Term]
120
+ # attr_reader :isan
121
+ #
122
+ # # @return [RDF::Vocabulary::Term]
123
+ # attr_reader :isbn
124
+ #
125
+ # # @return [RDF::Vocabulary::Term]
126
+ # attr_reader :isbnre
127
+ #
128
+ # # @return [RDF::Vocabulary::Term]
129
+ # attr_reader :isil
130
+ #
131
+ # # @return [RDF::Vocabulary::Term]
132
+ # attr_reader :ismn
133
+ #
134
+ # # @return [RDF::Vocabulary::Term]
135
+ # attr_reader :isni
136
+ #
137
+ # # @return [RDF::Vocabulary::Term]
138
+ # attr_reader :iso
139
+ #
140
+ # # @return [RDF::Vocabulary::Term]
141
+ # attr_reader :isrc
142
+ #
143
+ # # @return [RDF::Vocabulary::Term]
144
+ # attr_reader :issn
145
+ #
146
+ # # @return [RDF::Vocabulary::Term]
147
+ # attr_reader :istc
148
+ #
149
+ # # @return [RDF::Vocabulary::Term]
150
+ # attr_reader :iswc
151
+ #
152
+ # # @return [RDF::Vocabulary::Term]
153
+ # attr_reader :itar
154
+ #
155
+ # # @return [RDF::Vocabulary::Term]
156
+ # attr_reader :kinipo
157
+ #
158
+ # # @return [RDF::Vocabulary::Term]
159
+ # attr_reader :lccn
160
+ #
161
+ # # @return [RDF::Vocabulary::Term]
162
+ # attr_reader :lcmd
163
+ #
164
+ # # @return [RDF::Vocabulary::Term]
165
+ # attr_reader :libaus
166
+ #
167
+ # # @return [RDF::Vocabulary::Term]
168
+ # attr_reader :local
169
+ #
170
+ # # @return [RDF::Vocabulary::Term]
171
+ # attr_reader :moma
172
+ #
173
+ # # @return [RDF::Vocabulary::Term]
174
+ # attr_reader :munzing
175
+ #
176
+ # # @return [RDF::Vocabulary::Term]
177
+ # attr_reader :musicb
178
+ #
179
+ # # @return [RDF::Vocabulary::Term]
180
+ # attr_reader :natgazfid
181
+ #
182
+ # # @return [RDF::Vocabulary::Term]
183
+ # attr_reader :nga
184
+ #
185
+ # # @return [RDF::Vocabulary::Term]
186
+ # attr_reader :nipo
187
+ #
188
+ # # @return [RDF::Vocabulary::Term]
189
+ # attr_reader :nndb
190
+ #
191
+ # # @return [RDF::Vocabulary::Term]
192
+ # attr_reader :npg
193
+ #
194
+ # # @return [RDF::Vocabulary::Term]
195
+ # attr_reader :odnb
196
+ #
197
+ # # @return [RDF::Vocabulary::Term]
198
+ # attr_reader :opensm
199
+ #
200
+ # # @return [RDF::Vocabulary::Term]
201
+ # attr_reader :orcid
202
+ #
203
+ # # @return [RDF::Vocabulary::Term]
204
+ # attr_reader :oxforddnb
205
+ #
206
+ # # @return [RDF::Vocabulary::Term]
207
+ # attr_reader :porthu
208
+ #
209
+ # # @return [RDF::Vocabulary::Term]
210
+ # attr_reader :rbmsbt
211
+ #
212
+ # # @return [RDF::Vocabulary::Term]
213
+ # attr_reader :rbmsgt
214
+ #
215
+ # # @return [RDF::Vocabulary::Term]
216
+ # attr_reader :rbmspe
217
+ #
218
+ # # @return [RDF::Vocabulary::Term]
219
+ # attr_reader :rbmsppe
220
+ #
221
+ # # @return [RDF::Vocabulary::Term]
222
+ # attr_reader :rbmspt
223
+ #
224
+ # # @return [RDF::Vocabulary::Term]
225
+ # attr_reader :rbmsrd
226
+ #
227
+ # # @return [RDF::Vocabulary::Term]
228
+ # attr_reader :rbmste
229
+ #
230
+ # # @return [RDF::Vocabulary::Term]
231
+ # attr_reader :rid
232
+ #
233
+ # # @return [RDF::Vocabulary::Term]
234
+ # attr_reader :rkda
235
+ #
236
+ # # @return [RDF::Vocabulary::Term]
237
+ # attr_reader :saam
238
+ #
239
+ # # @return [RDF::Vocabulary::Term]
240
+ # attr_reader :scholaru
241
+ #
242
+ # # @return [RDF::Vocabulary::Term]
243
+ # attr_reader :scope
244
+ #
245
+ # # @return [RDF::Vocabulary::Term]
246
+ # attr_reader :scopus
247
+ #
248
+ # # @return [RDF::Vocabulary::Term]
249
+ # attr_reader :sici
250
+ #
251
+ # # @return [RDF::Vocabulary::Term]
252
+ # attr_reader :spotify
253
+ #
254
+ # # @return [RDF::Vocabulary::Term]
255
+ # attr_reader :sprfbsb
256
+ #
257
+ # # @return [RDF::Vocabulary::Term]
258
+ # attr_reader :sprfbsk
259
+ #
260
+ # # @return [RDF::Vocabulary::Term]
261
+ # attr_reader :sprfcbb
262
+ #
263
+ # # @return [RDF::Vocabulary::Term]
264
+ # attr_reader :sprfcfb
265
+ #
266
+ # # @return [RDF::Vocabulary::Term]
267
+ # attr_reader :sprfhoc
268
+ #
269
+ # # @return [RDF::Vocabulary::Term]
270
+ # attr_reader :sprfoly
271
+ #
272
+ # # @return [RDF::Vocabulary::Term]
273
+ # attr_reader :sprfpfb
274
+ #
275
+ # # @return [RDF::Vocabulary::Term]
276
+ # attr_reader :strn
277
+ #
278
+ # # @return [RDF::Vocabulary::Term]
279
+ # attr_reader :svfilm
280
+ #
281
+ # # @return [RDF::Vocabulary::Term]
282
+ # attr_reader :tatearid
283
+ #
284
+ # # @return [RDF::Vocabulary::Term]
285
+ # attr_reader :theatr
286
+ #
287
+ # # @return [RDF::Vocabulary::Term]
288
+ # attr_reader :trove
289
+ #
290
+ # # @return [RDF::Vocabulary::Term]
291
+ # attr_reader :upc
292
+ #
293
+ # # @return [RDF::Vocabulary::Term]
294
+ # attr_reader :uri
295
+ #
296
+ # # @return [RDF::Vocabulary::Term]
297
+ # attr_reader :urn
298
+ #
299
+ # # @return [RDF::Vocabulary::Term]
300
+ # attr_reader :viaf
301
+ #
302
+ # # @return [RDF::Vocabulary::Term]
303
+ # attr_reader :wikidata
304
+ #
305
+ # # @return [RDF::Vocabulary::Term]
306
+ # attr_reader :wndla
307
+ #
9
308
  # end
10
- class Identifiers < RDF::StrictVocabulary("http://id.loc.gov/vocabulary/identifiers/")
309
+ Identifiers = Class.new(RDF::StrictVocabulary("http://id.loc.gov/vocabulary/identifiers/")) do
11
310
 
12
311
  # Ontology definition
13
312
  ontology :"http://id.loc.gov/vocabulary/identifiers/",
14
- comment: %(Standard Identifiers Scheme lists standard number or code systems and assigns a URI to each database or publication that defines or contains the identifiers. The purpose of these source codes is to enable the type of standard numbers or codes in resource descriptions to be indicated by URI.).freeze,
15
- hasTopConcept: ["identifiers:agorha".freeze, "identifiers:agrovoc".freeze, "identifiers:allmovie".freeze, "identifiers:allmusic".freeze, "identifiers:allocine".freeze, "identifiers:amnbo".freeze, "identifiers:ansi".freeze, "identifiers:artsy".freeze, "identifiers:artukart".freeze, "identifiers:artukaw".freeze, "identifiers:balat".freeze, "identifiers:bbcth".freeze, "identifiers:bdusc".freeze, "identifiers:belvku".freeze, "identifiers:belvwrk".freeze, "identifiers:benezit".freeze, "identifiers:bfi".freeze, "identifiers:bigenc".freeze, "identifiers:bnfcg".freeze, "identifiers:bpn".freeze, "identifiers:cana".freeze, "identifiers:cantic".freeze, "identifiers:cbwpid".freeze, "identifiers:cerl".freeze, "identifiers:cgndb".freeze, "identifiers:clara".freeze, "identifiers:cnbksy".freeze, "identifiers:csfdcz".freeze, "identifiers:danacode".freeze, "identifiers:datoses".freeze, "identifiers:discogs".freeze, "identifiers:dkfilm".freeze, "identifiers:doi".freeze, "identifiers:dpb".freeze, "identifiers:ean".freeze, "identifiers:eidr".freeze, "identifiers:emlo".freeze, "identifiers:fast".freeze, "identifiers:fidecp".freeze, "identifiers:filmaff".freeze, "identifiers:filmport".freeze, "identifiers:findagr".freeze, "identifiers:fisa".freeze, "identifiers:freebase".freeze, "identifiers:gec".freeze, "identifiers:geogndb".freeze, "identifiers:geonames".freeze, "identifiers:gettyart".freeze, "identifiers:gettyobj".freeze, "identifiers:gettytgn".freeze, "identifiers:gettyulan".freeze, "identifiers:gnd".freeze, "identifiers:gnis".freeze, "identifiers:goodra".freeze, "identifiers:gtaa".freeze, "identifiers:gtin-14".freeze, "identifiers:hdl".freeze, "identifiers:iaafa".freeze, "identifiers:ibdb".freeze, "identifiers:idref".freeze, "identifiers:imdb".freeze, "identifiers:isan".freeze, "identifiers:isbn".freeze, "identifiers:isbn-a".freeze, "identifiers:isbnre".freeze, "identifiers:isbnsbn".freeze, "identifiers:isfdbau".freeze, "identifiers:isfdbaw".freeze, "identifiers:isfdbma".freeze, "identifiers:isfdbpu".freeze, "identifiers:isil".freeze, "identifiers:ismn".freeze, "identifiers:isni".freeze, "identifiers:iso".freeze, "identifiers:isrc".freeze, "identifiers:issn".freeze, "identifiers:issn-l".freeze, "identifiers:issue-number".freeze, "identifiers:istc".freeze, "identifiers:iswc".freeze, "identifiers:itar".freeze, "identifiers:kda".freeze, "identifiers:kdw".freeze, "identifiers:kinopo".freeze, "identifiers:lattes".freeze, "identifiers:lccn".freeze, "identifiers:lcmd".freeze, "identifiers:lei".freeze, "identifiers:libaus".freeze, "identifiers:local".freeze, "identifiers:matrix-number".freeze, "identifiers:mocofo".freeze, "identifiers:moma".freeze, "identifiers:morana".freeze, "identifiers:moviemetf".freeze, "identifiers:moviemetr".freeze, "identifiers:munzing".freeze, "identifiers:muscl".freeze, "identifiers:music-plate".freeze, "identifiers:music-publisher".freeze, "identifiers:musicb".freeze, "identifiers:natgazfid".freeze, "identifiers:nga".freeze, "identifiers:ngva".freeze, "identifiers:ngvw".freeze, "identifiers:nipo".freeze, "identifiers:nndb".freeze, "identifiers:npg".freeze, "identifiers:odnb".freeze, "identifiers:ofdb".freeze, "identifiers:onix".freeze, "identifiers:opensm".freeze, "identifiers:orcid".freeze, "identifiers:oxforddnb".freeze, "identifiers:permid".freeze, "identifiers:picnypl".freeze, "identifiers:pnta".freeze, "identifiers:porthu".freeze, "identifiers:prabook".freeze, "identifiers:rbmsbt".freeze, "identifiers:rbmsgt".freeze, "identifiers:rbmspe".freeze, "identifiers:rbmsppe".freeze, "identifiers:rbmspt".freeze, "identifiers:rbmsrd".freeze, "identifiers:rbmste".freeze, "identifiers:rid".freeze, "identifiers:rkda".freeze, "identifiers:saam".freeze, "identifiers:scholaru".freeze, "identifiers:scope".freeze, "identifiers:scopus".freeze, "identifiers:sici".freeze, "identifiers:snac".freeze, "identifiers:spotify".freeze, "identifiers:sprfbsb".freeze, "identifiers:sprfbsk".freeze, "identifiers:sprfcbb".freeze, "identifiers:sprfcfb".freeze, "identifiers:sprfhoc".freeze, "identifiers:sprfoly".freeze, "identifiers:sprfpfb".freeze, "identifiers:stock-number".freeze, "identifiers:strn".freeze, "identifiers:svfilm".freeze, "identifiers:tatearid".freeze, "identifiers:theatr".freeze, "identifiers:trove".freeze, "identifiers:upc".freeze, "identifiers:uri".freeze, "identifiers:urn".freeze, "identifiers:vd16".freeze, "identifiers:vd17".freeze, "identifiers:vd18".freeze, "identifiers:vgmdb".freeze, "identifiers:viaf".freeze, "identifiers:videorecording-identifier".freeze, "identifiers:wikidata".freeze, "identifiers:wndla".freeze, "identifiers:xgamea".freeze],
16
- label: "Standard Identifiers Scheme".freeze,
17
- "mads:adminMetadata": term(
18
- "http://id.loc.gov/ontologies/RecordInfo#recordChangeDate": "2018-08-21T15:40:36.337088-04:00".freeze,
19
- "http://id.loc.gov/ontologies/RecordInfo#recordContentSource": "http://id.loc.gov/vocabulary/organizations/dlcmrc".freeze,
20
- "http://id.loc.gov/ontologies/RecordInfo#recordStatus": "modified".freeze,
21
- type: "http://id.loc.gov/ontologies/RecordInfo#RecordInfo".freeze
22
- ),
23
- "mads:hasTopMemberOfMADSScheme": ["identifiers:agorha".freeze, "identifiers:agrovoc".freeze, "identifiers:allmovie".freeze, "identifiers:allmusic".freeze, "identifiers:allocine".freeze, "identifiers:amnbo".freeze, "identifiers:ansi".freeze, "identifiers:artsy".freeze, "identifiers:artukart".freeze, "identifiers:artukaw".freeze, "identifiers:balat".freeze, "identifiers:bbcth".freeze, "identifiers:bdusc".freeze, "identifiers:belvku".freeze, "identifiers:belvwrk".freeze, "identifiers:benezit".freeze, "identifiers:bfi".freeze, "identifiers:bigenc".freeze, "identifiers:bnfcg".freeze, "identifiers:bpn".freeze, "identifiers:cana".freeze, "identifiers:cantic".freeze, "identifiers:cbwpid".freeze, "identifiers:cerl".freeze, "identifiers:cgndb".freeze, "identifiers:clara".freeze, "identifiers:cnbksy".freeze, "identifiers:csfdcz".freeze, "identifiers:danacode".freeze, "identifiers:datoses".freeze, "identifiers:discogs".freeze, "identifiers:dkfilm".freeze, "identifiers:doi".freeze, "identifiers:dpb".freeze, "identifiers:ean".freeze, "identifiers:eidr".freeze, "identifiers:emlo".freeze, "identifiers:fast".freeze, "identifiers:fidecp".freeze, "identifiers:filmaff".freeze, "identifiers:filmport".freeze, "identifiers:findagr".freeze, "identifiers:fisa".freeze, "identifiers:freebase".freeze, "identifiers:gec".freeze, "identifiers:geogndb".freeze, "identifiers:geonames".freeze, "identifiers:gettyart".freeze, "identifiers:gettyobj".freeze, "identifiers:gettytgn".freeze, "identifiers:gettyulan".freeze, "identifiers:gnd".freeze, "identifiers:gnis".freeze, "identifiers:goodra".freeze, "identifiers:gtaa".freeze, "identifiers:gtin-14".freeze, "identifiers:hdl".freeze, "identifiers:iaafa".freeze, "identifiers:ibdb".freeze, "identifiers:idref".freeze, "identifiers:imdb".freeze, "identifiers:isan".freeze, "identifiers:isbn".freeze, "identifiers:isbn-a".freeze, "identifiers:isbnre".freeze, "identifiers:isbnsbn".freeze, "identifiers:isfdbau".freeze, "identifiers:isfdbaw".freeze, "identifiers:isfdbma".freeze, "identifiers:isfdbpu".freeze, "identifiers:isil".freeze, "identifiers:ismn".freeze, "identifiers:isni".freeze, "identifiers:iso".freeze, "identifiers:isrc".freeze, "identifiers:issn".freeze, "identifiers:issn-l".freeze, "identifiers:issue-number".freeze, "identifiers:istc".freeze, "identifiers:iswc".freeze, "identifiers:itar".freeze, "identifiers:kda".freeze, "identifiers:kdw".freeze, "identifiers:kinopo".freeze, "identifiers:lattes".freeze, "identifiers:lccn".freeze, "identifiers:lcmd".freeze, "identifiers:lei".freeze, "identifiers:libaus".freeze, "identifiers:local".freeze, "identifiers:matrix-number".freeze, "identifiers:mocofo".freeze, "identifiers:moma".freeze, "identifiers:morana".freeze, "identifiers:moviemetf".freeze, "identifiers:moviemetr".freeze, "identifiers:munzing".freeze, "identifiers:muscl".freeze, "identifiers:music-plate".freeze, "identifiers:music-publisher".freeze, "identifiers:musicb".freeze, "identifiers:natgazfid".freeze, "identifiers:nga".freeze, "identifiers:ngva".freeze, "identifiers:ngvw".freeze, "identifiers:nipo".freeze, "identifiers:nndb".freeze, "identifiers:npg".freeze, "identifiers:odnb".freeze, "identifiers:ofdb".freeze, "identifiers:onix".freeze, "identifiers:opensm".freeze, "identifiers:orcid".freeze, "identifiers:oxforddnb".freeze, "identifiers:permid".freeze, "identifiers:picnypl".freeze, "identifiers:pnta".freeze, "identifiers:porthu".freeze, "identifiers:prabook".freeze, "identifiers:rbmsbt".freeze, "identifiers:rbmsgt".freeze, "identifiers:rbmspe".freeze, "identifiers:rbmsppe".freeze, "identifiers:rbmspt".freeze, "identifiers:rbmsrd".freeze, "identifiers:rbmste".freeze, "identifiers:rid".freeze, "identifiers:rkda".freeze, "identifiers:saam".freeze, "identifiers:scholaru".freeze, "identifiers:scope".freeze, "identifiers:scopus".freeze, "identifiers:sici".freeze, "identifiers:snac".freeze, "identifiers:spotify".freeze, "identifiers:sprfbsb".freeze, "identifiers:sprfbsk".freeze, "identifiers:sprfcbb".freeze, "identifiers:sprfcfb".freeze, "identifiers:sprfhoc".freeze, "identifiers:sprfoly".freeze, "identifiers:sprfpfb".freeze, "identifiers:stock-number".freeze, "identifiers:strn".freeze, "identifiers:svfilm".freeze, "identifiers:tatearid".freeze, "identifiers:theatr".freeze, "identifiers:trove".freeze, "identifiers:upc".freeze, "identifiers:uri".freeze, "identifiers:urn".freeze, "identifiers:vd16".freeze, "identifiers:vd17".freeze, "identifiers:vd18".freeze, "identifiers:vgmdb".freeze, "identifiers:viaf".freeze, "identifiers:videorecording-identifier".freeze, "identifiers:wikidata".freeze, "identifiers:wndla".freeze, "identifiers:xgamea".freeze],
24
- "skos:changeNote": term(
25
- "http://purl.org/vocab/changeset/schema#changeReason": "modified".freeze,
26
- "http://purl.org/vocab/changeset/schema#createdDate": "2018-08-21T15:40:36.337088-04:00".freeze,
27
- "http://purl.org/vocab/changeset/schema#creatorName": "http://id.loc.gov/vocabulary/organizations/dlcmrc".freeze,
28
- "http://purl.org/vocab/changeset/schema#subjectOfChange": "http://id.loc.gov/vocabulary/identifiers".freeze,
29
- type: "http://purl.org/vocab/changeset/schema#ChangeSet".freeze
30
- ),
313
+ comment: "Standard Identifiers Scheme lists standard number or code systems and assigns a URI to each database or publication that defines or contains the identifiers. The purpose of these source codes is to enable the type of standard numbers or codes in resource descriptions to be indicated by URI.".freeze,
314
+ label: "Standard Identifier Schemes".freeze,
315
+ "mads:hasMADSSchemeMember": ["identifiers:agrovoc".freeze, "identifiers:allmovie".freeze, "identifiers:allmusic".freeze, "identifiers:allocine".freeze, "identifiers:amnbo".freeze, "identifiers:ansi".freeze, "identifiers:artsy".freeze, "identifiers:bdusc".freeze, "identifiers:bfi".freeze, "identifiers:bnfcg".freeze, "identifiers:cantic".freeze, "identifiers:cgndb".freeze, "identifiers:danacode".freeze, "identifiers:datoses".freeze, "identifiers:discogs".freeze, "identifiers:dkfilm".freeze, "identifiers:doi".freeze, "identifiers:ean".freeze, "identifiers:eidr".freeze, "identifiers:fast".freeze, "identifiers:filmport".freeze, "identifiers:findagr".freeze, "identifiers:freebase".freeze, "identifiers:gec".freeze, "identifiers:geogndb".freeze, "identifiers:geonames".freeze, "identifiers:gettytgn".freeze, "identifiers:gettyulan".freeze, "identifiers:gnd".freeze, "identifiers:gnis".freeze, "identifiers:gtin-14".freeze, "identifiers:hdl".freeze, "identifiers:ibdb".freeze, "identifiers:idref".freeze, "identifiers:imdb".freeze, "identifiers:isan".freeze, "identifiers:isbn".freeze, "identifiers:isbn-a".freeze, "identifiers:isbnre".freeze, "identifiers:isil".freeze, "identifiers:ismn".freeze, "identifiers:isni".freeze, "identifiers:iso".freeze, "identifiers:isrc".freeze, "identifiers:issn".freeze, "identifiers:issn-l".freeze, "identifiers:issue-number".freeze, "identifiers:istc".freeze, "identifiers:iswc".freeze, "identifiers:itar".freeze, "identifiers:kinipo".freeze, "identifiers:lccn".freeze, "identifiers:lcmd".freeze, "identifiers:libaus".freeze, "identifiers:local".freeze, "identifiers:matrix-number".freeze, "identifiers:moma".freeze, "identifiers:munzing".freeze, "identifiers:music-plate".freeze, "identifiers:music-publisher".freeze, "identifiers:musicb".freeze, "identifiers:natgazfid".freeze, "identifiers:nga".freeze, "identifiers:nipo".freeze, "identifiers:nndb".freeze, "identifiers:npg".freeze, "identifiers:odnb".freeze, "identifiers:opensm".freeze, "identifiers:orcid".freeze, "identifiers:oxforddnb".freeze, "identifiers:porthu".freeze, "identifiers:rbmsbt".freeze, "identifiers:rbmsgt".freeze, "identifiers:rbmspe".freeze, "identifiers:rbmsppe".freeze, "identifiers:rbmspt".freeze, "identifiers:rbmsrd".freeze, "identifiers:rbmste".freeze, "identifiers:rid".freeze, "identifiers:rkda".freeze, "identifiers:saam".freeze, "identifiers:scholaru".freeze, "identifiers:scope".freeze, "identifiers:scopus".freeze, "identifiers:sici".freeze, "identifiers:spotify".freeze, "identifiers:sprfbsb".freeze, "identifiers:sprfbsk".freeze, "identifiers:sprfcbb".freeze, "identifiers:sprfcfb".freeze, "identifiers:sprfhoc".freeze, "identifiers:sprfoly".freeze, "identifiers:sprfpfb".freeze, "identifiers:stock-number".freeze, "identifiers:strn".freeze, "identifiers:svfilm".freeze, "identifiers:tatearid".freeze, "identifiers:theatr".freeze, "identifiers:trove".freeze, "identifiers:upc".freeze, "identifiers:uri".freeze, "identifiers:urn".freeze, "identifiers:viaf".freeze, "identifiers:videorecording-identifier".freeze, "identifiers:wikidata".freeze, "identifiers:wndla".freeze],
31
316
  type: ["mads:MADSScheme".freeze, "skos:ConceptScheme".freeze]
32
317
 
33
318
  # Property definitions
@@ -37,645 +322,320 @@ module RDF::Vocab
37
322
  type: "rdf:Property".freeze
38
323
 
39
324
  # Extra definitions
40
- term :agorha,
41
- "mads:authoritativeLabel": "AGORHA (Accès Global et Organisé aux Ressources en Histoire de l'Art)".freeze,
42
- prefLabel: "AGORHA (Accès Global et Organisé aux Ressources en Histoire de l'Art)".freeze,
43
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
44
325
  term :agrovoc,
45
- "mads:authoritativeLabel": "AGROVOC multilingual agricultural thesaurus (Rome: APIMONDIA)".freeze,
46
- prefLabel: "AGROVOC multilingual agricultural thesaurus (Rome: APIMONDIA)".freeze,
47
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
326
+ "mads:authoritativeLabel": "AGROVOC multilingual agricultural thesaurus".freeze,
327
+ type: "mads:Authority".freeze
48
328
  term :allmovie,
49
329
  "mads:authoritativeLabel": "AllMovie".freeze,
50
- prefLabel: "AllMovie".freeze,
51
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
330
+ type: "mads:Authority".freeze
52
331
  term :allmusic,
53
332
  "mads:authoritativeLabel": "AllMusic".freeze,
54
- prefLabel: "AllMusic".freeze,
55
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
333
+ type: "mads:Authority".freeze
56
334
  term :allocine,
57
335
  "mads:authoritativeLabel": "AlloCiné".freeze,
58
- prefLabel: "AlloCiné".freeze,
59
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
336
+ type: "mads:Authority".freeze
60
337
  term :amnbo,
61
338
  "mads:authoritativeLabel": "American National Biography Online".freeze,
62
- prefLabel: "American National Biography Online".freeze,
63
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
339
+ type: "mads:Authority".freeze
64
340
  term :ansi,
65
341
  "mads:authoritativeLabel": "American National Standards Institute and National Information Standards Organisation number for an ANSI or ANSI/NISO standard".freeze,
66
- prefLabel: "American National Standards Institute and National Information Standards Organisation number for an ANSI or ANSI/NISO standard".freeze,
67
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
342
+ type: "mads:Authority".freeze
68
343
  term :artsy,
69
344
  "mads:authoritativeLabel": "Artsy".freeze,
70
- prefLabel: "Artsy".freeze,
71
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
72
- term :artukart,
73
- "mads:authoritativeLabel": "Art UK Artists".freeze,
74
- prefLabel: "Art UK Artists".freeze,
75
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
76
- term :artukaw,
77
- "mads:authoritativeLabel": "Art UK Artworks".freeze,
78
- prefLabel: "Art UK Artworks".freeze,
79
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
80
- term :balat,
81
- "mads:authoritativeLabel": "BALaT (Belgian Art Links and Tools) People & Institutions".freeze,
82
- prefLabel: "BALaT (Belgian Art Links and Tools) People & Institutions".freeze,
83
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
84
- term :bbcth,
85
- "mads:authoritativeLabel": "BBC Things".freeze,
86
- prefLabel: "BBC Things".freeze,
87
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
345
+ type: "mads:Authority".freeze
88
346
  term :bdusc,
89
- "mads:authoritativeLabel": "Biographical Directory of the United States Congress (United States Congress)".freeze,
90
- prefLabel: "Biographical Directory of the United States Congress (United States Congress)".freeze,
91
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
92
- term :belvku,
93
- "mads:authoritativeLabel": "Belvedere Künstler".freeze,
94
- prefLabel: "Belvedere Künstler".freeze,
95
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
96
- term :belvwrk,
97
- "mads:authoritativeLabel": "Belvedere Werke".freeze,
98
- prefLabel: "Belvedere Werke".freeze,
99
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
100
- term :benezit,
101
- "mads:authoritativeLabel": "Benezit Dictionary of Artists".freeze,
102
- prefLabel: "Benezit Dictionary of Artists".freeze,
103
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
347
+ "mads:authoritativeLabel": "Biographical Directory of the United States Congress".freeze,
348
+ type: "mads:Authority".freeze
104
349
  term :bfi,
105
350
  "mads:authoritativeLabel": "BFI - British Film Institute".freeze,
106
- prefLabel: "BFI - British Film Institute".freeze,
107
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
108
- term :bigenc,
109
- "mads:authoritativeLabel": "Ð\u0091олÑ\u008CÑ\u0088аÑ\u008F Ñ\u0080оÑ\u0081Ñ\u0081ийÑ\u0081каÑ\u008F Ñ\u008DнÑ\u0086иклопедиÑ\u008F = Bolʹshai︠a︡ rossiÄ­skai︠a︡ Ä\u0097nt︠s︡iklopedii︠a︡ (Great Russian Encyclopedia)".freeze,
110
- prefLabel: "Ð\u0091олÑ\u008CÑ\u0088аÑ\u008F Ñ\u0080оÑ\u0081Ñ\u0081ийÑ\u0081каÑ\u008F Ñ\u008DнÑ\u0086иклопедиÑ\u008F = Bolʹshai︠a︡ rossiÄ­skai︠a︡ Ä\u0097nt︠s︡iklopedii︠a︡ (Great Russian Encyclopedia)".freeze,
111
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
351
+ type: "mads:Authority".freeze
112
352
  term :bnfcg,
113
- "mads:authoritativeLabel": "BnF catalogue général (Paris: Bibliothèque nationale de France)".freeze,
114
- prefLabel: "BnF catalogue général (Paris: Bibliothèque nationale de France)".freeze,
115
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
116
- term :bpn,
117
- "mads:authoritativeLabel": "Biografisch Portaal van Nederland = Biography portal of the Netherlands".freeze,
118
- prefLabel: "Biografisch Portaal van Nederland = Biography portal of the Netherlands".freeze,
119
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
120
- term :cana,
121
- "mads:authoritativeLabel": "Canadiana Authorities (Library and Archives Canada)".freeze,
122
- prefLabel: "Canadiana Authorities (Library and Archives Canada)".freeze,
123
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
353
+ "mads:authoritativeLabel": "BnF catalogue général".freeze,
354
+ type: "mads:Authority".freeze
124
355
  term :cantic,
125
- "mads:authoritativeLabel": "CANTIC (Catàleg d'autoritats de noms i títols de Catalunya) (Biblioteca de Catalunya)".freeze,
126
- prefLabel: "CANTIC (Catàleg d'autoritats de noms i títols de Catalunya) (Biblioteca de Catalunya)".freeze,
127
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
128
- term :cbwpid,
129
- "mads:authoritativeLabel": "Collective Biographies of Women Persons ID".freeze,
130
- prefLabel: "Collective Biographies of Women Persons ID".freeze,
131
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
132
- term :cerl,
133
- "mads:authoritativeLabel": "CERL Thesaurus".freeze,
134
- prefLabel: "CERL Thesaurus".freeze,
135
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
356
+ "mads:authoritativeLabel": "CANTIC (Biblioteca de Catalunya)".freeze,
357
+ type: "mads:Authority".freeze
136
358
  term :cgndb,
137
- "mads:authoritativeLabel": "Canadian Geographical Names Database (Natural Resources Canada)".freeze,
138
- prefLabel: "Canadian Geographical Names Database (Natural Resources Canada)".freeze,
139
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
140
- term :clara,
141
- "mads:authoritativeLabel": "Clara: Database of Women Artists (National Museum of Women in the Arts)".freeze,
142
- prefLabel: "Clara: Database of Women Artists (National Museum of Women in the Arts)".freeze,
143
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
144
- term :cnbksy,
145
- "mads:authoritativeLabel": "Quan Guo Bao Kan Suo Yin (CNBKSY)".freeze,
146
- prefLabel: "Quan Guo Bao Kan Suo Yin (CNBKSY)".freeze,
147
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
148
- term :csfdcz,
149
- "mads:authoritativeLabel": "Cesko-Slovenská filmová databáze".freeze,
150
- prefLabel: "Cesko-Slovenská filmová databáze".freeze,
151
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
359
+ "mads:authoritativeLabel": "Canadian Geographical Names Database".freeze,
360
+ type: "mads:Authority".freeze
152
361
  term :danacode,
153
- "mads:authoritativeLabel": "Danacode (Bnei Brak, Israel: D.A.N.A. Systems)".freeze,
154
- prefLabel: "Danacode (Bnei Brak, Israel: D.A.N.A. Systems)".freeze,
155
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
362
+ "mads:authoritativeLabel": "Danacode".freeze,
363
+ type: "mads:Authority".freeze
156
364
  term :datoses,
157
- "mads:authoritativeLabel": "datos.bne.es (Biblioteca Nacional de España)".freeze,
158
- prefLabel: "datos.bne.es (Biblioteca Nacional de España)".freeze,
159
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
365
+ "mads:authoritativeLabel": "datos.bne.es".freeze,
366
+ type: "mads:Authority".freeze
160
367
  term :discogs,
161
368
  "mads:authoritativeLabel": "Discogs".freeze,
162
- prefLabel: "Discogs".freeze,
163
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
369
+ type: "mads:Authority".freeze
164
370
  term :dkfilm,
165
371
  "mads:authoritativeLabel": "Det Danske Filminstitut Filmdatabasen".freeze,
166
- prefLabel: "Det Danske Filminstitut Filmdatabasen".freeze,
167
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
372
+ type: "mads:Authority".freeze
168
373
  term :doi,
169
- "mads:authoritativeLabel": "Digital object identifier".freeze,
170
- prefLabel: "Digital object identifier".freeze,
171
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
172
- term :dpb,
173
- "mads:authoritativeLabel": "Dictionnaire des peintres belges".freeze,
174
- prefLabel: "Dictionnaire des peintres belges".freeze,
175
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
374
+ "mads:authoritativeLabel": "Digital Object Identifier".freeze,
375
+ type: "mads:Authority".freeze
176
376
  term :ean,
177
377
  "mads:authoritativeLabel": "International Article Number".freeze,
178
- prefLabel: "International Article Number".freeze,
179
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
378
+ type: "mads:Authority".freeze
180
379
  term :eidr,
181
380
  "mads:authoritativeLabel": "EIDR: Entertainment Identifier Registry".freeze,
182
- prefLabel: "EIDR: Entertainment Identifier Registry".freeze,
183
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
184
- term :emlo,
185
- "mads:authoritativeLabel": "Early Modern Letters Online".freeze,
186
- prefLabel: "Early Modern Letters Online".freeze,
187
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
381
+ type: "mads:Authority".freeze
188
382
  term :fast,
189
383
  "mads:authoritativeLabel": "FAST - Faceted Application of Subject Terminology".freeze,
190
- prefLabel: "FAST - Faceted Application of Subject Terminology".freeze,
191
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
192
- term :fidecp,
193
- "mads:authoritativeLabel": "Fide Chess Profile (World Chess Federation)".freeze,
194
- prefLabel: "Fide Chess Profile (World Chess Federation)".freeze,
195
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
196
- term :filmaff,
197
- "mads:authoritativeLabel": "Film Affinity".freeze,
198
- prefLabel: "Film Affinity".freeze,
199
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
384
+ type: "mads:Authority".freeze
200
385
  term :filmport,
201
386
  "mads:authoritativeLabel": "filmportal.de".freeze,
202
- prefLabel: "filmportal.de".freeze,
203
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
387
+ type: "mads:Authority".freeze
204
388
  term :findagr,
205
389
  "mads:authoritativeLabel": "Find a Grave".freeze,
206
- prefLabel: "Find a Grave".freeze,
207
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
208
- term :fisa,
209
- "mads:authoritativeLabel": "FIS Athlete".freeze,
210
- prefLabel: "FIS Athlete".freeze,
211
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
390
+ type: "mads:Authority".freeze
212
391
  term :freebase,
213
392
  "mads:authoritativeLabel": "Freebase".freeze,
214
- prefLabel: "Freebase".freeze,
215
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
393
+ type: "mads:Authority".freeze
216
394
  term :gec,
217
395
  "mads:authoritativeLabel": "Gran enciclopèdia catalana".freeze,
218
- prefLabel: "Gran enciclopèdia catalana".freeze,
219
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
396
+ type: "mads:Authority".freeze
220
397
  term :geogndb,
221
398
  "mads:authoritativeLabel": "Geographic Names Database".freeze,
222
- prefLabel: "Geographic Names Database".freeze,
223
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
399
+ type: "mads:Authority".freeze
224
400
  term :geonames,
225
401
  "mads:authoritativeLabel": "GeoNames".freeze,
226
- prefLabel: "GeoNames".freeze,
227
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
228
- term :gettyart,
229
- "mads:authoritativeLabel": "J. Paul Getty Museum Artists".freeze,
230
- prefLabel: "J. Paul Getty Museum Artists".freeze,
231
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
232
- term :gettyobj,
233
- "mads:authoritativeLabel": "J. Paul Getty Museum Objects".freeze,
234
- prefLabel: "J. Paul Getty Museum Objects".freeze,
235
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
402
+ type: "mads:Authority".freeze
236
403
  term :gettytgn,
237
- "mads:authoritativeLabel": "Getty Thesaurus of Geographic Names Online (J. Paul Getty Trust)".freeze,
238
- prefLabel: "Getty Thesaurus of Geographic Names Online (J. Paul Getty Trust)".freeze,
239
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
404
+ "mads:authoritativeLabel": "Getty Thesaurus of Geographic Names Online".freeze,
405
+ type: "mads:Authority".freeze
240
406
  term :gettyulan,
241
- "mads:authoritativeLabel": "Union List of Artist Names Online (J. Paul Getty Trust)".freeze,
242
- prefLabel: "Union List of Artist Names Online (J. Paul Getty Trust)".freeze,
243
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
407
+ "mads:authoritativeLabel": "Union List of Artist Names Online".freeze,
408
+ type: "mads:Authority".freeze
244
409
  term :gnd,
245
- "mads:authoritativeLabel": "Gemeinsame Normdatei (Leipzig: Deutsche Nationalbibliotheke)".freeze,
246
- prefLabel: "Gemeinsame Normdatei (Leipzig: Deutsche Nationalbibliotheke)".freeze,
247
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
410
+ "mads:authoritativeLabel": "Gemeinsame Normdatei".freeze,
411
+ type: "mads:Authority".freeze
248
412
  term :gnis,
249
- "mads:authoritativeLabel": "Geographic Names Information System (GNIS) (United States Geological Survey, Board on Geographic Names)".freeze,
250
- prefLabel: "Geographic Names Information System (GNIS) (United States Geological Survey, Board on Geographic Names)".freeze,
251
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
252
- term :goodra,
253
- "mads:authoritativeLabel": "Goodreads Author ID".freeze,
254
- prefLabel: "Goodreads Author ID".freeze,
255
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
256
- term :gtaa,
257
- "mads:authoritativeLabel": "Gemeenschappelijke Thesaurus Audiovisuele Archieven".freeze,
258
- prefLabel: "Gemeenschappelijke Thesaurus Audiovisuele Archieven".freeze,
259
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
413
+ "mads:authoritativeLabel": "Geographic Names Information System (United States Geological Survey, Board on Geographic Names)".freeze,
414
+ type: "mads:Authority".freeze
260
415
  term :"gtin-14",
261
- "mads:authoritativeLabel": "Global Trade Identification Number 14 (EAN/UCC-128 or ITF-14)".freeze,
262
- prefLabel: "Global Trade Identification Number 14 (EAN/UCC-128 or ITF-14)".freeze,
263
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
416
+ "mads:authoritativeLabel": "Global Trade Identification Number 14".freeze,
417
+ type: "mads:Authority".freeze
264
418
  term :hdl,
265
419
  "mads:authoritativeLabel": "Handle".freeze,
266
- prefLabel: "Handle".freeze,
267
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
268
- term :iaafa,
269
- "mads:authoritativeLabel": "IAAF Athletes (International Association of Athletics Federations)".freeze,
270
- prefLabel: "IAAF Athletes (International Association of Athletics Federations)".freeze,
271
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
420
+ type: "mads:Authority".freeze
272
421
  term :ibdb,
273
422
  "mads:authoritativeLabel": "IBDB - Internet Broadway Database".freeze,
274
- prefLabel: "IBDB - Internet Broadway Database".freeze,
275
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
423
+ type: "mads:Authority".freeze
276
424
  term :idref,
277
- "mads:authoritativeLabel": "IdRef: le référentiel des autorités Sudoc (L'agence bibliographique de l'enseignement supérieur ABES)".freeze,
278
- prefLabel: "IdRef: le référentiel des autorités Sudoc (L'agence bibliographique de l'enseignement supérieur ABES)".freeze,
279
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
425
+ "mads:authoritativeLabel": "IdRef: le référentiel des autorités Sudoc".freeze,
426
+ type: "mads:Authority".freeze
280
427
  term :imdb,
281
428
  "mads:authoritativeLabel": "IMDb - Internet Movie Database".freeze,
282
- prefLabel: "IMDb - Internet Movie Database".freeze,
283
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
429
+ type: "mads:Authority".freeze
284
430
  term :isan,
285
- "mads:authoritativeLabel": "International standard audiovisual number".freeze,
286
- prefLabel: "International standard audiovisual number".freeze,
287
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
431
+ "mads:authoritativeLabel": "International Standard Audiovisual Number".freeze,
432
+ type: "mads:Authority".freeze
288
433
  term :isbn,
289
- "mads:authoritativeLabel": "International sandard book number".freeze,
290
- prefLabel: "International sandard book number".freeze,
291
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
292
- term :"isbn-a",
293
- "mads:authoritativeLabel": "International Standard Book Number (the actionable ISBN)".freeze,
294
- prefLabel: "International Standard Book Number (the actionable ISBN)".freeze,
295
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
434
+ "mads:authoritativeLabel": "International Standard Book Number".freeze,
435
+ type: "mads:Authority".freeze
296
436
  term :isbnre,
297
- "mads:authoritativeLabel": "ISBN (International Standard Book Number) registrant element [Note: refers to the part of the ISBN number that is stable for a publisher's publications (the registrant element).]".freeze,
298
- prefLabel: "ISBN (International Standard Book Number) registrant element [Note: refers to the part of the ISBN number that is stable for a publisher's publications (the registrant element).]".freeze,
299
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
300
- term :isbnsbn,
301
- "mads:authoritativeLabel": "Identificativo SBN (Servizio bibliotecario nazionale)".freeze,
302
- prefLabel: "Identificativo SBN (Servizio bibliotecario nazionale)".freeze,
303
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
304
- term :isfdbau,
305
- "mads:authoritativeLabel": "ISFDB author directory (The Internet Speculative Fiction Database)".freeze,
306
- prefLabel: "ISFDB author directory (The Internet Speculative Fiction Database)".freeze,
307
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
308
- term :isfdbaw,
309
- "mads:authoritativeLabel": "ISFDB award directory (The Internet Speculative Fiction Database)".freeze,
310
- prefLabel: "ISFDB award directory (The Internet Speculative Fiction Database)".freeze,
311
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
312
- term :isfdbma,
313
- "mads:authoritativeLabel": "ISFDB magazine directory (The Internet Speculative Fiction Database)".freeze,
314
- prefLabel: "ISFDB magazine directory (The Internet Speculative Fiction Database)".freeze,
315
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
316
- term :isfdbpu,
317
- "mads:authoritativeLabel": "ISFDB publisher directory (The Internet Speculative Fiction Database)".freeze,
318
- prefLabel: "ISFDB publisher directory (The Internet Speculative Fiction Database)".freeze,
319
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
437
+ "mads:authoritativeLabel": "ISBN registrant element [Note: Refers to the part of the ISBN number that is stable for a publisher's publications (the registrant element).]".freeze,
438
+ type: "mads:Authority".freeze
320
439
  term :isil,
321
- "mads:authoritativeLabel": "ISIL (International Standard Identifier for Libraries and Related Organizations)".freeze,
322
- prefLabel: "ISIL (International Standard Identifier for Libraries and Related Organizations)".freeze,
323
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
440
+ "mads:authoritativeLabel": "ISIL".freeze,
441
+ type: "mads:Authority".freeze
324
442
  term :ismn,
325
- "mads:authoritativeLabel": "International standard music number".freeze,
326
- prefLabel: "International standard music number".freeze,
327
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
443
+ "mads:authoritativeLabel": "International Standard Music Number".freeze,
444
+ type: "mads:Authority".freeze
328
445
  term :isni,
329
- "mads:authoritativeLabel": "International standard name identifier".freeze,
330
- prefLabel: "International standard name identifier".freeze,
331
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
446
+ "mads:authoritativeLabel": "International Standard Name Identifier".freeze,
447
+ type: "mads:Authority".freeze
332
448
  term :iso,
333
449
  "mads:authoritativeLabel": "International Organization for Standardization number for an ISO standard".freeze,
334
- prefLabel: "International Organization for Standardization number for an ISO standard".freeze,
335
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
450
+ type: "mads:Authority".freeze
336
451
  term :isrc,
337
- "mads:authoritativeLabel": "International standard recording code".freeze,
338
- prefLabel: "International standard recording code".freeze,
339
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
452
+ "mads:authoritativeLabel": "International Standard Recording Code".freeze,
453
+ type: "mads:Authority".freeze
340
454
  term :issn,
341
- "mads:authoritativeLabel": "International standard serial number".freeze,
342
- prefLabel: "International standard serial number".freeze,
343
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
455
+ "mads:authoritativeLabel": "International Standard Serial Number".freeze,
456
+ type: "mads:Authority".freeze
344
457
  term :"issn-l",
345
- "mads:authoritativeLabel": "Linking International standard serial number".freeze,
346
- prefLabel: "Linking International standard serial number".freeze,
347
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
458
+ "mads:authoritativeLabel": "Linking International Standard Serial Number".freeze,
459
+ type: "mads:Authority".freeze
348
460
  term :"issue-number",
349
461
  "mads:authoritativeLabel": "Sound recording issue number".freeze,
350
- prefLabel: "Sound recording issue number".freeze,
351
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
462
+ type: "mads:Authority".freeze
352
463
  term :istc,
353
- "mads:authoritativeLabel": "International standard text code".freeze,
354
- prefLabel: "International standard text code".freeze,
355
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
464
+ "mads:authoritativeLabel": "International Standard Text Code".freeze,
465
+ type: "mads:Authority".freeze
356
466
  term :iswc,
357
- "mads:authoritativeLabel": "International standard musical work code".freeze,
358
- prefLabel: "International standard musical work code".freeze,
359
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
467
+ "mads:authoritativeLabel": "International Standard Musical Work Code".freeze,
468
+ type: "mads:Authority".freeze
360
469
  term :itar,
361
- "mads:authoritativeLabel": "ITAR (Importtjeneste og autoritetsregistre)".freeze,
362
- prefLabel: "ITAR (Importtjeneste og autoritetsregistre)".freeze,
363
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
364
- term :kda,
365
- "mads:authoritativeLabel": "Kunstindeks Danmark Artist".freeze,
366
- prefLabel: "Kunstindeks Danmark Artist".freeze,
367
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
368
- term :kdw,
369
- "mads:authoritativeLabel": "Kunstindeks Danmark Work".freeze,
370
- prefLabel: "Kunstindeks Danmark Work".freeze,
371
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
372
- term :kinopo,
470
+ "mads:authoritativeLabel": "ITAR".freeze,
471
+ type: "mads:Authority".freeze
472
+ term :kinipo,
373
473
  "mads:authoritativeLabel": "КиноПоиск = KinoPoisk".freeze,
374
- prefLabel: "КиноПоиск = KinoPoisk".freeze,
375
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
376
- term :lattes,
377
- "mads:authoritativeLabel": "Currículo Lattes".freeze,
378
- prefLabel: "Currículo Lattes".freeze,
379
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
474
+ type: "mads:Authority".freeze
380
475
  term :lccn,
381
- "mads:authoritativeLabel": "Library of Congress control number".freeze,
382
- prefLabel: "Library of Congress control number".freeze,
383
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
476
+ "mads:authoritativeLabel": "Library of Congress Control Number".freeze,
477
+ type: "mads:Authority".freeze
384
478
  term :lcmd,
385
- "mads:authoritativeLabel": "Library of Congress Manuscript Division field of history codes (Washington, DC: Library of Congress)".freeze,
386
- prefLabel: "Library of Congress Manuscript Division field of history codes (Washington, DC: Library of Congress)".freeze,
387
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
388
- term :lei,
389
- "mads:authoritativeLabel": "Legal entity identifier".freeze,
390
- prefLabel: "Legal entity identifier".freeze,
391
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
479
+ "mads:authoritativeLabel": "Library of Congress Manuscript Division".freeze,
480
+ type: "mads:Authority".freeze
392
481
  term :libaus,
393
- "mads:authoritativeLabel": "Libraries Australia (National Library of Australia)".freeze,
394
- prefLabel: "Libraries Australia (National Library of Australia)".freeze,
395
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
482
+ "mads:authoritativeLabel": "Libraries Australia".freeze,
483
+ type: "mads:Authority".freeze
396
484
  term :local,
397
485
  "mads:authoritativeLabel": "Locally defined identifier".freeze,
398
- prefLabel: "Locally defined identifier".freeze,
399
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
486
+ type: "mads:Authority".freeze
400
487
  term :"matrix-number",
401
488
  "mads:authoritativeLabel": "Sound recording matrix number".freeze,
402
- prefLabel: "Sound recording matrix number".freeze,
403
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
404
- term :mocofo,
405
- "mads:authoritativeLabel": "Musée d'Orsay Catalogue des oeuvres fiche oeuvre".freeze,
406
- prefLabel: "Musée d'Orsay Catalogue des oeuvres fiche oeuvre".freeze,
407
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
489
+ type: "mads:Authority".freeze
408
490
  term :moma,
409
- "mads:authoritativeLabel": "Museum of Modern Art (New York: Museum of Modern Art)".freeze,
410
- prefLabel: "Museum of Modern Art (New York: Museum of Modern Art)".freeze,
411
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
412
- term :morana,
413
- "mads:authoritativeLabel": "Musée d'Orsay Répertoire des artistes notice artiste".freeze,
414
- prefLabel: "Musée d'Orsay Répertoire des artistes notice artiste".freeze,
415
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
416
- term :moviemetf,
417
- "mads:authoritativeLabel": "MovieMeter Films".freeze,
418
- prefLabel: "MovieMeter Films".freeze,
419
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
420
- term :moviemetr,
421
- "mads:authoritativeLabel": "MovieMeter Regisseurs".freeze,
422
- prefLabel: "MovieMeter Regisseurs".freeze,
423
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
491
+ "mads:authoritativeLabel": "Museum of Modern Art".freeze,
492
+ type: "mads:Authority".freeze
424
493
  term :munzing,
425
- "mads:authoritativeLabel": "Munzinger (Munzinger Archiv)".freeze,
426
- prefLabel: "Munzinger (Munzinger Archiv)".freeze,
427
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
428
- term :muscl,
429
- "mads:authoritativeLabel": "Music Sales Classical".freeze,
430
- prefLabel: "Music Sales Classical".freeze,
431
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
494
+ "mads:authoritativeLabel": "Munzinger".freeze,
495
+ type: "mads:Authority".freeze
432
496
  term :"music-plate",
433
497
  "mads:authoritativeLabel": "Publisher's music plate number".freeze,
434
- prefLabel: "Publisher's music plate number".freeze,
435
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
498
+ type: "mads:Authority".freeze
436
499
  term :"music-publisher",
437
500
  "mads:authoritativeLabel": "Publisher-assigned music number".freeze,
438
- prefLabel: "Publisher-assigned music number".freeze,
439
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
501
+ type: "mads:Authority".freeze
440
502
  term :musicb,
441
503
  "mads:authoritativeLabel": "MusicBrainz".freeze,
442
- prefLabel: "MusicBrainz".freeze,
443
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
504
+ type: "mads:Authority".freeze
444
505
  term :natgazfid,
445
- "mads:authoritativeLabel": "U.S. National Gazetteer Feature Name Identifier (Reston, VA: GNIS)".freeze,
446
- prefLabel: "U.S. National Gazetteer Feature Name Identifier (Reston, VA: GNIS)".freeze,
447
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
506
+ "mads:authoritativeLabel": "U.S. National Gazetteer Feature Name Identifier".freeze,
507
+ type: "mads:Authority".freeze
448
508
  term :nga,
449
- "mads:authoritativeLabel": "National Gallery of Art (Washington DC: National Gallery of Art)".freeze,
450
- prefLabel: "National Gallery of Art (Washington DC: National Gallery of Art)".freeze,
451
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
452
- term :ngva,
453
- "mads:authoritativeLabel": "National Gallery of Victoria Artist".freeze,
454
- prefLabel: "National Gallery of Victoria Artist".freeze,
455
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
456
- term :ngvw,
457
- "mads:authoritativeLabel": "National Gallery of Victoria Work".freeze,
458
- prefLabel: "National Gallery of Victoria Work".freeze,
459
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
509
+ "mads:authoritativeLabel": "National Gallery of Art".freeze,
510
+ type: "mads:Authority".freeze
460
511
  term :nipo,
461
- "mads:authoritativeLabel": "NIPO (Número de Identificación de las Publicaciones Oficiales)".freeze,
462
- prefLabel: "NIPO (Número de Identificación de las Publicaciones Oficiales)".freeze,
463
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
512
+ "mads:authoritativeLabel": "Número de Identificación de las Publicaciones Oficiales".freeze,
513
+ type: "mads:Authority".freeze
464
514
  term :nndb,
465
- "mads:authoritativeLabel": "NNDB (Notable Names Database)".freeze,
466
- prefLabel: "NNDB (Notable Names Database)".freeze,
467
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
515
+ "mads:authoritativeLabel": "NNDB".freeze,
516
+ type: "mads:Authority".freeze
468
517
  term :npg,
469
- "mads:authoritativeLabel": "National Portrait Gallery (London: National Portrait Gallery)".freeze,
470
- prefLabel: "National Portrait Gallery (London: National Portrait Gallery)".freeze,
471
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
518
+ "mads:authoritativeLabel": "National Portrait Gallery".freeze,
519
+ type: "mads:Authority".freeze
472
520
  term :odnb,
473
- "mads:authoritativeLabel": "Oxford Dictionary of National Biography (Oxford University Press)".freeze,
474
- prefLabel: "Oxford Dictionary of National Biography (Oxford University Press)".freeze,
475
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
476
- term :ofdb,
477
- "mads:authoritativeLabel": "OFDb: Online-Filmdatenbank".freeze,
478
- prefLabel: "OFDb: Online-Filmdatenbank".freeze,
479
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
480
- term :onix,
481
- "mads:authoritativeLabel": "ONIX (Online Information Exchange)".freeze,
482
- prefLabel: "ONIX (Online Information Exchange)".freeze,
483
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
521
+ "mads:authoritativeLabel": "Oxford Dictionary of National Biography".freeze,
522
+ type: "mads:Authority".freeze
484
523
  term :opensm,
485
524
  "mads:authoritativeLabel": "OpenStreetMap".freeze,
486
- prefLabel: "OpenStreetMap".freeze,
487
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
525
+ type: "mads:Authority".freeze
488
526
  term :orcid,
489
527
  "mads:authoritativeLabel": "Open Researcher and Contributor Identifier".freeze,
490
- prefLabel: "Open Researcher and Contributor Identifier".freeze,
491
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
528
+ type: "mads:Authority".freeze
492
529
  term :oxforddnb,
493
530
  "mads:authoritativeLabel": "Oxford Biography Index".freeze,
494
- prefLabel: "Oxford Biography Index".freeze,
495
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
496
- term :permid,
497
- "mads:authoritativeLabel": "PermID".freeze,
498
- prefLabel: "PermID".freeze,
499
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
500
- term :picnypl,
501
- "mads:authoritativeLabel": "PIC - Photographers' Identities Catalog (New York Public Library)".freeze,
502
- prefLabel: "PIC - Photographers' Identities Catalog (New York Public Library)".freeze,
503
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
504
- term :pnta,
505
- "mads:authoritativeLabel": "Personen uit de Nederlandse Thesaurus van Auteursnamen".freeze,
506
- prefLabel: "Personen uit de Nederlandse Thesaurus van Auteursnamen".freeze,
507
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
531
+ type: "mads:Authority".freeze
508
532
  term :porthu,
509
533
  "mads:authoritativeLabel": "PORT.hu".freeze,
510
- prefLabel: "PORT.hu".freeze,
511
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
512
- term :prabook,
513
- "mads:authoritativeLabel": "Prabook".freeze,
514
- prefLabel: "Prabook".freeze,
515
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
534
+ type: "mads:Authority".freeze
516
535
  term :rbmsbt,
517
- "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Binding Terms (Rare Books and Manuscripts Section, Association of College & Research Libraries)".freeze,
518
- prefLabel: "RBMS Controlled Vocabularies: Binding Terms (Rare Books and Manuscripts Section, Association of College & Research Libraries)".freeze,
519
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
536
+ "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Binding Terms".freeze,
537
+ type: "mads:Authority".freeze
520
538
  term :rbmsgt,
521
- "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Genre Terms (Rare Books and Manuscripts Section, Association of College & Research Libraries)".freeze,
522
- prefLabel: "RBMS Controlled Vocabularies: Genre Terms (Rare Books and Manuscripts Section, Association of College & Research Libraries)".freeze,
523
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
539
+ "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Genre Terms".freeze,
540
+ type: "mads:Authority".freeze
524
541
  term :rbmspe,
525
- "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Provenance Evidence Terms (Rare Books and Manuscripts Section, Association of College & Research Libraries)".freeze,
526
- prefLabel: "RBMS Controlled Vocabularies: Provenance Evidence Terms (Rare Books and Manuscripts Section, Association of College & Research Libraries)".freeze,
527
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
542
+ "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Provenance Evidence".freeze,
543
+ type: "mads:Authority".freeze
528
544
  term :rbmsppe,
529
- "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Printing and Publishing Terms (Rare Books and Manuscripts Section, Association of College & Research Libraries)".freeze,
530
- prefLabel: "RBMS Controlled Vocabularies: Printing and Publishing Terms (Rare Books and Manuscripts Section, Association of College & Research Libraries)".freeze,
531
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
545
+ "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Printing and Publishing Terms".freeze,
546
+ type: "mads:Authority".freeze
532
547
  term :rbmspt,
533
- "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Paper Terms (Rare Books and Manuscripts Section, Association of College & Research Libraries)".freeze,
534
- prefLabel: "RBMS Controlled Vocabularies: Paper Terms (Rare Books and Manuscripts Section, Association of College & Research Libraries)".freeze,
535
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
548
+ "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Paper Terms".freeze,
549
+ type: "mads:Authority".freeze
536
550
  term :rbmsrd,
537
- "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Relationship Designators (Rare Books and Manuscripts Section, Association of College & Research Libraries)".freeze,
538
- prefLabel: "RBMS Controlled Vocabularies: Relationship Designators (Rare Books and Manuscripts Section, Association of College & Research Libraries)".freeze,
539
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
551
+ "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Relationship Designators".freeze,
552
+ type: "mads:Authority".freeze
540
553
  term :rbmste,
541
- "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Type Evidence (Rare Books and Manuscripts Section, Association of College & Research Libraries)".freeze,
542
- prefLabel: "RBMS Controlled Vocabularies: Type Evidence (Rare Books and Manuscripts Section, Association of College & Research Libraries)".freeze,
543
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
554
+ "mads:authoritativeLabel": "RBMS Controlled Vocabularies: Type Evidence".freeze,
555
+ type: "mads:Authority".freeze
544
556
  term :rid,
545
- "mads:authoritativeLabel": "ResearcherID (Thomson Reuters)".freeze,
546
- prefLabel: "ResearcherID (Thomson Reuters)".freeze,
547
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
557
+ "mads:authoritativeLabel": "ResearcherID".freeze,
558
+ type: "mads:Authority".freeze
548
559
  term :rkda,
549
- "mads:authoritativeLabel": "RKDartists& (Den Haag: Rijksbureau voor Kunsthistorische Documentatie)".freeze,
550
- prefLabel: "RKDartists& (Den Haag: Rijksbureau voor Kunsthistorische Documentatie)".freeze,
551
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
560
+ "mads:authoritativeLabel": "RKDartists&".freeze,
561
+ type: "mads:Authority".freeze
552
562
  term :saam,
553
- "mads:authoritativeLabel": "Smithsonian American Art Museum (Washington DC: Smithsonian Institution)".freeze,
554
- prefLabel: "Smithsonian American Art Museum (Washington DC: Smithsonian Institution)".freeze,
555
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
563
+ "mads:authoritativeLabel": "Smithsonian American Art Museum".freeze,
564
+ type: "mads:Authority".freeze
556
565
  term :scholaru,
557
566
  "mads:authoritativeLabel": "Scholar Universe".freeze,
558
- prefLabel: "Scholar Universe".freeze,
559
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
567
+ type: "mads:Authority".freeze
560
568
  term :scope,
561
569
  "mads:authoritativeLabel": "Scope".freeze,
562
- prefLabel: "Scope".freeze,
563
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
570
+ type: "mads:Authority".freeze
564
571
  term :scopus,
565
572
  "mads:authoritativeLabel": "Scopus Author Identifier".freeze,
566
- prefLabel: "Scopus Author Identifier".freeze,
567
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
573
+ type: "mads:Authority".freeze
568
574
  term :sici,
569
575
  "mads:authoritativeLabel": "Serial Item and Contribution Identifier".freeze,
570
- prefLabel: "Serial Item and Contribution Identifier".freeze,
571
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
572
- term :snac,
573
- "mads:authoritativeLabel": "Social Networks and Archival Context".freeze,
574
- prefLabel: "Social Networks and Archival Context".freeze,
575
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
576
+ type: "mads:Authority".freeze
576
577
  term :spotify,
577
578
  "mads:authoritativeLabel": "Spotify".freeze,
578
- prefLabel: "Spotify".freeze,
579
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
579
+ type: "mads:Authority".freeze
580
580
  term :sprfbsb,
581
581
  "mads:authoritativeLabel": "Sports Reference: Baseball".freeze,
582
- prefLabel: "Sports Reference: Baseball".freeze,
583
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
582
+ type: "mads:Authority".freeze
584
583
  term :sprfbsk,
585
584
  "mads:authoritativeLabel": "Sports Reference: Basketball".freeze,
586
- prefLabel: "Sports Reference: Basketball".freeze,
587
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
585
+ type: "mads:Authority".freeze
588
586
  term :sprfcbb,
589
587
  "mads:authoritativeLabel": "Sports Reference: College Basketball".freeze,
590
- prefLabel: "Sports Reference: College Basketball".freeze,
591
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
588
+ type: "mads:Authority".freeze
592
589
  term :sprfcfb,
593
590
  "mads:authoritativeLabel": "Sports Reference: College Football".freeze,
594
- prefLabel: "Sports Reference: College Football".freeze,
595
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
591
+ type: "mads:Authority".freeze
596
592
  term :sprfhoc,
597
593
  "mads:authoritativeLabel": "Sports Reference: Hockey".freeze,
598
- prefLabel: "Sports Reference: Hockey".freeze,
599
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
594
+ type: "mads:Authority".freeze
600
595
  term :sprfoly,
601
596
  "mads:authoritativeLabel": "Sports Reference: Olympic Sports".freeze,
602
- prefLabel: "Sports Reference: Olympic Sports".freeze,
603
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
597
+ type: "mads:Authority".freeze
604
598
  term :sprfpfb,
605
599
  "mads:authoritativeLabel": "Sports Reference: Pro Football".freeze,
606
- prefLabel: "Sports Reference: Pro Football".freeze,
607
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
600
+ type: "mads:Authority".freeze
608
601
  term :"stock-number",
609
602
  "mads:authoritativeLabel": "Publisher, distributor, or vendor stock number".freeze,
610
- prefLabel: "Publisher, distributor, or vendor stock number".freeze,
611
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
603
+ type: "mads:Authority".freeze
612
604
  term :strn,
613
605
  "mads:authoritativeLabel": "Standard Technical Report Number".freeze,
614
- prefLabel: "Standard Technical Report Number".freeze,
615
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
606
+ type: "mads:Authority".freeze
616
607
  term :svfilm,
617
608
  "mads:authoritativeLabel": "Svensk Filmdatabas".freeze,
618
- prefLabel: "Svensk Filmdatabas".freeze,
619
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
609
+ type: "mads:Authority".freeze
620
610
  term :tatearid,
621
611
  "mads:authoritativeLabel": "Tate Artist Identifier".freeze,
622
- prefLabel: "Tate Artist Identifier".freeze,
623
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
612
+ type: "mads:Authority".freeze
624
613
  term :theatr,
625
614
  "mads:authoritativeLabel": "Theatricalia".freeze,
626
- prefLabel: "Theatricalia".freeze,
627
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
615
+ type: "mads:Authority".freeze
628
616
  term :trove,
629
- "mads:authoritativeLabel": "Trove (National Library of Australia)".freeze,
630
- prefLabel: "Trove (National Library of Australia)".freeze,
631
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
617
+ "mads:authoritativeLabel": "Trove".freeze,
618
+ type: "mads:Authority".freeze
632
619
  term :upc,
633
620
  "mads:authoritativeLabel": "Universal Product Code".freeze,
634
- prefLabel: "Universal Product Code".freeze,
635
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
621
+ type: "mads:Authority".freeze
636
622
  term :uri,
637
623
  "mads:authoritativeLabel": "Uniform Resource Identifier".freeze,
638
- prefLabel: "Uniform Resource Identifier".freeze,
639
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
624
+ type: "mads:Authority".freeze
640
625
  term :urn,
641
626
  "mads:authoritativeLabel": "Uniform Resource Name".freeze,
642
- prefLabel: "Uniform Resource Name".freeze,
643
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
644
- term :vd16,
645
- "mads:authoritativeLabel": "Verzeichnis der Drucke des 16. Jahrhunderts".freeze,
646
- prefLabel: "Verzeichnis der Drucke des 16. Jahrhunderts".freeze,
647
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
648
- term :vd17,
649
- "mads:authoritativeLabel": "Verzeichnis der Drucke des 17. Jahrhunderts".freeze,
650
- prefLabel: "Verzeichnis der Drucke des 17. Jahrhunderts".freeze,
651
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
652
- term :vd18,
653
- "mads:authoritativeLabel": "Verzeichnis der Drucke des 18. Jahrhunderts".freeze,
654
- prefLabel: "Verzeichnis der Drucke des 18. Jahrhunderts".freeze,
655
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
656
- term :vgmdb,
657
- "mads:authoritativeLabel": "VGMdb artists".freeze,
658
- prefLabel: "VGMdb artists".freeze,
659
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
627
+ type: "mads:Authority".freeze
660
628
  term :viaf,
661
629
  "mads:authoritativeLabel": "Virtual International Authority File number".freeze,
662
- prefLabel: "Virtual International Authority File number".freeze,
663
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
630
+ type: "mads:Authority".freeze
664
631
  term :"videorecording-identifier",
665
632
  "mads:authoritativeLabel": "Publisher-assigned videorecording number".freeze,
666
- prefLabel: "Publisher-assigned videorecording number".freeze,
667
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
633
+ type: "mads:Authority".freeze
668
634
  term :wikidata,
669
- "mads:authoritativeLabel": "Wikidata (Wikimedia Foundation)".freeze,
670
- prefLabel: "Wikidata (Wikimedia Foundation)".freeze,
671
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
635
+ "mads:authoritativeLabel": "Wikidata".freeze,
636
+ type: "mads:Authority".freeze
672
637
  term :wndla,
673
- "mads:authoritativeLabel": "Web NDL Authorities (Tokyo: National Diet Library (NDL))".freeze,
674
- prefLabel: "Web NDL Authorities (Tokyo: National Diet Library (NDL))".freeze,
675
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
676
- term :xgamea,
677
- "mads:authoritativeLabel": "X Games Athletes".freeze,
678
- prefLabel: "X Games Athletes".freeze,
679
- type: ["mads:Authority".freeze, "skos:Concept".freeze]
638
+ "mads:authoritativeLabel": "Web NDL Authorities )".freeze,
639
+ type: "mads:Authority".freeze
680
640
  end
681
641
  end