rdf-vocab 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +11 -8
- data/lib/rdf-vocab.rb +1 -0
- data/lib/rdf-vocab/config/vocab.yml +17 -17
- data/lib/rdf-vocab/tasks/vocab.rake +1 -1
- data/lib/rdf-vocab/version.rb +1 -1
- data/lib/rdf-vocab/vocab/ldp.rb +1 -1
- data/lib/rdf-vocab/vocab/mads.rb +1 -1
- data/lib/rdf-vocab/vocab/marc_relators.rb +820 -820
- data/lib/rdf-vocab/vocab/mods.rb +21 -21
- data/lib/rdf-vocab/vocab/premis/v1.rb +1 -1
- data/lib/rdf-vocab/vocab/premis_event_type.rb +50 -50
- data/rdf-vocab.gemspec +2 -2
- data/spec/unit/rdf_vocab_spec.rb +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 16c58b914c48034548134d14db07566daff8482f
|
4
|
+
data.tar.gz: 5019a0407ff94dfe3b5489e480f4a8eff9371917
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 606b37797108fedfb7a2ac7c6e274945440c709869618e4035b6aa4bdbec29522bebcdb90f567f28d274d060b7ac67f4fa5d3e182ab5498e457e98334c086ff5
|
7
|
+
data.tar.gz: bd2eb95c3793a957f4a41a46e1d8d2e914ee384e1e77172d57472dd4cfb42a6b28e52d697124f6986d2823e2917e856743165632dcd288d1f3797ca876831638
|
data/README.md
CHANGED
@@ -1,18 +1,21 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
RDF::Vocab
|
2
|
+
==========
|
3
3
|
|
4
4
|
A library of RDF vocabularies generated from RDF schema and web ontologies (OWL) using the ruby-rdf vocab-loader.
|
5
5
|
|
6
|
+
[](http://badge.fury.io/rb/rdf-vocab)
|
7
|
+
[](https://travis-ci.org/projecthydra-labs/rdf-vocab)
|
8
|
+
|
6
9
|
See the list of rake tasks in the `vocab` namespace for specific vocabulary generators.
|
7
10
|
|
8
11
|
## Vocabularies
|
9
12
|
|
10
|
-
- RDF::LDP
|
11
|
-
- RDF::MADS
|
12
|
-
- RDF::
|
13
|
-
- RDF::MODS
|
14
|
-
- RDF::PREMIS::V1
|
15
|
-
- RDF::PremisEventType (LoC)
|
13
|
+
- RDF::Vocab::LDP - [Linked Data Platform](http://www.w3.org/TR/ldp/) (W3C)
|
14
|
+
- RDF::Vocab::MADS - [Metadata Authority Description Schema](http://www.loc.gov/standards/mads/) (LoC)
|
15
|
+
- RDF::Vocab::MARCRelators - [MARC Code List for Relators](http://id.loc.gov/vocabulary/relators.html) (LoC)
|
16
|
+
- RDF::Vocab::MODS - [Metadata Object Description Schema](http://www.loc.gov/standards/mods/) (LoC)
|
17
|
+
- RDF::Vocab::PREMIS::V1 - [Preservation Metadata Implementation Strategies (PREMIS) Ontology](http://id.loc.gov/ontologies/premis.html) (LoC)
|
18
|
+
- RDF::Vocab::PremisEventType - [PREMIS Event Type](http://id.loc.gov/vocabulary/preservation/eventType.html) (LoC)
|
16
19
|
|
17
20
|
## Installation
|
18
21
|
|
data/lib/rdf-vocab.rb
CHANGED
@@ -1,30 +1,30 @@
|
|
1
1
|
#
|
2
2
|
# Vocabulary generator config
|
3
3
|
#
|
4
|
-
# The value of each outer key consists of attribute names and values for the RDF::VocabularyLoader
|
4
|
+
# The value of each outer key consists of attribute names and values for the `RDF::VocabularyLoader`
|
5
5
|
# instance created to generate that vocabulary by `RDF::Vocab.generate`.
|
6
6
|
#
|
7
|
+
# Note that "module_name" defaults to "RDF::Vocab" (instead of "RDF" as with `RDF::VocabularyLoader`).
|
8
|
+
#
|
7
9
|
# Example:
|
8
10
|
#
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
# source: http://www.loc.gov/premis/rdf/v1.rdf
|
11
|
+
# mods:
|
12
|
+
# class_name: MODS
|
13
|
+
# uri: http://www.loc.gov/mods/rdf/v1#
|
14
|
+
# source: http://www.loc.gov/standards/mods/modsrdf/v1/modsrdf.owl
|
14
15
|
#
|
15
|
-
# RDF::Vocab.generate("
|
16
|
+
# RDF::Vocab.generate("mods") will create and run an instance of RDF::VocabularyLoader like so:
|
16
17
|
#
|
17
18
|
# loader = RDF::VocabularyLoader.new
|
18
|
-
# loader.module_name = "RDF::
|
19
|
-
# loader.class_name = "
|
20
|
-
# loader.uri = "http://www.loc.gov/
|
21
|
-
# loader.source = "http://www.loc.gov/
|
22
|
-
# loader.run
|
19
|
+
# loader.module_name = "RDF::Vocab"
|
20
|
+
# loader.class_name = "MODS"
|
21
|
+
# loader.uri = "http://www.loc.gov/mods/rdf/v1#"
|
22
|
+
# loader.source = "http://www.loc.gov/standards/mods/modsrdf/v1/modsrdf.owl"
|
23
23
|
#
|
24
|
-
#
|
24
|
+
# which will generate the vocabulary:
|
25
25
|
#
|
26
|
-
# module RDF::
|
27
|
-
# class
|
26
|
+
# module RDF::Vocab
|
27
|
+
# class MODS < StrictVocabulary("http://www.loc.gov/mods/rdf/v1#")
|
28
28
|
#
|
29
29
|
# [...]
|
30
30
|
#
|
@@ -37,7 +37,7 @@ mads:
|
|
37
37
|
uri: http://www.loc.gov/mads/rdf/v1#
|
38
38
|
source: http://www.loc.gov/standards/mads/rdf/v1.rdf
|
39
39
|
marc_relators:
|
40
|
-
class_name:
|
40
|
+
class_name: MARCRelators
|
41
41
|
uri: http://id.loc.gov/vocabulary/relators/
|
42
42
|
source: http://id.loc.gov/vocabulary/relators.nt
|
43
43
|
mods:
|
@@ -45,7 +45,7 @@ mods:
|
|
45
45
|
uri: http://www.loc.gov/mods/rdf/v1#
|
46
46
|
source: http://www.loc.gov/standards/mods/modsrdf/v1/modsrdf.owl
|
47
47
|
premis_v1:
|
48
|
-
module_name: RDF::PREMIS
|
48
|
+
module_name: RDF::Vocab::PREMIS
|
49
49
|
class_name: V1
|
50
50
|
uri: http://www.loc.gov/premis/rdf/v1#
|
51
51
|
source: http://www.loc.gov/premis/rdf/v1.rdf
|
@@ -3,7 +3,7 @@ require "rdf-vocab"
|
|
3
3
|
namespace :vocab do
|
4
4
|
RDF::Vocab.config.keys.sort.each do |vocab|
|
5
5
|
params = RDF::Vocab.config[vocab]
|
6
|
-
name = [params.fetch("module_name", "RDF"), params["class_name"]].join("::")
|
6
|
+
name = [params.fetch("module_name", "RDF::Vocab"), params["class_name"]].join("::")
|
7
7
|
desc "Generate #{name} vocabulary from source"
|
8
8
|
task vocab do
|
9
9
|
if outfile = ENV["output"]
|
data/lib/rdf-vocab/version.rb
CHANGED
data/lib/rdf-vocab/vocab/ldp.rb
CHANGED
data/lib/rdf-vocab/vocab/mads.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
# This file generated automatically using vocab-fetch from http://www.loc.gov/standards/mads/rdf/v1.rdf
|
3
3
|
require 'rdf'
|
4
|
-
module RDF
|
4
|
+
module RDF::Vocab
|
5
5
|
class MADS < RDF::StrictVocabulary("http://www.loc.gov/mads/rdf/v1#")
|
6
6
|
|
7
7
|
# Class definitions
|
@@ -1,2197 +1,2197 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
# This file generated automatically using vocab-fetch from http://id.loc.gov/vocabulary/relators.nt
|
3
3
|
require 'rdf'
|
4
|
-
module RDF
|
5
|
-
class
|
4
|
+
module RDF::Vocab
|
5
|
+
class MARCRelators < RDF::StrictVocabulary("http://id.loc.gov/vocabulary/relators/")
|
6
6
|
|
7
7
|
# Property definitions
|
8
8
|
property :abr,
|
9
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Abridger).freeze,
|
10
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(abr).freeze,
|
11
9
|
label: "Abridger".freeze,
|
10
|
+
"mads:authoritativeLabel" => %(Abridger).freeze,
|
11
|
+
"mads:code" => %(abr).freeze,
|
12
12
|
"skos:notation" => %(abr).freeze,
|
13
13
|
"skos:prefLabel" => %(Abridger).freeze,
|
14
14
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
15
|
-
type: ["
|
15
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
16
16
|
property :acp,
|
17
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Art copyist).freeze,
|
18
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(acp).freeze,
|
19
17
|
label: "Art copyist".freeze,
|
18
|
+
"mads:authoritativeLabel" => %(Art copyist).freeze,
|
19
|
+
"mads:code" => %(acp).freeze,
|
20
20
|
"skos:notation" => %(acp).freeze,
|
21
21
|
"skos:prefLabel" => %(Art copyist).freeze,
|
22
22
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
23
|
-
type: ["
|
23
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
24
24
|
property :act,
|
25
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Actor).freeze,
|
26
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(act).freeze,
|
27
25
|
label: "Actor".freeze,
|
26
|
+
"mads:authoritativeLabel" => %(Actor).freeze,
|
27
|
+
"mads:code" => %(act).freeze,
|
28
28
|
"skos:notation" => %(act).freeze,
|
29
29
|
"skos:prefLabel" => %(Actor).freeze,
|
30
30
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prf".freeze, "dc11:contributor".freeze],
|
31
|
-
type: ["
|
31
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
32
32
|
property :adi,
|
33
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Art director).freeze,
|
34
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(adi).freeze,
|
35
33
|
label: "Art director".freeze,
|
34
|
+
"mads:authoritativeLabel" => %(Art director).freeze,
|
35
|
+
"mads:code" => %(adi).freeze,
|
36
36
|
"skos:notation" => %(adi).freeze,
|
37
37
|
"skos:prefLabel" => %(Art director).freeze,
|
38
38
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
39
|
-
type: ["
|
39
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
40
40
|
property :adp,
|
41
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Adapter).freeze,
|
42
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(adp).freeze,
|
43
41
|
label: "Adapter".freeze,
|
42
|
+
"mads:authoritativeLabel" => %(Adapter).freeze,
|
43
|
+
"mads:code" => %(adp).freeze,
|
44
44
|
"skos:notation" => %(adp).freeze,
|
45
45
|
"skos:prefLabel" => %(Adapter).freeze,
|
46
46
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
47
|
-
type: ["
|
47
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
48
48
|
property :aft,
|
49
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Author of afterword, colophon, etc.).freeze,
|
50
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(aft).freeze,
|
51
49
|
label: "Author of afterword, colophon, etc.".freeze,
|
50
|
+
"mads:authoritativeLabel" => %(Author of afterword, colophon, etc.).freeze,
|
51
|
+
"mads:code" => %(aft).freeze,
|
52
52
|
"skos:notation" => %(aft).freeze,
|
53
53
|
"skos:prefLabel" => %(Author of afterword, colophon, etc.).freeze,
|
54
54
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/aut".freeze, "dc11:contributor".freeze],
|
55
|
-
type: ["
|
55
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
56
56
|
property :anl,
|
57
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Analyst).freeze,
|
58
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(anl).freeze,
|
59
57
|
label: "Analyst".freeze,
|
58
|
+
"mads:authoritativeLabel" => %(Analyst).freeze,
|
59
|
+
"mads:code" => %(anl).freeze,
|
60
60
|
"skos:notation" => %(anl).freeze,
|
61
61
|
"skos:prefLabel" => %(Analyst).freeze,
|
62
62
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
63
|
-
type: ["
|
63
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
64
64
|
property :anm,
|
65
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Animator).freeze,
|
66
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(anm).freeze,
|
67
65
|
label: "Animator".freeze,
|
66
|
+
"mads:authoritativeLabel" => %(Animator).freeze,
|
67
|
+
"mads:code" => %(anm).freeze,
|
68
68
|
"skos:notation" => %(anm).freeze,
|
69
69
|
"skos:prefLabel" => %(Animator).freeze,
|
70
70
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
71
|
-
type: ["
|
71
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
72
72
|
property :ann,
|
73
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Annotator).freeze,
|
74
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ann).freeze,
|
75
73
|
label: "Annotator".freeze,
|
74
|
+
"mads:authoritativeLabel" => %(Annotator).freeze,
|
75
|
+
"mads:code" => %(ann).freeze,
|
76
76
|
"skos:notation" => %(ann).freeze,
|
77
77
|
"skos:prefLabel" => %(Annotator).freeze,
|
78
78
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
79
|
-
type: ["
|
79
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
80
80
|
property :ant,
|
81
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Bibliographic antecedent).freeze,
|
82
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ant).freeze,
|
83
81
|
label: "Bibliographic antecedent".freeze,
|
82
|
+
"mads:authoritativeLabel" => %(Bibliographic antecedent).freeze,
|
83
|
+
"mads:code" => %(ant).freeze,
|
84
84
|
"skos:notation" => %(ant).freeze,
|
85
85
|
"skos:prefLabel" => %(Bibliographic antecedent).freeze,
|
86
86
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
87
|
-
type: ["
|
87
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
88
88
|
property :ape,
|
89
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Appellee).freeze,
|
90
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ape).freeze,
|
91
89
|
label: "Appellee".freeze,
|
90
|
+
"mads:authoritativeLabel" => %(Appellee).freeze,
|
91
|
+
"mads:code" => %(ape).freeze,
|
92
92
|
"skos:notation" => %(ape).freeze,
|
93
93
|
"skos:prefLabel" => %(Appellee).freeze,
|
94
94
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
95
|
-
type: ["
|
95
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
96
96
|
property :apl,
|
97
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Appellant).freeze,
|
98
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(apl).freeze,
|
99
97
|
label: "Appellant".freeze,
|
98
|
+
"mads:authoritativeLabel" => %(Appellant).freeze,
|
99
|
+
"mads:code" => %(apl).freeze,
|
100
100
|
"skos:notation" => %(apl).freeze,
|
101
101
|
"skos:prefLabel" => %(Appellant).freeze,
|
102
102
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
103
|
-
type: ["
|
103
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
104
104
|
property :app,
|
105
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Applicant).freeze,
|
106
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(app).freeze,
|
107
105
|
label: "Applicant".freeze,
|
106
|
+
"mads:authoritativeLabel" => %(Applicant).freeze,
|
107
|
+
"mads:code" => %(app).freeze,
|
108
108
|
"skos:notation" => %(app).freeze,
|
109
109
|
"skos:prefLabel" => %(Applicant).freeze,
|
110
110
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
111
|
-
type: ["
|
111
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
112
112
|
property :aqt,
|
113
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Author in quotations or text abstracts).freeze,
|
114
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(aqt).freeze,
|
115
113
|
label: "Author in quotations or text abstracts".freeze,
|
114
|
+
"mads:authoritativeLabel" => %(Author in quotations or text abstracts).freeze,
|
115
|
+
"mads:code" => %(aqt).freeze,
|
116
116
|
"skos:notation" => %(aqt).freeze,
|
117
117
|
"skos:prefLabel" => %(Author in quotations or text abstracts).freeze,
|
118
118
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/aut".freeze, "dc11:contributor".freeze],
|
119
|
-
type: ["
|
119
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
120
120
|
property :arc,
|
121
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Architect).freeze,
|
122
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(arc).freeze,
|
123
121
|
label: "Architect".freeze,
|
122
|
+
"mads:authoritativeLabel" => %(Architect).freeze,
|
123
|
+
"mads:code" => %(arc).freeze,
|
124
124
|
"skos:notation" => %(arc).freeze,
|
125
125
|
"skos:prefLabel" => %(Architect).freeze,
|
126
126
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
127
|
-
type: ["
|
127
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
128
128
|
property :ard,
|
129
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Artistic director).freeze,
|
130
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ard).freeze,
|
131
129
|
label: "Artistic director".freeze,
|
130
|
+
"mads:authoritativeLabel" => %(Artistic director).freeze,
|
131
|
+
"mads:code" => %(ard).freeze,
|
132
132
|
"skos:notation" => %(ard).freeze,
|
133
133
|
"skos:prefLabel" => %(Artistic director).freeze,
|
134
134
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
135
|
-
type: ["
|
135
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
136
136
|
property :arr,
|
137
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Arranger).freeze,
|
138
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(arr).freeze,
|
139
137
|
label: "Arranger".freeze,
|
138
|
+
"mads:authoritativeLabel" => %(Arranger).freeze,
|
139
|
+
"mads:code" => %(arr).freeze,
|
140
140
|
"skos:notation" => %(arr).freeze,
|
141
141
|
"skos:prefLabel" => %(Arranger).freeze,
|
142
142
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
143
|
-
type: ["
|
143
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
144
144
|
property :art,
|
145
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Artist).freeze,
|
146
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(art).freeze,
|
147
145
|
label: "Artist".freeze,
|
146
|
+
"mads:authoritativeLabel" => %(Artist).freeze,
|
147
|
+
"mads:code" => %(art).freeze,
|
148
148
|
"skos:notation" => %(art).freeze,
|
149
149
|
"skos:prefLabel" => %(Artist).freeze,
|
150
150
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
151
|
-
type: ["
|
151
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
152
152
|
property :asg,
|
153
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Assignee).freeze,
|
154
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(asg).freeze,
|
155
153
|
label: "Assignee".freeze,
|
154
|
+
"mads:authoritativeLabel" => %(Assignee).freeze,
|
155
|
+
"mads:code" => %(asg).freeze,
|
156
156
|
"skos:notation" => %(asg).freeze,
|
157
157
|
"skos:prefLabel" => %(Assignee).freeze,
|
158
158
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
159
|
-
type: ["
|
159
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
160
160
|
property :asn,
|
161
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Associated name).freeze,
|
162
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(asn).freeze,
|
163
161
|
label: "Associated name".freeze,
|
162
|
+
"mads:authoritativeLabel" => %(Associated name).freeze,
|
163
|
+
"mads:code" => %(asn).freeze,
|
164
164
|
"skos:notation" => %(asn).freeze,
|
165
165
|
"skos:prefLabel" => %(Associated name).freeze,
|
166
166
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
167
|
-
type: ["
|
167
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
168
168
|
property :ato,
|
169
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Autographer).freeze,
|
170
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ato).freeze,
|
171
169
|
label: "Autographer".freeze,
|
170
|
+
"mads:authoritativeLabel" => %(Autographer).freeze,
|
171
|
+
"mads:code" => %(ato).freeze,
|
172
172
|
"skos:notation" => %(ato).freeze,
|
173
173
|
"skos:prefLabel" => %(Autographer).freeze,
|
174
174
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
175
|
-
type: ["
|
175
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
176
176
|
property :att,
|
177
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Attributed name).freeze,
|
178
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(att).freeze,
|
179
177
|
label: "Attributed name".freeze,
|
178
|
+
"mads:authoritativeLabel" => %(Attributed name).freeze,
|
179
|
+
"mads:code" => %(att).freeze,
|
180
180
|
"skos:notation" => %(att).freeze,
|
181
181
|
"skos:prefLabel" => %(Attributed name).freeze,
|
182
182
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
183
|
-
type: ["
|
183
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
184
184
|
property :auc,
|
185
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Auctioneer).freeze,
|
186
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(auc).freeze,
|
187
185
|
label: "Auctioneer".freeze,
|
186
|
+
"mads:authoritativeLabel" => %(Auctioneer).freeze,
|
187
|
+
"mads:code" => %(auc).freeze,
|
188
188
|
"skos:notation" => %(auc).freeze,
|
189
189
|
"skos:prefLabel" => %(Auctioneer).freeze,
|
190
190
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
191
|
-
type: ["
|
191
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
192
192
|
property :aud,
|
193
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Author of dialog).freeze,
|
194
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(aud).freeze,
|
195
193
|
label: "Author of dialog".freeze,
|
194
|
+
"mads:authoritativeLabel" => %(Author of dialog).freeze,
|
195
|
+
"mads:code" => %(aud).freeze,
|
196
196
|
"skos:notation" => %(aud).freeze,
|
197
197
|
"skos:prefLabel" => %(Author of dialog).freeze,
|
198
198
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/aut".freeze, "dc11:contributor".freeze],
|
199
|
-
type: ["
|
199
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
200
200
|
property :aui,
|
201
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Author of introduction, etc.).freeze,
|
202
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(aui).freeze,
|
203
201
|
label: "Author of introduction, etc.".freeze,
|
202
|
+
"mads:authoritativeLabel" => %(Author of introduction, etc.).freeze,
|
203
|
+
"mads:code" => %(aui).freeze,
|
204
204
|
"skos:notation" => %(aui).freeze,
|
205
205
|
"skos:prefLabel" => %(Author of introduction, etc.).freeze,
|
206
206
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/aut".freeze, "dc11:contributor".freeze],
|
207
|
-
type: ["
|
207
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
208
208
|
property :aus,
|
209
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Screenwriter).freeze,
|
210
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(aus).freeze,
|
211
209
|
label: "Screenwriter".freeze,
|
210
|
+
"mads:authoritativeLabel" => %(Screenwriter).freeze,
|
211
|
+
"mads:code" => %(aus).freeze,
|
212
212
|
"skos:notation" => %(aus).freeze,
|
213
213
|
"skos:prefLabel" => %(Screenwriter).freeze,
|
214
214
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/aut".freeze, "dc11:contributor".freeze],
|
215
|
-
type: ["
|
215
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
216
216
|
property :aut,
|
217
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Author).freeze,
|
218
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(aut).freeze,
|
219
217
|
label: "Author".freeze,
|
218
|
+
"mads:authoritativeLabel" => %(Author).freeze,
|
219
|
+
"mads:code" => %(aut).freeze,
|
220
220
|
"skos:notation" => %(aut).freeze,
|
221
221
|
"skos:prefLabel" => %(Author).freeze,
|
222
222
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
223
|
-
type: ["
|
223
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
224
224
|
property :bdd,
|
225
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Binding designer).freeze,
|
226
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(bdd).freeze,
|
227
225
|
label: "Binding designer".freeze,
|
226
|
+
"mads:authoritativeLabel" => %(Binding designer).freeze,
|
227
|
+
"mads:code" => %(bdd).freeze,
|
228
228
|
"skos:notation" => %(bdd).freeze,
|
229
229
|
"skos:prefLabel" => %(Binding designer).freeze,
|
230
230
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
231
|
-
type: ["
|
231
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
232
232
|
property :bjd,
|
233
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Bookjacket designer).freeze,
|
234
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(bjd).freeze,
|
235
233
|
label: "Bookjacket designer".freeze,
|
234
|
+
"mads:authoritativeLabel" => %(Bookjacket designer).freeze,
|
235
|
+
"mads:code" => %(bjd).freeze,
|
236
236
|
"skos:notation" => %(bjd).freeze,
|
237
237
|
"skos:prefLabel" => %(Bookjacket designer).freeze,
|
238
238
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
239
|
-
type: ["
|
239
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
240
240
|
property :bkd,
|
241
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Book designer).freeze,
|
242
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(bkd).freeze,
|
243
241
|
label: "Book designer".freeze,
|
242
|
+
"mads:authoritativeLabel" => %(Book designer).freeze,
|
243
|
+
"mads:code" => %(bkd).freeze,
|
244
244
|
"skos:notation" => %(bkd).freeze,
|
245
245
|
"skos:prefLabel" => %(Book designer).freeze,
|
246
246
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
247
|
-
type: ["
|
247
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
248
248
|
property :bkp,
|
249
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Book producer).freeze,
|
250
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(bkp).freeze,
|
251
249
|
label: "Book producer".freeze,
|
250
|
+
"mads:authoritativeLabel" => %(Book producer).freeze,
|
251
|
+
"mads:code" => %(bkp).freeze,
|
252
252
|
"skos:notation" => %(bkp).freeze,
|
253
253
|
"skos:prefLabel" => %(Book producer).freeze,
|
254
254
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
255
|
-
type: ["
|
255
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
256
256
|
property :blw,
|
257
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Blurb writer).freeze,
|
258
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(blw).freeze,
|
259
257
|
label: "Blurb writer".freeze,
|
258
|
+
"mads:authoritativeLabel" => %(Blurb writer).freeze,
|
259
|
+
"mads:code" => %(blw).freeze,
|
260
260
|
"skos:notation" => %(blw).freeze,
|
261
261
|
"skos:prefLabel" => %(Blurb writer).freeze,
|
262
262
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
263
|
-
type: ["
|
263
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
264
264
|
property :bnd,
|
265
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Binder).freeze,
|
266
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(bnd).freeze,
|
267
265
|
label: "Binder".freeze,
|
266
|
+
"mads:authoritativeLabel" => %(Binder).freeze,
|
267
|
+
"mads:code" => %(bnd).freeze,
|
268
268
|
"skos:notation" => %(bnd).freeze,
|
269
269
|
"skos:prefLabel" => %(Binder).freeze,
|
270
270
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
271
|
-
type: ["
|
271
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
272
272
|
property :bpd,
|
273
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Bookplate designer).freeze,
|
274
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(bpd).freeze,
|
275
273
|
label: "Bookplate designer".freeze,
|
274
|
+
"mads:authoritativeLabel" => %(Bookplate designer).freeze,
|
275
|
+
"mads:code" => %(bpd).freeze,
|
276
276
|
"skos:notation" => %(bpd).freeze,
|
277
277
|
"skos:prefLabel" => %(Bookplate designer).freeze,
|
278
278
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
279
|
-
type: ["
|
279
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
280
280
|
property :brd,
|
281
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Broadcaster).freeze,
|
282
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(brd).freeze,
|
283
281
|
label: "Broadcaster".freeze,
|
282
|
+
"mads:authoritativeLabel" => %(Broadcaster).freeze,
|
283
|
+
"mads:code" => %(brd).freeze,
|
284
284
|
"skos:notation" => %(brd).freeze,
|
285
285
|
"skos:prefLabel" => %(Broadcaster).freeze,
|
286
286
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
287
|
-
type: ["
|
287
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
288
288
|
property :brl,
|
289
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Braille embosser).freeze,
|
290
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(brl).freeze,
|
291
289
|
label: "Braille embosser".freeze,
|
290
|
+
"mads:authoritativeLabel" => %(Braille embosser).freeze,
|
291
|
+
"mads:code" => %(brl).freeze,
|
292
292
|
"skos:notation" => %(brl).freeze,
|
293
293
|
"skos:prefLabel" => %(Braille embosser).freeze,
|
294
294
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
295
|
-
type: ["
|
295
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
296
296
|
property :bsl,
|
297
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Bookseller).freeze,
|
298
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(bsl).freeze,
|
299
297
|
label: "Bookseller".freeze,
|
298
|
+
"mads:authoritativeLabel" => %(Bookseller).freeze,
|
299
|
+
"mads:code" => %(bsl).freeze,
|
300
300
|
"skos:notation" => %(bsl).freeze,
|
301
301
|
"skos:prefLabel" => %(Bookseller).freeze,
|
302
302
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
303
|
-
type: ["
|
303
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
304
304
|
property :cas,
|
305
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Caster).freeze,
|
306
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cas).freeze,
|
307
305
|
label: "Caster".freeze,
|
306
|
+
"mads:authoritativeLabel" => %(Caster).freeze,
|
307
|
+
"mads:code" => %(cas).freeze,
|
308
308
|
"skos:notation" => %(cas).freeze,
|
309
309
|
"skos:prefLabel" => %(Caster).freeze,
|
310
310
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
311
|
-
type: ["
|
311
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
312
312
|
property :ccp,
|
313
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Conceptor).freeze,
|
314
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ccp).freeze,
|
315
313
|
label: "Conceptor".freeze,
|
314
|
+
"mads:authoritativeLabel" => %(Conceptor).freeze,
|
315
|
+
"mads:code" => %(ccp).freeze,
|
316
316
|
"skos:notation" => %(ccp).freeze,
|
317
317
|
"skos:prefLabel" => %(Conceptor).freeze,
|
318
318
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
319
|
-
type: ["
|
319
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
320
320
|
property :chr,
|
321
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Choreographer).freeze,
|
322
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(chr).freeze,
|
323
321
|
label: "Choreographer".freeze,
|
322
|
+
"mads:authoritativeLabel" => %(Choreographer).freeze,
|
323
|
+
"mads:code" => %(chr).freeze,
|
324
324
|
"skos:notation" => %(chr).freeze,
|
325
325
|
"skos:prefLabel" => %(Choreographer).freeze,
|
326
326
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
327
|
-
type: ["
|
327
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
328
328
|
property :cli,
|
329
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Client).freeze,
|
330
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cli).freeze,
|
331
329
|
label: "Client".freeze,
|
330
|
+
"mads:authoritativeLabel" => %(Client).freeze,
|
331
|
+
"mads:code" => %(cli).freeze,
|
332
332
|
"skos:notation" => %(cli).freeze,
|
333
333
|
"skos:prefLabel" => %(Client).freeze,
|
334
334
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
335
|
-
type: ["
|
335
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
336
336
|
property :cll,
|
337
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Calligrapher).freeze,
|
338
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cll).freeze,
|
339
337
|
label: "Calligrapher".freeze,
|
338
|
+
"mads:authoritativeLabel" => %(Calligrapher).freeze,
|
339
|
+
"mads:code" => %(cll).freeze,
|
340
340
|
"skos:notation" => %(cll).freeze,
|
341
341
|
"skos:prefLabel" => %(Calligrapher).freeze,
|
342
342
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
343
|
-
type: ["
|
343
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
344
344
|
property :clr,
|
345
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Colorist).freeze,
|
346
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(clr).freeze,
|
347
345
|
label: "Colorist".freeze,
|
346
|
+
"mads:authoritativeLabel" => %(Colorist).freeze,
|
347
|
+
"mads:code" => %(clr).freeze,
|
348
348
|
"skos:notation" => %(clr).freeze,
|
349
349
|
"skos:prefLabel" => %(Colorist).freeze,
|
350
350
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
351
|
-
type: ["
|
351
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
352
352
|
property :clt,
|
353
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Collotyper).freeze,
|
354
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(clt).freeze,
|
355
353
|
label: "Collotyper".freeze,
|
354
|
+
"mads:authoritativeLabel" => %(Collotyper).freeze,
|
355
|
+
"mads:code" => %(clt).freeze,
|
356
356
|
"skos:notation" => %(clt).freeze,
|
357
357
|
"skos:prefLabel" => %(Collotyper).freeze,
|
358
358
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
359
|
-
type: ["
|
359
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
360
360
|
property :cmm,
|
361
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Commentator).freeze,
|
362
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cmm).freeze,
|
363
361
|
label: "Commentator".freeze,
|
362
|
+
"mads:authoritativeLabel" => %(Commentator).freeze,
|
363
|
+
"mads:code" => %(cmm).freeze,
|
364
364
|
"skos:notation" => %(cmm).freeze,
|
365
365
|
"skos:prefLabel" => %(Commentator).freeze,
|
366
366
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prf".freeze, "dc11:contributor".freeze],
|
367
|
-
type: ["
|
367
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
368
368
|
property :cmp,
|
369
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Composer).freeze,
|
370
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cmp).freeze,
|
371
369
|
label: "Composer".freeze,
|
370
|
+
"mads:authoritativeLabel" => %(Composer).freeze,
|
371
|
+
"mads:code" => %(cmp).freeze,
|
372
372
|
"skos:notation" => %(cmp).freeze,
|
373
373
|
"skos:prefLabel" => %(Composer).freeze,
|
374
374
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
375
|
-
type: ["
|
375
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
376
376
|
property :cmt,
|
377
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Compositor).freeze,
|
378
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cmt).freeze,
|
379
377
|
label: "Compositor".freeze,
|
378
|
+
"mads:authoritativeLabel" => %(Compositor).freeze,
|
379
|
+
"mads:code" => %(cmt).freeze,
|
380
380
|
"skos:notation" => %(cmt).freeze,
|
381
381
|
"skos:prefLabel" => %(Compositor).freeze,
|
382
382
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
383
|
-
type: ["
|
383
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
384
384
|
property :cnd,
|
385
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Conductor).freeze,
|
386
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cnd).freeze,
|
387
385
|
label: "Conductor".freeze,
|
386
|
+
"mads:authoritativeLabel" => %(Conductor).freeze,
|
387
|
+
"mads:code" => %(cnd).freeze,
|
388
388
|
"skos:notation" => %(cnd).freeze,
|
389
389
|
"skos:prefLabel" => %(Conductor).freeze,
|
390
390
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prf".freeze, "dc11:contributor".freeze],
|
391
|
-
type: ["
|
391
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
392
392
|
property :cng,
|
393
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Cinematographer).freeze,
|
394
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cng).freeze,
|
395
393
|
label: "Cinematographer".freeze,
|
394
|
+
"mads:authoritativeLabel" => %(Cinematographer).freeze,
|
395
|
+
"mads:code" => %(cng).freeze,
|
396
396
|
"skos:notation" => %(cng).freeze,
|
397
397
|
"skos:prefLabel" => %(Cinematographer).freeze,
|
398
398
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
399
|
-
type: ["
|
399
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
400
400
|
property :cns,
|
401
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Censor).freeze,
|
402
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cns).freeze,
|
403
401
|
label: "Censor".freeze,
|
402
|
+
"mads:authoritativeLabel" => %(Censor).freeze,
|
403
|
+
"mads:code" => %(cns).freeze,
|
404
404
|
"skos:notation" => %(cns).freeze,
|
405
405
|
"skos:prefLabel" => %(Censor).freeze,
|
406
406
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
407
|
-
type: ["
|
407
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
408
408
|
property :coe,
|
409
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Contestant-appellee).freeze,
|
410
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(coe).freeze,
|
411
409
|
label: "Contestant-appellee".freeze,
|
410
|
+
"mads:authoritativeLabel" => %(Contestant-appellee).freeze,
|
411
|
+
"mads:code" => %(coe).freeze,
|
412
412
|
"skos:notation" => %(coe).freeze,
|
413
413
|
"skos:prefLabel" => %(Contestant-appellee).freeze,
|
414
414
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/cos".freeze],
|
415
|
-
type: ["
|
415
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
416
416
|
property :col,
|
417
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Collector).freeze,
|
418
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(col).freeze,
|
419
417
|
label: "Collector".freeze,
|
418
|
+
"mads:authoritativeLabel" => %(Collector).freeze,
|
419
|
+
"mads:code" => %(col).freeze,
|
420
420
|
"skos:notation" => %(col).freeze,
|
421
421
|
"skos:prefLabel" => %(Collector).freeze,
|
422
422
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/cur".freeze],
|
423
|
-
type: ["
|
423
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
424
424
|
property :com,
|
425
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Compiler).freeze,
|
426
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(com).freeze,
|
427
425
|
label: "Compiler".freeze,
|
426
|
+
"mads:authoritativeLabel" => %(Compiler).freeze,
|
427
|
+
"mads:code" => %(com).freeze,
|
428
428
|
"skos:notation" => %(com).freeze,
|
429
429
|
"skos:prefLabel" => %(Compiler).freeze,
|
430
430
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
431
|
-
type: ["
|
431
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
432
432
|
property :con,
|
433
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Conservator).freeze,
|
434
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(con).freeze,
|
435
433
|
label: "Conservator".freeze,
|
434
|
+
"mads:authoritativeLabel" => %(Conservator).freeze,
|
435
|
+
"mads:code" => %(con).freeze,
|
436
436
|
"skos:notation" => %(con).freeze,
|
437
437
|
"skos:prefLabel" => %(Conservator).freeze,
|
438
438
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
439
|
-
type: ["
|
439
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
440
440
|
property :cor,
|
441
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Collection registrar).freeze,
|
442
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cor).freeze,
|
443
441
|
label: "Collection registrar".freeze,
|
442
|
+
"mads:authoritativeLabel" => %(Collection registrar).freeze,
|
443
|
+
"mads:code" => %(cor).freeze,
|
444
444
|
"skos:notation" => %(cor).freeze,
|
445
445
|
"skos:prefLabel" => %(Collection registrar).freeze,
|
446
446
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/cur".freeze, "dc11:contributor".freeze],
|
447
|
-
type: ["
|
447
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
448
448
|
property :cos,
|
449
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Contestant).freeze,
|
450
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cos).freeze,
|
451
449
|
label: "Contestant".freeze,
|
450
|
+
"mads:authoritativeLabel" => %(Contestant).freeze,
|
451
|
+
"mads:code" => %(cos).freeze,
|
452
452
|
"skos:notation" => %(cos).freeze,
|
453
453
|
"skos:prefLabel" => %(Contestant).freeze,
|
454
454
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
455
|
-
type: ["
|
455
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
456
456
|
property :cot,
|
457
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Contestant-appellant).freeze,
|
458
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cot).freeze,
|
459
457
|
label: "Contestant-appellant".freeze,
|
458
|
+
"mads:authoritativeLabel" => %(Contestant-appellant).freeze,
|
459
|
+
"mads:code" => %(cot).freeze,
|
460
460
|
"skos:notation" => %(cot).freeze,
|
461
461
|
"skos:prefLabel" => %(Contestant-appellant).freeze,
|
462
462
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/cos".freeze],
|
463
|
-
type: ["
|
463
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
464
464
|
property :cou,
|
465
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Court governed).freeze,
|
466
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cou).freeze,
|
467
465
|
label: "Court governed".freeze,
|
466
|
+
"mads:authoritativeLabel" => %(Court governed).freeze,
|
467
|
+
"mads:code" => %(cou).freeze,
|
468
468
|
"skos:notation" => %(cou).freeze,
|
469
469
|
"skos:prefLabel" => %(Court governed).freeze,
|
470
470
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
471
|
-
type: ["
|
471
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
472
472
|
property :cov,
|
473
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Cover designer).freeze,
|
474
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cov).freeze,
|
475
473
|
label: "Cover designer".freeze,
|
474
|
+
"mads:authoritativeLabel" => %(Cover designer).freeze,
|
475
|
+
"mads:code" => %(cov).freeze,
|
476
476
|
"skos:notation" => %(cov).freeze,
|
477
477
|
"skos:prefLabel" => %(Cover designer).freeze,
|
478
478
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
479
|
-
type: ["
|
479
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
480
480
|
property :cpc,
|
481
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Copyright claimant).freeze,
|
482
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cpc).freeze,
|
483
481
|
label: "Copyright claimant".freeze,
|
482
|
+
"mads:authoritativeLabel" => %(Copyright claimant).freeze,
|
483
|
+
"mads:code" => %(cpc).freeze,
|
484
484
|
"skos:notation" => %(cpc).freeze,
|
485
485
|
"skos:prefLabel" => %(Copyright claimant).freeze,
|
486
486
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
487
|
-
type: ["
|
487
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
488
488
|
property :cpe,
|
489
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Complainant-appellee).freeze,
|
490
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cpe).freeze,
|
491
489
|
label: "Complainant-appellee".freeze,
|
490
|
+
"mads:authoritativeLabel" => %(Complainant-appellee).freeze,
|
491
|
+
"mads:code" => %(cpe).freeze,
|
492
492
|
"skos:notation" => %(cpe).freeze,
|
493
493
|
"skos:prefLabel" => %(Complainant-appellee).freeze,
|
494
494
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/cpl".freeze],
|
495
|
-
type: ["
|
495
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
496
496
|
property :cph,
|
497
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Copyright holder).freeze,
|
498
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cph).freeze,
|
499
497
|
label: "Copyright holder".freeze,
|
498
|
+
"mads:authoritativeLabel" => %(Copyright holder).freeze,
|
499
|
+
"mads:code" => %(cph).freeze,
|
500
500
|
"skos:notation" => %(cph).freeze,
|
501
501
|
"skos:prefLabel" => %(Copyright holder).freeze,
|
502
502
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
503
|
-
type: ["
|
503
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
504
504
|
property :cpl,
|
505
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Complainant).freeze,
|
506
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cpl).freeze,
|
507
505
|
label: "Complainant".freeze,
|
506
|
+
"mads:authoritativeLabel" => %(Complainant).freeze,
|
507
|
+
"mads:code" => %(cpl).freeze,
|
508
508
|
"skos:notation" => %(cpl).freeze,
|
509
509
|
"skos:prefLabel" => %(Complainant).freeze,
|
510
510
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
511
|
-
type: ["
|
511
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
512
512
|
property :cpt,
|
513
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Complainant-appellant).freeze,
|
514
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cpt).freeze,
|
515
513
|
label: "Complainant-appellant".freeze,
|
514
|
+
"mads:authoritativeLabel" => %(Complainant-appellant).freeze,
|
515
|
+
"mads:code" => %(cpt).freeze,
|
516
516
|
"skos:notation" => %(cpt).freeze,
|
517
517
|
"skos:prefLabel" => %(Complainant-appellant).freeze,
|
518
518
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/cpl".freeze],
|
519
|
-
type: ["
|
519
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
520
520
|
property :cre,
|
521
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Creator).freeze,
|
522
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cre).freeze,
|
523
521
|
label: "Creator".freeze,
|
522
|
+
"mads:authoritativeLabel" => %(Creator).freeze,
|
523
|
+
"mads:code" => %(cre).freeze,
|
524
524
|
"skos:notation" => %(cre).freeze,
|
525
525
|
"skos:prefLabel" => %(Creator).freeze,
|
526
526
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:creator".freeze, "dc11:contributor".freeze],
|
527
|
-
type: ["
|
527
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
528
528
|
property :crp,
|
529
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Correspondent).freeze,
|
530
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(crp).freeze,
|
531
529
|
label: "Correspondent".freeze,
|
530
|
+
"mads:authoritativeLabel" => %(Correspondent).freeze,
|
531
|
+
"mads:code" => %(crp).freeze,
|
532
532
|
"skos:notation" => %(crp).freeze,
|
533
533
|
"skos:prefLabel" => %(Correspondent).freeze,
|
534
534
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
535
|
-
type: ["
|
535
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
536
536
|
property :crr,
|
537
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Corrector).freeze,
|
538
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(crr).freeze,
|
539
537
|
label: "Corrector".freeze,
|
538
|
+
"mads:authoritativeLabel" => %(Corrector).freeze,
|
539
|
+
"mads:code" => %(crr).freeze,
|
540
540
|
"skos:notation" => %(crr).freeze,
|
541
541
|
"skos:prefLabel" => %(Corrector).freeze,
|
542
542
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
543
|
-
type: ["
|
543
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
544
544
|
property :crt,
|
545
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Court reporter).freeze,
|
546
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(crt).freeze,
|
547
545
|
label: "Court reporter".freeze,
|
546
|
+
"mads:authoritativeLabel" => %(Court reporter).freeze,
|
547
|
+
"mads:code" => %(crt).freeze,
|
548
548
|
"skos:notation" => %(crt).freeze,
|
549
549
|
"skos:prefLabel" => %(Court reporter).freeze,
|
550
550
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
551
|
-
type: ["
|
551
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
552
552
|
property :csl,
|
553
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Consultant).freeze,
|
554
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(csl).freeze,
|
555
553
|
label: "Consultant".freeze,
|
554
|
+
"mads:authoritativeLabel" => %(Consultant).freeze,
|
555
|
+
"mads:code" => %(csl).freeze,
|
556
556
|
"skos:notation" => %(csl).freeze,
|
557
557
|
"skos:prefLabel" => %(Consultant).freeze,
|
558
558
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
559
|
-
type: ["
|
559
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
560
560
|
property :csp,
|
561
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Consultant to a project).freeze,
|
562
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(csp).freeze,
|
563
561
|
label: "Consultant to a project".freeze,
|
562
|
+
"mads:authoritativeLabel" => %(Consultant to a project).freeze,
|
563
|
+
"mads:code" => %(csp).freeze,
|
564
564
|
"skos:notation" => %(csp).freeze,
|
565
565
|
"skos:prefLabel" => %(Consultant to a project).freeze,
|
566
566
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
567
|
-
type: ["
|
567
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
568
568
|
property :cst,
|
569
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Costume designer).freeze,
|
570
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cst).freeze,
|
571
569
|
label: "Costume designer".freeze,
|
570
|
+
"mads:authoritativeLabel" => %(Costume designer).freeze,
|
571
|
+
"mads:code" => %(cst).freeze,
|
572
572
|
"skos:notation" => %(cst).freeze,
|
573
573
|
"skos:prefLabel" => %(Costume designer).freeze,
|
574
574
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
575
|
-
type: ["
|
575
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
576
576
|
property :ctb,
|
577
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Contributor).freeze,
|
578
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ctb).freeze,
|
579
577
|
label: "Contributor".freeze,
|
578
|
+
"mads:authoritativeLabel" => %(Contributor).freeze,
|
579
|
+
"mads:code" => %(ctb).freeze,
|
580
580
|
"skos:notation" => %(ctb).freeze,
|
581
581
|
"skos:prefLabel" => %(Contributor).freeze,
|
582
582
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
583
|
-
type: ["
|
583
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
584
584
|
property :cte,
|
585
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Contestee-appellee).freeze,
|
586
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cte).freeze,
|
587
585
|
label: "Contestee-appellee".freeze,
|
586
|
+
"mads:authoritativeLabel" => %(Contestee-appellee).freeze,
|
587
|
+
"mads:code" => %(cte).freeze,
|
588
588
|
"skos:notation" => %(cte).freeze,
|
589
589
|
"skos:prefLabel" => %(Contestee-appellee).freeze,
|
590
590
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/cts".freeze],
|
591
|
-
type: ["
|
591
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
592
592
|
property :ctg,
|
593
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Cartographer).freeze,
|
594
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ctg).freeze,
|
595
593
|
label: "Cartographer".freeze,
|
594
|
+
"mads:authoritativeLabel" => %(Cartographer).freeze,
|
595
|
+
"mads:code" => %(ctg).freeze,
|
596
596
|
"skos:notation" => %(ctg).freeze,
|
597
597
|
"skos:prefLabel" => %(Cartographer).freeze,
|
598
598
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
599
|
-
type: ["
|
599
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
600
600
|
property :ctr,
|
601
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Contractor).freeze,
|
602
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ctr).freeze,
|
603
601
|
label: "Contractor".freeze,
|
602
|
+
"mads:authoritativeLabel" => %(Contractor).freeze,
|
603
|
+
"mads:code" => %(ctr).freeze,
|
604
604
|
"skos:notation" => %(ctr).freeze,
|
605
605
|
"skos:prefLabel" => %(Contractor).freeze,
|
606
606
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
607
|
-
type: ["
|
607
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
608
608
|
property :cts,
|
609
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Contestee).freeze,
|
610
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cts).freeze,
|
611
609
|
label: "Contestee".freeze,
|
610
|
+
"mads:authoritativeLabel" => %(Contestee).freeze,
|
611
|
+
"mads:code" => %(cts).freeze,
|
612
612
|
"skos:notation" => %(cts).freeze,
|
613
613
|
"skos:prefLabel" => %(Contestee).freeze,
|
614
614
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
615
|
-
type: ["
|
615
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
616
616
|
property :ctt,
|
617
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Contestee-appellant).freeze,
|
618
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ctt).freeze,
|
619
617
|
label: "Contestee-appellant".freeze,
|
618
|
+
"mads:authoritativeLabel" => %(Contestee-appellant).freeze,
|
619
|
+
"mads:code" => %(ctt).freeze,
|
620
620
|
"skos:notation" => %(ctt).freeze,
|
621
621
|
"skos:prefLabel" => %(Contestee-appellant).freeze,
|
622
622
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/cts".freeze],
|
623
|
-
type: ["
|
623
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
624
624
|
property :cur,
|
625
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Curator).freeze,
|
626
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cur).freeze,
|
627
625
|
label: "Curator".freeze,
|
626
|
+
"mads:authoritativeLabel" => %(Curator).freeze,
|
627
|
+
"mads:code" => %(cur).freeze,
|
628
628
|
"skos:notation" => %(cur).freeze,
|
629
629
|
"skos:prefLabel" => %(Curator).freeze,
|
630
630
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
631
|
-
type: ["
|
631
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
632
632
|
property :cwt,
|
633
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Commentator for written text).freeze,
|
634
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(cwt).freeze,
|
635
633
|
label: "Commentator for written text".freeze,
|
634
|
+
"mads:authoritativeLabel" => %(Commentator for written text).freeze,
|
635
|
+
"mads:code" => %(cwt).freeze,
|
636
636
|
"skos:notation" => %(cwt).freeze,
|
637
637
|
"skos:prefLabel" => %(Commentator for written text).freeze,
|
638
638
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
639
|
-
type: ["
|
639
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
640
640
|
property :dbp,
|
641
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Distribution place).freeze,
|
642
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dbp).freeze,
|
643
641
|
label: "Distribution place".freeze,
|
642
|
+
"mads:authoritativeLabel" => %(Distribution place).freeze,
|
643
|
+
"mads:code" => %(dbp).freeze,
|
644
644
|
"skos:notation" => %(dbp).freeze,
|
645
645
|
"skos:prefLabel" => %(Distribution place).freeze,
|
646
646
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
647
|
-
type: ["
|
647
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
648
648
|
property :dfd,
|
649
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Defendant).freeze,
|
650
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dfd).freeze,
|
651
649
|
label: "Defendant".freeze,
|
650
|
+
"mads:authoritativeLabel" => %(Defendant).freeze,
|
651
|
+
"mads:code" => %(dfd).freeze,
|
652
652
|
"skos:notation" => %(dfd).freeze,
|
653
653
|
"skos:prefLabel" => %(Defendant).freeze,
|
654
654
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
655
|
-
type: ["
|
655
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
656
656
|
property :dfe,
|
657
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Defendant-appellee).freeze,
|
658
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dfe).freeze,
|
659
657
|
label: "Defendant-appellee".freeze,
|
658
|
+
"mads:authoritativeLabel" => %(Defendant-appellee).freeze,
|
659
|
+
"mads:code" => %(dfe).freeze,
|
660
660
|
"skos:notation" => %(dfe).freeze,
|
661
661
|
"skos:prefLabel" => %(Defendant-appellee).freeze,
|
662
662
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/dfd".freeze],
|
663
|
-
type: ["
|
663
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
664
664
|
property :dft,
|
665
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Defendant-appellant).freeze,
|
666
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dft).freeze,
|
667
665
|
label: "Defendant-appellant".freeze,
|
666
|
+
"mads:authoritativeLabel" => %(Defendant-appellant).freeze,
|
667
|
+
"mads:code" => %(dft).freeze,
|
668
668
|
"skos:notation" => %(dft).freeze,
|
669
669
|
"skos:prefLabel" => %(Defendant-appellant).freeze,
|
670
670
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/dfd".freeze],
|
671
|
-
type: ["
|
671
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
672
672
|
property :dgg,
|
673
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Degree granting institution).freeze,
|
674
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dgg).freeze,
|
675
673
|
label: "Degree granting institution".freeze,
|
674
|
+
"mads:authoritativeLabel" => %(Degree granting institution).freeze,
|
675
|
+
"mads:code" => %(dgg).freeze,
|
676
676
|
"skos:notation" => %(dgg).freeze,
|
677
677
|
"skos:prefLabel" => %(Degree granting institution).freeze,
|
678
678
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
679
|
-
type: ["
|
679
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
680
680
|
property :dgs,
|
681
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Degree supervisor).freeze,
|
682
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dgs).freeze,
|
683
681
|
label: "Degree supervisor".freeze,
|
682
|
+
"mads:authoritativeLabel" => %(Degree supervisor).freeze,
|
683
|
+
"mads:code" => %(dgs).freeze,
|
684
684
|
"skos:notation" => %(dgs).freeze,
|
685
685
|
"skos:prefLabel" => %(Degree supervisor).freeze,
|
686
686
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
687
|
-
type: ["
|
687
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
688
688
|
property :dis,
|
689
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Dissertant).freeze,
|
690
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dis).freeze,
|
691
689
|
label: "Dissertant".freeze,
|
690
|
+
"mads:authoritativeLabel" => %(Dissertant).freeze,
|
691
|
+
"mads:code" => %(dis).freeze,
|
692
692
|
"skos:notation" => %(dis).freeze,
|
693
693
|
"skos:prefLabel" => %(Dissertant).freeze,
|
694
694
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
695
|
-
type: ["
|
695
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
696
696
|
property :dln,
|
697
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Delineator).freeze,
|
698
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dln).freeze,
|
699
697
|
label: "Delineator".freeze,
|
698
|
+
"mads:authoritativeLabel" => %(Delineator).freeze,
|
699
|
+
"mads:code" => %(dln).freeze,
|
700
700
|
"skos:notation" => %(dln).freeze,
|
701
701
|
"skos:prefLabel" => %(Delineator).freeze,
|
702
702
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
703
|
-
type: ["
|
703
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
704
704
|
property :dnc,
|
705
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Dancer).freeze,
|
706
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dnc).freeze,
|
707
705
|
label: "Dancer".freeze,
|
706
|
+
"mads:authoritativeLabel" => %(Dancer).freeze,
|
707
|
+
"mads:code" => %(dnc).freeze,
|
708
708
|
"skos:notation" => %(dnc).freeze,
|
709
709
|
"skos:prefLabel" => %(Dancer).freeze,
|
710
710
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prf".freeze, "dc11:contributor".freeze],
|
711
|
-
type: ["
|
711
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
712
712
|
property :dnr,
|
713
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Donor).freeze,
|
714
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dnr).freeze,
|
715
713
|
label: "Donor".freeze,
|
714
|
+
"mads:authoritativeLabel" => %(Donor).freeze,
|
715
|
+
"mads:code" => %(dnr).freeze,
|
716
716
|
"skos:notation" => %(dnr).freeze,
|
717
717
|
"skos:prefLabel" => %(Donor).freeze,
|
718
718
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/fmo".freeze],
|
719
|
-
type: ["
|
719
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
720
720
|
property :dpc,
|
721
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Depicted).freeze,
|
722
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dpc).freeze,
|
723
721
|
label: "Depicted".freeze,
|
722
|
+
"mads:authoritativeLabel" => %(Depicted).freeze,
|
723
|
+
"mads:code" => %(dpc).freeze,
|
724
724
|
"skos:notation" => %(dpc).freeze,
|
725
725
|
"skos:prefLabel" => %(Depicted).freeze,
|
726
726
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:subject".freeze],
|
727
|
-
type: ["
|
727
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
728
728
|
property :dpt,
|
729
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Depositor).freeze,
|
730
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dpt).freeze,
|
731
729
|
label: "Depositor".freeze,
|
730
|
+
"mads:authoritativeLabel" => %(Depositor).freeze,
|
731
|
+
"mads:code" => %(dpt).freeze,
|
732
732
|
"skos:notation" => %(dpt).freeze,
|
733
733
|
"skos:prefLabel" => %(Depositor).freeze,
|
734
734
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/own".freeze],
|
735
|
-
type: ["
|
735
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
736
736
|
property :drm,
|
737
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Draftsman).freeze,
|
738
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(drm).freeze,
|
739
737
|
label: "Draftsman".freeze,
|
738
|
+
"mads:authoritativeLabel" => %(Draftsman).freeze,
|
739
|
+
"mads:code" => %(drm).freeze,
|
740
740
|
"skos:notation" => %(drm).freeze,
|
741
741
|
"skos:prefLabel" => %(Draftsman).freeze,
|
742
742
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
743
|
-
type: ["
|
743
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
744
744
|
property :drt,
|
745
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Director).freeze,
|
746
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(drt).freeze,
|
747
745
|
label: "Director".freeze,
|
746
|
+
"mads:authoritativeLabel" => %(Director).freeze,
|
747
|
+
"mads:code" => %(drt).freeze,
|
748
748
|
"skos:notation" => %(drt).freeze,
|
749
749
|
"skos:prefLabel" => %(Director).freeze,
|
750
750
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
751
|
-
type: ["
|
751
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
752
752
|
property :dsr,
|
753
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Designer).freeze,
|
754
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dsr).freeze,
|
755
753
|
label: "Designer".freeze,
|
754
|
+
"mads:authoritativeLabel" => %(Designer).freeze,
|
755
|
+
"mads:code" => %(dsr).freeze,
|
756
756
|
"skos:notation" => %(dsr).freeze,
|
757
757
|
"skos:prefLabel" => %(Designer).freeze,
|
758
758
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
759
|
-
type: ["
|
759
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
760
760
|
property :dst,
|
761
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Distributor).freeze,
|
762
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dst).freeze,
|
763
761
|
label: "Distributor".freeze,
|
762
|
+
"mads:authoritativeLabel" => %(Distributor).freeze,
|
763
|
+
"mads:code" => %(dst).freeze,
|
764
764
|
"skos:notation" => %(dst).freeze,
|
765
765
|
"skos:prefLabel" => %(Distributor).freeze,
|
766
766
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prv".freeze, "dc11:publisher".freeze],
|
767
|
-
type: ["
|
767
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
768
768
|
property :dtc,
|
769
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Data contributor).freeze,
|
770
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dtc).freeze,
|
771
769
|
label: "Data contributor".freeze,
|
770
|
+
"mads:authoritativeLabel" => %(Data contributor).freeze,
|
771
|
+
"mads:code" => %(dtc).freeze,
|
772
772
|
"skos:notation" => %(dtc).freeze,
|
773
773
|
"skos:prefLabel" => %(Data contributor).freeze,
|
774
774
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
775
|
-
type: ["
|
775
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
776
776
|
property :dte,
|
777
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Dedicatee).freeze,
|
778
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dte).freeze,
|
779
777
|
label: "Dedicatee".freeze,
|
778
|
+
"mads:authoritativeLabel" => %(Dedicatee).freeze,
|
779
|
+
"mads:code" => %(dte).freeze,
|
780
780
|
"skos:notation" => %(dte).freeze,
|
781
781
|
"skos:prefLabel" => %(Dedicatee).freeze,
|
782
782
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
783
|
-
type: ["
|
783
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
784
784
|
property :dtm,
|
785
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Data manager).freeze,
|
786
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dtm).freeze,
|
787
785
|
label: "Data manager".freeze,
|
786
|
+
"mads:authoritativeLabel" => %(Data manager).freeze,
|
787
|
+
"mads:code" => %(dtm).freeze,
|
788
788
|
"skos:notation" => %(dtm).freeze,
|
789
789
|
"skos:prefLabel" => %(Data manager).freeze,
|
790
790
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
791
|
-
type: ["
|
791
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
792
792
|
property :dto,
|
793
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Dedicator).freeze,
|
794
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dto).freeze,
|
795
793
|
label: "Dedicator".freeze,
|
794
|
+
"mads:authoritativeLabel" => %(Dedicator).freeze,
|
795
|
+
"mads:code" => %(dto).freeze,
|
796
796
|
"skos:notation" => %(dto).freeze,
|
797
797
|
"skos:prefLabel" => %(Dedicator).freeze,
|
798
798
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
799
|
-
type: ["
|
799
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
800
800
|
property :dub,
|
801
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Dubious author).freeze,
|
802
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(dub).freeze,
|
803
801
|
label: "Dubious author".freeze,
|
802
|
+
"mads:authoritativeLabel" => %(Dubious author).freeze,
|
803
|
+
"mads:code" => %(dub).freeze,
|
804
804
|
"skos:notation" => %(dub).freeze,
|
805
805
|
"skos:prefLabel" => %(Dubious author).freeze,
|
806
806
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
807
|
-
type: ["
|
807
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
808
808
|
property :edc,
|
809
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Editor of compilation).freeze,
|
810
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(edc).freeze,
|
811
809
|
label: "Editor of compilation".freeze,
|
810
|
+
"mads:authoritativeLabel" => %(Editor of compilation).freeze,
|
811
|
+
"mads:code" => %(edc).freeze,
|
812
812
|
"skos:notation" => %(edc).freeze,
|
813
813
|
"skos:prefLabel" => %(Editor of compilation).freeze,
|
814
814
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
815
|
-
type: ["
|
815
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
816
816
|
property :edm,
|
817
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Editor of moving image work).freeze,
|
818
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(edm).freeze,
|
819
817
|
label: "Editor of moving image work".freeze,
|
818
|
+
"mads:authoritativeLabel" => %(Editor of moving image work).freeze,
|
819
|
+
"mads:code" => %(edm).freeze,
|
820
820
|
"skos:notation" => %(edm).freeze,
|
821
821
|
"skos:prefLabel" => %(Editor of moving image work).freeze,
|
822
822
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
823
|
-
type: ["
|
823
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
824
824
|
property :edt,
|
825
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Editor).freeze,
|
826
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(edt).freeze,
|
827
825
|
label: "Editor".freeze,
|
826
|
+
"mads:authoritativeLabel" => %(Editor).freeze,
|
827
|
+
"mads:code" => %(edt).freeze,
|
828
828
|
"skos:notation" => %(edt).freeze,
|
829
829
|
"skos:prefLabel" => %(Editor).freeze,
|
830
830
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
831
|
-
type: ["
|
831
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
832
832
|
property :egr,
|
833
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Engraver).freeze,
|
834
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(egr).freeze,
|
835
833
|
label: "Engraver".freeze,
|
834
|
+
"mads:authoritativeLabel" => %(Engraver).freeze,
|
835
|
+
"mads:code" => %(egr).freeze,
|
836
836
|
"skos:notation" => %(egr).freeze,
|
837
837
|
"skos:prefLabel" => %(Engraver).freeze,
|
838
838
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
839
|
-
type: ["
|
839
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
840
840
|
property :elg,
|
841
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Electrician).freeze,
|
842
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(elg).freeze,
|
843
841
|
label: "Electrician".freeze,
|
842
|
+
"mads:authoritativeLabel" => %(Electrician).freeze,
|
843
|
+
"mads:code" => %(elg).freeze,
|
844
844
|
"skos:notation" => %(elg).freeze,
|
845
845
|
"skos:prefLabel" => %(Electrician).freeze,
|
846
846
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
847
|
-
type: ["
|
847
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
848
848
|
property :elt,
|
849
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Electrotyper).freeze,
|
850
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(elt).freeze,
|
851
849
|
label: "Electrotyper".freeze,
|
850
|
+
"mads:authoritativeLabel" => %(Electrotyper).freeze,
|
851
|
+
"mads:code" => %(elt).freeze,
|
852
852
|
"skos:notation" => %(elt).freeze,
|
853
853
|
"skos:prefLabel" => %(Electrotyper).freeze,
|
854
854
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
855
|
-
type: ["
|
855
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
856
856
|
property :eng,
|
857
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Engineer).freeze,
|
858
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(eng).freeze,
|
859
857
|
label: "Engineer".freeze,
|
858
|
+
"mads:authoritativeLabel" => %(Engineer).freeze,
|
859
|
+
"mads:code" => %(eng).freeze,
|
860
860
|
"skos:notation" => %(eng).freeze,
|
861
861
|
"skos:prefLabel" => %(Engineer).freeze,
|
862
862
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
863
|
-
type: ["
|
863
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
864
864
|
property :enj,
|
865
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Enacting jurisdiction).freeze,
|
866
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(enj).freeze,
|
867
865
|
label: "Enacting jurisdiction".freeze,
|
866
|
+
"mads:authoritativeLabel" => %(Enacting jurisdiction).freeze,
|
867
|
+
"mads:code" => %(enj).freeze,
|
868
868
|
"skos:notation" => %(enj).freeze,
|
869
869
|
"skos:prefLabel" => %(Enacting jurisdiction).freeze,
|
870
870
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
871
|
-
type: ["
|
871
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
872
872
|
property :etr,
|
873
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Etcher).freeze,
|
874
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(etr).freeze,
|
875
873
|
label: "Etcher".freeze,
|
874
|
+
"mads:authoritativeLabel" => %(Etcher).freeze,
|
875
|
+
"mads:code" => %(etr).freeze,
|
876
876
|
"skos:notation" => %(etr).freeze,
|
877
877
|
"skos:prefLabel" => %(Etcher).freeze,
|
878
878
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
879
|
-
type: ["
|
879
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
880
880
|
property :evp,
|
881
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Event place).freeze,
|
882
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(evp).freeze,
|
883
881
|
label: "Event place".freeze,
|
882
|
+
"mads:authoritativeLabel" => %(Event place).freeze,
|
883
|
+
"mads:code" => %(evp).freeze,
|
884
884
|
"skos:notation" => %(evp).freeze,
|
885
885
|
"skos:prefLabel" => %(Event place).freeze,
|
886
886
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
887
|
-
type: ["
|
887
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
888
888
|
property :exp,
|
889
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Expert).freeze,
|
890
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(exp).freeze,
|
891
889
|
label: "Expert".freeze,
|
890
|
+
"mads:authoritativeLabel" => %(Expert).freeze,
|
891
|
+
"mads:code" => %(exp).freeze,
|
892
892
|
"skos:notation" => %(exp).freeze,
|
893
893
|
"skos:prefLabel" => %(Expert).freeze,
|
894
894
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
895
|
-
type: ["
|
895
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
896
896
|
property :fac,
|
897
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Facsimilist).freeze,
|
898
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(fac).freeze,
|
899
897
|
label: "Facsimilist".freeze,
|
898
|
+
"mads:authoritativeLabel" => %(Facsimilist).freeze,
|
899
|
+
"mads:code" => %(fac).freeze,
|
900
900
|
"skos:notation" => %(fac).freeze,
|
901
901
|
"skos:prefLabel" => %(Facsimilist).freeze,
|
902
902
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
903
|
-
type: ["
|
903
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
904
904
|
property :fds,
|
905
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Film distributor).freeze,
|
906
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(fds).freeze,
|
907
905
|
label: "Film distributor".freeze,
|
906
|
+
"mads:authoritativeLabel" => %(Film distributor).freeze,
|
907
|
+
"mads:code" => %(fds).freeze,
|
908
908
|
"skos:notation" => %(fds).freeze,
|
909
909
|
"skos:prefLabel" => %(Film distributor).freeze,
|
910
910
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/dst".freeze, "dc11:contributor".freeze],
|
911
|
-
type: ["
|
911
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
912
912
|
property :fld,
|
913
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Field director).freeze,
|
914
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(fld).freeze,
|
915
913
|
label: "Field director".freeze,
|
914
|
+
"mads:authoritativeLabel" => %(Field director).freeze,
|
915
|
+
"mads:code" => %(fld).freeze,
|
916
916
|
"skos:notation" => %(fld).freeze,
|
917
917
|
"skos:prefLabel" => %(Field director).freeze,
|
918
918
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
919
|
-
type: ["
|
919
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
920
920
|
property :flm,
|
921
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Film editor).freeze,
|
922
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(flm).freeze,
|
923
921
|
label: "Film editor".freeze,
|
922
|
+
"mads:authoritativeLabel" => %(Film editor).freeze,
|
923
|
+
"mads:code" => %(flm).freeze,
|
924
924
|
"skos:notation" => %(flm).freeze,
|
925
925
|
"skos:prefLabel" => %(Film editor).freeze,
|
926
926
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/edm".freeze, "dc11:contributor".freeze],
|
927
|
-
type: ["
|
927
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
928
928
|
property :fmd,
|
929
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Film director).freeze,
|
930
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(fmd).freeze,
|
931
929
|
label: "Film director".freeze,
|
930
|
+
"mads:authoritativeLabel" => %(Film director).freeze,
|
931
|
+
"mads:code" => %(fmd).freeze,
|
932
932
|
"skos:notation" => %(fmd).freeze,
|
933
933
|
"skos:prefLabel" => %(Film director).freeze,
|
934
934
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/drt".freeze, "dc11:contributor".freeze],
|
935
|
-
type: ["
|
935
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
936
936
|
property :fmk,
|
937
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Filmmaker).freeze,
|
938
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(fmk).freeze,
|
939
937
|
label: "Filmmaker".freeze,
|
938
|
+
"mads:authoritativeLabel" => %(Filmmaker).freeze,
|
939
|
+
"mads:code" => %(fmk).freeze,
|
940
940
|
"skos:notation" => %(fmk).freeze,
|
941
941
|
"skos:prefLabel" => %(Filmmaker).freeze,
|
942
942
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/drt".freeze, "dc11:contributor".freeze],
|
943
|
-
type: ["
|
943
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
944
944
|
property :fmo,
|
945
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Former owner).freeze,
|
946
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(fmo).freeze,
|
947
945
|
label: "Former owner".freeze,
|
946
|
+
"mads:authoritativeLabel" => %(Former owner).freeze,
|
947
|
+
"mads:code" => %(fmo).freeze,
|
948
948
|
"skos:notation" => %(fmo).freeze,
|
949
949
|
"skos:prefLabel" => %(Former owner).freeze,
|
950
950
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
951
|
-
type: ["
|
951
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
952
952
|
property :fmp,
|
953
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Film producer).freeze,
|
954
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(fmp).freeze,
|
955
953
|
label: "Film producer".freeze,
|
954
|
+
"mads:authoritativeLabel" => %(Film producer).freeze,
|
955
|
+
"mads:code" => %(fmp).freeze,
|
956
956
|
"skos:notation" => %(fmp).freeze,
|
957
957
|
"skos:prefLabel" => %(Film producer).freeze,
|
958
958
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/pro".freeze, "dc11:contributor".freeze],
|
959
|
-
type: ["
|
959
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
960
960
|
property :fnd,
|
961
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Funder).freeze,
|
962
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(fnd).freeze,
|
963
961
|
label: "Funder".freeze,
|
962
|
+
"mads:authoritativeLabel" => %(Funder).freeze,
|
963
|
+
"mads:code" => %(fnd).freeze,
|
964
964
|
"skos:notation" => %(fnd).freeze,
|
965
965
|
"skos:prefLabel" => %(Funder).freeze,
|
966
966
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
967
|
-
type: ["
|
967
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
968
968
|
property :fpy,
|
969
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(First party).freeze,
|
970
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(fpy).freeze,
|
971
969
|
label: "First party".freeze,
|
970
|
+
"mads:authoritativeLabel" => %(First party).freeze,
|
971
|
+
"mads:code" => %(fpy).freeze,
|
972
972
|
"skos:notation" => %(fpy).freeze,
|
973
973
|
"skos:prefLabel" => %(First party).freeze,
|
974
974
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
975
|
-
type: ["
|
975
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
976
976
|
property :frg,
|
977
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Forger).freeze,
|
978
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(frg).freeze,
|
979
977
|
label: "Forger".freeze,
|
978
|
+
"mads:authoritativeLabel" => %(Forger).freeze,
|
979
|
+
"mads:code" => %(frg).freeze,
|
980
980
|
"skos:notation" => %(frg).freeze,
|
981
981
|
"skos:prefLabel" => %(Forger).freeze,
|
982
982
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
983
|
-
type: ["
|
983
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
984
984
|
property :gis,
|
985
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Geographic information specialist).freeze,
|
986
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(gis).freeze,
|
987
985
|
label: "Geographic information specialist".freeze,
|
986
|
+
"mads:authoritativeLabel" => %(Geographic information specialist).freeze,
|
987
|
+
"mads:code" => %(gis).freeze,
|
988
988
|
"skos:notation" => %(gis).freeze,
|
989
989
|
"skos:prefLabel" => %(Geographic information specialist).freeze,
|
990
990
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
991
|
-
type: ["
|
991
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
992
992
|
property :his,
|
993
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Host institution).freeze,
|
994
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(his).freeze,
|
995
993
|
label: "Host institution".freeze,
|
994
|
+
"mads:authoritativeLabel" => %(Host institution).freeze,
|
995
|
+
"mads:code" => %(his).freeze,
|
996
996
|
"skos:notation" => %(his).freeze,
|
997
997
|
"skos:prefLabel" => %(Host institution).freeze,
|
998
998
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/hst".freeze, "dc11:contributor".freeze],
|
999
|
-
type: ["
|
999
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1000
1000
|
property :hnr,
|
1001
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Honoree).freeze,
|
1002
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(hnr).freeze,
|
1003
1001
|
label: "Honoree".freeze,
|
1002
|
+
"mads:authoritativeLabel" => %(Honoree).freeze,
|
1003
|
+
"mads:code" => %(hnr).freeze,
|
1004
1004
|
"skos:notation" => %(hnr).freeze,
|
1005
1005
|
"skos:prefLabel" => %(Honoree).freeze,
|
1006
1006
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1007
|
-
type: ["
|
1007
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1008
1008
|
property :hst,
|
1009
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Host).freeze,
|
1010
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(hst).freeze,
|
1011
1009
|
label: "Host".freeze,
|
1010
|
+
"mads:authoritativeLabel" => %(Host).freeze,
|
1011
|
+
"mads:code" => %(hst).freeze,
|
1012
1012
|
"skos:notation" => %(hst).freeze,
|
1013
1013
|
"skos:prefLabel" => %(Host).freeze,
|
1014
1014
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prf".freeze, "dc11:contributor".freeze],
|
1015
|
-
type: ["
|
1015
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1016
1016
|
property :ill,
|
1017
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Illustrator).freeze,
|
1018
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ill).freeze,
|
1019
1017
|
label: "Illustrator".freeze,
|
1018
|
+
"mads:authoritativeLabel" => %(Illustrator).freeze,
|
1019
|
+
"mads:code" => %(ill).freeze,
|
1020
1020
|
"skos:notation" => %(ill).freeze,
|
1021
1021
|
"skos:prefLabel" => %(Illustrator).freeze,
|
1022
1022
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1023
|
-
type: ["
|
1023
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1024
1024
|
property :ilu,
|
1025
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Illuminator).freeze,
|
1026
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ilu).freeze,
|
1027
1025
|
label: "Illuminator".freeze,
|
1026
|
+
"mads:authoritativeLabel" => %(Illuminator).freeze,
|
1027
|
+
"mads:code" => %(ilu).freeze,
|
1028
1028
|
"skos:notation" => %(ilu).freeze,
|
1029
1029
|
"skos:prefLabel" => %(Illuminator).freeze,
|
1030
1030
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1031
|
-
type: ["
|
1031
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1032
1032
|
property :ins,
|
1033
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Inscriber).freeze,
|
1034
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ins).freeze,
|
1035
1033
|
label: "Inscriber".freeze,
|
1034
|
+
"mads:authoritativeLabel" => %(Inscriber).freeze,
|
1035
|
+
"mads:code" => %(ins).freeze,
|
1036
1036
|
"skos:notation" => %(ins).freeze,
|
1037
1037
|
"skos:prefLabel" => %(Inscriber).freeze,
|
1038
1038
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1039
|
-
type: ["
|
1039
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1040
1040
|
property :inv,
|
1041
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Inventor).freeze,
|
1042
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(inv).freeze,
|
1043
1041
|
label: "Inventor".freeze,
|
1042
|
+
"mads:authoritativeLabel" => %(Inventor).freeze,
|
1043
|
+
"mads:code" => %(inv).freeze,
|
1044
1044
|
"skos:notation" => %(inv).freeze,
|
1045
1045
|
"skos:prefLabel" => %(Inventor).freeze,
|
1046
1046
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1047
|
-
type: ["
|
1047
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1048
1048
|
property :isb,
|
1049
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Issuing body).freeze,
|
1050
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(isb).freeze,
|
1051
1049
|
label: "Issuing body".freeze,
|
1050
|
+
"mads:authoritativeLabel" => %(Issuing body).freeze,
|
1051
|
+
"mads:code" => %(isb).freeze,
|
1052
1052
|
"skos:notation" => %(isb).freeze,
|
1053
1053
|
"skos:prefLabel" => %(Issuing body).freeze,
|
1054
1054
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1055
|
-
type: ["
|
1055
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1056
1056
|
property :itr,
|
1057
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Instrumentalist).freeze,
|
1058
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(itr).freeze,
|
1059
1057
|
label: "Instrumentalist".freeze,
|
1058
|
+
"mads:authoritativeLabel" => %(Instrumentalist).freeze,
|
1059
|
+
"mads:code" => %(itr).freeze,
|
1060
1060
|
"skos:notation" => %(itr).freeze,
|
1061
1061
|
"skos:prefLabel" => %(Instrumentalist).freeze,
|
1062
1062
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prf".freeze, "dc11:contributor".freeze],
|
1063
|
-
type: ["
|
1063
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1064
1064
|
property :ive,
|
1065
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Interviewee).freeze,
|
1066
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ive).freeze,
|
1067
1065
|
label: "Interviewee".freeze,
|
1066
|
+
"mads:authoritativeLabel" => %(Interviewee).freeze,
|
1067
|
+
"mads:code" => %(ive).freeze,
|
1068
1068
|
"skos:notation" => %(ive).freeze,
|
1069
1069
|
"skos:prefLabel" => %(Interviewee).freeze,
|
1070
1070
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1071
|
-
type: ["
|
1071
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1072
1072
|
property :ivr,
|
1073
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Interviewer).freeze,
|
1074
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ivr).freeze,
|
1075
1073
|
label: "Interviewer".freeze,
|
1074
|
+
"mads:authoritativeLabel" => %(Interviewer).freeze,
|
1075
|
+
"mads:code" => %(ivr).freeze,
|
1076
1076
|
"skos:notation" => %(ivr).freeze,
|
1077
1077
|
"skos:prefLabel" => %(Interviewer).freeze,
|
1078
1078
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1079
|
-
type: ["
|
1079
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1080
1080
|
property :jud,
|
1081
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Judge).freeze,
|
1082
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(jud).freeze,
|
1083
1081
|
label: "Judge".freeze,
|
1082
|
+
"mads:authoritativeLabel" => %(Judge).freeze,
|
1083
|
+
"mads:code" => %(jud).freeze,
|
1084
1084
|
"skos:notation" => %(jud).freeze,
|
1085
1085
|
"skos:prefLabel" => %(Judge).freeze,
|
1086
1086
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1087
|
-
type: ["
|
1087
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1088
1088
|
property :jug,
|
1089
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Jurisdiction governed).freeze,
|
1090
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(jug).freeze,
|
1091
1089
|
label: "Jurisdiction governed".freeze,
|
1090
|
+
"mads:authoritativeLabel" => %(Jurisdiction governed).freeze,
|
1091
|
+
"mads:code" => %(jug).freeze,
|
1092
1092
|
"skos:notation" => %(jug).freeze,
|
1093
1093
|
"skos:prefLabel" => %(Jurisdiction governed).freeze,
|
1094
1094
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1095
|
-
type: ["
|
1095
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1096
1096
|
property :lbr,
|
1097
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Laboratory).freeze,
|
1098
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(lbr).freeze,
|
1099
1097
|
label: "Laboratory".freeze,
|
1098
|
+
"mads:authoritativeLabel" => %(Laboratory).freeze,
|
1099
|
+
"mads:code" => %(lbr).freeze,
|
1100
1100
|
"skos:notation" => %(lbr).freeze,
|
1101
1101
|
"skos:prefLabel" => %(Laboratory).freeze,
|
1102
1102
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1103
|
-
type: ["
|
1103
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1104
1104
|
property :lbt,
|
1105
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Librettist).freeze,
|
1106
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(lbt).freeze,
|
1107
1105
|
label: "Librettist".freeze,
|
1106
|
+
"mads:authoritativeLabel" => %(Librettist).freeze,
|
1107
|
+
"mads:code" => %(lbt).freeze,
|
1108
1108
|
"skos:notation" => %(lbt).freeze,
|
1109
1109
|
"skos:prefLabel" => %(Librettist).freeze,
|
1110
1110
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/aut".freeze, "dc11:contributor".freeze],
|
1111
|
-
type: ["
|
1111
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1112
1112
|
property :ldr,
|
1113
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Laboratory director).freeze,
|
1114
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ldr).freeze,
|
1115
1113
|
label: "Laboratory director".freeze,
|
1114
|
+
"mads:authoritativeLabel" => %(Laboratory director).freeze,
|
1115
|
+
"mads:code" => %(ldr).freeze,
|
1116
1116
|
"skos:notation" => %(ldr).freeze,
|
1117
1117
|
"skos:prefLabel" => %(Laboratory director).freeze,
|
1118
1118
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1119
|
-
type: ["
|
1119
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1120
1120
|
property :led,
|
1121
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Lead).freeze,
|
1122
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(led).freeze,
|
1123
1121
|
label: "Lead".freeze,
|
1122
|
+
"mads:authoritativeLabel" => %(Lead).freeze,
|
1123
|
+
"mads:code" => %(led).freeze,
|
1124
1124
|
"skos:notation" => %(led).freeze,
|
1125
1125
|
"skos:prefLabel" => %(Lead).freeze,
|
1126
1126
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1127
|
-
type: ["
|
1127
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1128
1128
|
property :lee,
|
1129
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Libelee-appellee).freeze,
|
1130
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(lee).freeze,
|
1131
1129
|
label: "Libelee-appellee".freeze,
|
1130
|
+
"mads:authoritativeLabel" => %(Libelee-appellee).freeze,
|
1131
|
+
"mads:code" => %(lee).freeze,
|
1132
1132
|
"skos:notation" => %(lee).freeze,
|
1133
1133
|
"skos:prefLabel" => %(Libelee-appellee).freeze,
|
1134
1134
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/lei".freeze],
|
1135
|
-
type: ["
|
1135
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1136
1136
|
property :lel,
|
1137
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Libelee).freeze,
|
1138
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(lel).freeze,
|
1139
1137
|
label: "Libelee".freeze,
|
1138
|
+
"mads:authoritativeLabel" => %(Libelee).freeze,
|
1139
|
+
"mads:code" => %(lel).freeze,
|
1140
1140
|
"skos:notation" => %(lel).freeze,
|
1141
1141
|
"skos:prefLabel" => %(Libelee).freeze,
|
1142
1142
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1143
|
-
type: ["
|
1143
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1144
1144
|
property :len,
|
1145
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Lender).freeze,
|
1146
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(len).freeze,
|
1147
1145
|
label: "Lender".freeze,
|
1146
|
+
"mads:authoritativeLabel" => %(Lender).freeze,
|
1147
|
+
"mads:code" => %(len).freeze,
|
1148
1148
|
"skos:notation" => %(len).freeze,
|
1149
1149
|
"skos:prefLabel" => %(Lender).freeze,
|
1150
1150
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1151
|
-
type: ["
|
1151
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1152
1152
|
property :let,
|
1153
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Libelee-appellant).freeze,
|
1154
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(let).freeze,
|
1155
1153
|
label: "Libelee-appellant".freeze,
|
1154
|
+
"mads:authoritativeLabel" => %(Libelee-appellant).freeze,
|
1155
|
+
"mads:code" => %(let).freeze,
|
1156
1156
|
"skos:notation" => %(let).freeze,
|
1157
1157
|
"skos:prefLabel" => %(Libelee-appellant).freeze,
|
1158
1158
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/lel".freeze],
|
1159
|
-
type: ["
|
1159
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1160
1160
|
property :lgd,
|
1161
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Lighting designer).freeze,
|
1162
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(lgd).freeze,
|
1163
1161
|
label: "Lighting designer".freeze,
|
1162
|
+
"mads:authoritativeLabel" => %(Lighting designer).freeze,
|
1163
|
+
"mads:code" => %(lgd).freeze,
|
1164
1164
|
"skos:notation" => %(lgd).freeze,
|
1165
1165
|
"skos:prefLabel" => %(Lighting designer).freeze,
|
1166
1166
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1167
|
-
type: ["
|
1167
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1168
1168
|
property :lie,
|
1169
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Libelant-appellee).freeze,
|
1170
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(lie).freeze,
|
1171
1169
|
label: "Libelant-appellee".freeze,
|
1170
|
+
"mads:authoritativeLabel" => %(Libelant-appellee).freeze,
|
1171
|
+
"mads:code" => %(lie).freeze,
|
1172
1172
|
"skos:notation" => %(lie).freeze,
|
1173
1173
|
"skos:prefLabel" => %(Libelant-appellee).freeze,
|
1174
1174
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/lil".freeze],
|
1175
|
-
type: ["
|
1175
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1176
1176
|
property :lil,
|
1177
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Libelant).freeze,
|
1178
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(lil).freeze,
|
1179
1177
|
label: "Libelant".freeze,
|
1178
|
+
"mads:authoritativeLabel" => %(Libelant).freeze,
|
1179
|
+
"mads:code" => %(lil).freeze,
|
1180
1180
|
"skos:notation" => %(lil).freeze,
|
1181
1181
|
"skos:prefLabel" => %(Libelant).freeze,
|
1182
1182
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1183
|
-
type: ["
|
1183
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1184
1184
|
property :lit,
|
1185
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Libelant-appellant).freeze,
|
1186
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(lit).freeze,
|
1187
1185
|
label: "Libelant-appellant".freeze,
|
1186
|
+
"mads:authoritativeLabel" => %(Libelant-appellant).freeze,
|
1187
|
+
"mads:code" => %(lit).freeze,
|
1188
1188
|
"skos:notation" => %(lit).freeze,
|
1189
1189
|
"skos:prefLabel" => %(Libelant-appellant).freeze,
|
1190
1190
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/lil".freeze],
|
1191
|
-
type: ["
|
1191
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1192
1192
|
property :lsa,
|
1193
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Landscape architect).freeze,
|
1194
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(lsa).freeze,
|
1195
1193
|
label: "Landscape architect".freeze,
|
1194
|
+
"mads:authoritativeLabel" => %(Landscape architect).freeze,
|
1195
|
+
"mads:code" => %(lsa).freeze,
|
1196
1196
|
"skos:notation" => %(lsa).freeze,
|
1197
1197
|
"skos:prefLabel" => %(Landscape architect).freeze,
|
1198
1198
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/arc".freeze, "dc11:contributor".freeze],
|
1199
|
-
type: ["
|
1199
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1200
1200
|
property :lse,
|
1201
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Licensee).freeze,
|
1202
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(lse).freeze,
|
1203
1201
|
label: "Licensee".freeze,
|
1202
|
+
"mads:authoritativeLabel" => %(Licensee).freeze,
|
1203
|
+
"mads:code" => %(lse).freeze,
|
1204
1204
|
"skos:notation" => %(lse).freeze,
|
1205
1205
|
"skos:prefLabel" => %(Licensee).freeze,
|
1206
1206
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1207
|
-
type: ["
|
1207
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1208
1208
|
property :lso,
|
1209
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Licensor).freeze,
|
1210
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(lso).freeze,
|
1211
1209
|
label: "Licensor".freeze,
|
1210
|
+
"mads:authoritativeLabel" => %(Licensor).freeze,
|
1211
|
+
"mads:code" => %(lso).freeze,
|
1212
1212
|
"skos:notation" => %(lso).freeze,
|
1213
1213
|
"skos:prefLabel" => %(Licensor).freeze,
|
1214
1214
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1215
|
-
type: ["
|
1215
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1216
1216
|
property :ltg,
|
1217
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Lithographer).freeze,
|
1218
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ltg).freeze,
|
1219
1217
|
label: "Lithographer".freeze,
|
1218
|
+
"mads:authoritativeLabel" => %(Lithographer).freeze,
|
1219
|
+
"mads:code" => %(ltg).freeze,
|
1220
1220
|
"skos:notation" => %(ltg).freeze,
|
1221
1221
|
"skos:prefLabel" => %(Lithographer).freeze,
|
1222
1222
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1223
|
-
type: ["
|
1223
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1224
1224
|
property :lyr,
|
1225
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Lyricist).freeze,
|
1226
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(lyr).freeze,
|
1227
1225
|
label: "Lyricist".freeze,
|
1226
|
+
"mads:authoritativeLabel" => %(Lyricist).freeze,
|
1227
|
+
"mads:code" => %(lyr).freeze,
|
1228
1228
|
"skos:notation" => %(lyr).freeze,
|
1229
1229
|
"skos:prefLabel" => %(Lyricist).freeze,
|
1230
1230
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/aut".freeze, "dc11:contributor".freeze],
|
1231
|
-
type: ["
|
1231
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1232
1232
|
property :mcp,
|
1233
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Music copyist).freeze,
|
1234
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(mcp).freeze,
|
1235
1233
|
label: "Music copyist".freeze,
|
1234
|
+
"mads:authoritativeLabel" => %(Music copyist).freeze,
|
1235
|
+
"mads:code" => %(mcp).freeze,
|
1236
1236
|
"skos:notation" => %(mcp).freeze,
|
1237
1237
|
"skos:prefLabel" => %(Music copyist).freeze,
|
1238
1238
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1239
|
-
type: ["
|
1239
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1240
1240
|
property :mdc,
|
1241
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Metadata contact).freeze,
|
1242
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(mdc).freeze,
|
1243
1241
|
label: "Metadata contact".freeze,
|
1242
|
+
"mads:authoritativeLabel" => %(Metadata contact).freeze,
|
1243
|
+
"mads:code" => %(mdc).freeze,
|
1244
1244
|
"skos:notation" => %(mdc).freeze,
|
1245
1245
|
"skos:prefLabel" => %(Metadata contact).freeze,
|
1246
1246
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1247
|
-
type: ["
|
1247
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1248
1248
|
property :med,
|
1249
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Medium).freeze,
|
1250
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(med).freeze,
|
1251
1249
|
label: "Medium".freeze,
|
1250
|
+
"mads:authoritativeLabel" => %(Medium).freeze,
|
1251
|
+
"mads:code" => %(med).freeze,
|
1252
1252
|
"skos:notation" => %(med).freeze,
|
1253
1253
|
"skos:prefLabel" => %(Medium).freeze,
|
1254
1254
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1255
|
-
type: ["
|
1255
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1256
1256
|
property :mfp,
|
1257
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Manufacture place).freeze,
|
1258
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(mfp).freeze,
|
1259
1257
|
label: "Manufacture place".freeze,
|
1258
|
+
"mads:authoritativeLabel" => %(Manufacture place).freeze,
|
1259
|
+
"mads:code" => %(mfp).freeze,
|
1260
1260
|
"skos:notation" => %(mfp).freeze,
|
1261
1261
|
"skos:prefLabel" => %(Manufacture place).freeze,
|
1262
1262
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1263
|
-
type: ["
|
1263
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1264
1264
|
property :mfr,
|
1265
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Manufacturer).freeze,
|
1266
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(mfr).freeze,
|
1267
1265
|
label: "Manufacturer".freeze,
|
1266
|
+
"mads:authoritativeLabel" => %(Manufacturer).freeze,
|
1267
|
+
"mads:code" => %(mfr).freeze,
|
1268
1268
|
"skos:notation" => %(mfr).freeze,
|
1269
1269
|
"skos:prefLabel" => %(Manufacturer).freeze,
|
1270
1270
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prv".freeze, "dc11:contributor".freeze],
|
1271
|
-
type: ["
|
1271
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1272
1272
|
property :mod,
|
1273
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Moderator).freeze,
|
1274
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(mod).freeze,
|
1275
1273
|
label: "Moderator".freeze,
|
1274
|
+
"mads:authoritativeLabel" => %(Moderator).freeze,
|
1275
|
+
"mads:code" => %(mod).freeze,
|
1276
1276
|
"skos:notation" => %(mod).freeze,
|
1277
1277
|
"skos:prefLabel" => %(Moderator).freeze,
|
1278
1278
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prf".freeze, "dc11:contributor".freeze],
|
1279
|
-
type: ["
|
1279
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1280
1280
|
property :mon,
|
1281
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Monitor).freeze,
|
1282
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(mon).freeze,
|
1283
1281
|
label: "Monitor".freeze,
|
1282
|
+
"mads:authoritativeLabel" => %(Monitor).freeze,
|
1283
|
+
"mads:code" => %(mon).freeze,
|
1284
1284
|
"skos:notation" => %(mon).freeze,
|
1285
1285
|
"skos:prefLabel" => %(Monitor).freeze,
|
1286
1286
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1287
|
-
type: ["
|
1287
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1288
1288
|
property :mrb,
|
1289
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Marbler).freeze,
|
1290
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(mrb).freeze,
|
1291
1289
|
label: "Marbler".freeze,
|
1290
|
+
"mads:authoritativeLabel" => %(Marbler).freeze,
|
1291
|
+
"mads:code" => %(mrb).freeze,
|
1292
1292
|
"skos:notation" => %(mrb).freeze,
|
1293
1293
|
"skos:prefLabel" => %(Marbler).freeze,
|
1294
1294
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1295
|
-
type: ["
|
1295
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1296
1296
|
property :mrk,
|
1297
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Markup editor).freeze,
|
1298
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(mrk).freeze,
|
1299
1297
|
label: "Markup editor".freeze,
|
1298
|
+
"mads:authoritativeLabel" => %(Markup editor).freeze,
|
1299
|
+
"mads:code" => %(mrk).freeze,
|
1300
1300
|
"skos:notation" => %(mrk).freeze,
|
1301
1301
|
"skos:prefLabel" => %(Markup editor).freeze,
|
1302
1302
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1303
|
-
type: ["
|
1303
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1304
1304
|
property :msd,
|
1305
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Musical director).freeze,
|
1306
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(msd).freeze,
|
1307
1305
|
label: "Musical director".freeze,
|
1306
|
+
"mads:authoritativeLabel" => %(Musical director).freeze,
|
1307
|
+
"mads:code" => %(msd).freeze,
|
1308
1308
|
"skos:notation" => %(msd).freeze,
|
1309
1309
|
"skos:prefLabel" => %(Musical director).freeze,
|
1310
1310
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1311
|
-
type: ["
|
1311
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1312
1312
|
property :mte,
|
1313
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Metal-engraver).freeze,
|
1314
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(mte).freeze,
|
1315
1313
|
label: "Metal-engraver".freeze,
|
1314
|
+
"mads:authoritativeLabel" => %(Metal-engraver).freeze,
|
1315
|
+
"mads:code" => %(mte).freeze,
|
1316
1316
|
"skos:notation" => %(mte).freeze,
|
1317
1317
|
"skos:prefLabel" => %(Metal-engraver).freeze,
|
1318
1318
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/egr".freeze, "dc11:contributor".freeze],
|
1319
|
-
type: ["
|
1319
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1320
1320
|
property :mtk,
|
1321
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Minute taker).freeze,
|
1322
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(mtk).freeze,
|
1323
1321
|
label: "Minute taker".freeze,
|
1322
|
+
"mads:authoritativeLabel" => %(Minute taker).freeze,
|
1323
|
+
"mads:code" => %(mtk).freeze,
|
1324
1324
|
"skos:notation" => %(mtk).freeze,
|
1325
1325
|
"skos:prefLabel" => %(Minute taker).freeze,
|
1326
1326
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1327
|
-
type: ["
|
1327
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1328
1328
|
property :mus,
|
1329
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Musician).freeze,
|
1330
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(mus).freeze,
|
1331
1329
|
label: "Musician".freeze,
|
1330
|
+
"mads:authoritativeLabel" => %(Musician).freeze,
|
1331
|
+
"mads:code" => %(mus).freeze,
|
1332
1332
|
"skos:notation" => %(mus).freeze,
|
1333
1333
|
"skos:prefLabel" => %(Musician).freeze,
|
1334
1334
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1335
|
-
type: ["
|
1335
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1336
1336
|
property :nrt,
|
1337
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Narrator).freeze,
|
1338
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(nrt).freeze,
|
1339
1337
|
label: "Narrator".freeze,
|
1338
|
+
"mads:authoritativeLabel" => %(Narrator).freeze,
|
1339
|
+
"mads:code" => %(nrt).freeze,
|
1340
1340
|
"skos:notation" => %(nrt).freeze,
|
1341
1341
|
"skos:prefLabel" => %(Narrator).freeze,
|
1342
1342
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prf".freeze, "dc11:contributor".freeze],
|
1343
|
-
type: ["
|
1343
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1344
1344
|
property :opn,
|
1345
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Opponent).freeze,
|
1346
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(opn).freeze,
|
1347
1345
|
label: "Opponent".freeze,
|
1346
|
+
"mads:authoritativeLabel" => %(Opponent).freeze,
|
1347
|
+
"mads:code" => %(opn).freeze,
|
1348
1348
|
"skos:notation" => %(opn).freeze,
|
1349
1349
|
"skos:prefLabel" => %(Opponent).freeze,
|
1350
1350
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1351
|
-
type: ["
|
1351
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1352
1352
|
property :org,
|
1353
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Originator).freeze,
|
1354
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(org).freeze,
|
1355
1353
|
label: "Originator".freeze,
|
1354
|
+
"mads:authoritativeLabel" => %(Originator).freeze,
|
1355
|
+
"mads:code" => %(org).freeze,
|
1356
1356
|
"skos:notation" => %(org).freeze,
|
1357
1357
|
"skos:prefLabel" => %(Originator).freeze,
|
1358
1358
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1359
|
-
type: ["
|
1359
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1360
1360
|
property :orm,
|
1361
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Organizer).freeze,
|
1362
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(orm).freeze,
|
1363
1361
|
label: "Organizer".freeze,
|
1362
|
+
"mads:authoritativeLabel" => %(Organizer).freeze,
|
1363
|
+
"mads:code" => %(orm).freeze,
|
1364
1364
|
"skos:notation" => %(orm).freeze,
|
1365
1365
|
"skos:prefLabel" => %(Organizer).freeze,
|
1366
1366
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1367
|
-
type: ["
|
1367
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1368
1368
|
property :osp,
|
1369
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Onscreen presenter).freeze,
|
1370
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(osp).freeze,
|
1371
1369
|
label: "Onscreen presenter".freeze,
|
1370
|
+
"mads:authoritativeLabel" => %(Onscreen presenter).freeze,
|
1371
|
+
"mads:code" => %(osp).freeze,
|
1372
1372
|
"skos:notation" => %(osp).freeze,
|
1373
1373
|
"skos:prefLabel" => %(Onscreen presenter).freeze,
|
1374
1374
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prf".freeze, "dc11:contributor".freeze],
|
1375
|
-
type: ["
|
1375
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1376
1376
|
property :oth,
|
1377
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Other).freeze,
|
1378
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(oth).freeze,
|
1379
1377
|
label: "Other".freeze,
|
1378
|
+
"mads:authoritativeLabel" => %(Other).freeze,
|
1379
|
+
"mads:code" => %(oth).freeze,
|
1380
1380
|
"skos:notation" => %(oth).freeze,
|
1381
1381
|
"skos:prefLabel" => %(Other).freeze,
|
1382
1382
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1383
|
-
type: ["
|
1383
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1384
1384
|
property :own,
|
1385
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Owner).freeze,
|
1386
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(own).freeze,
|
1387
1385
|
label: "Owner".freeze,
|
1386
|
+
"mads:authoritativeLabel" => %(Owner).freeze,
|
1387
|
+
"mads:code" => %(own).freeze,
|
1388
1388
|
"skos:notation" => %(own).freeze,
|
1389
1389
|
"skos:prefLabel" => %(Owner).freeze,
|
1390
1390
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1391
|
-
type: ["
|
1391
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1392
1392
|
property :pan,
|
1393
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Panelist).freeze,
|
1394
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(pan).freeze,
|
1395
1393
|
label: "Panelist".freeze,
|
1394
|
+
"mads:authoritativeLabel" => %(Panelist).freeze,
|
1395
|
+
"mads:code" => %(pan).freeze,
|
1396
1396
|
"skos:notation" => %(pan).freeze,
|
1397
1397
|
"skos:prefLabel" => %(Panelist).freeze,
|
1398
1398
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prf".freeze, "dc11:contributor".freeze],
|
1399
|
-
type: ["
|
1399
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1400
1400
|
property :pat,
|
1401
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Patron).freeze,
|
1402
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(pat).freeze,
|
1403
1401
|
label: "Patron".freeze,
|
1402
|
+
"mads:authoritativeLabel" => %(Patron).freeze,
|
1403
|
+
"mads:code" => %(pat).freeze,
|
1404
1404
|
"skos:notation" => %(pat).freeze,
|
1405
1405
|
"skos:prefLabel" => %(Patron).freeze,
|
1406
1406
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1407
|
-
type: ["
|
1407
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1408
1408
|
property :pbd,
|
1409
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Publishing director).freeze,
|
1410
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(pbd).freeze,
|
1411
1409
|
label: "Publishing director".freeze,
|
1410
|
+
"mads:authoritativeLabel" => %(Publishing director).freeze,
|
1411
|
+
"mads:code" => %(pbd).freeze,
|
1412
1412
|
"skos:notation" => %(pbd).freeze,
|
1413
1413
|
"skos:prefLabel" => %(Publishing director).freeze,
|
1414
1414
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1415
|
-
type: ["
|
1415
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1416
1416
|
property :pbl,
|
1417
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Publisher).freeze,
|
1418
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(pbl).freeze,
|
1419
1417
|
label: "Publisher".freeze,
|
1418
|
+
"mads:authoritativeLabel" => %(Publisher).freeze,
|
1419
|
+
"mads:code" => %(pbl).freeze,
|
1420
1420
|
"skos:notation" => %(pbl).freeze,
|
1421
1421
|
"skos:prefLabel" => %(Publisher).freeze,
|
1422
1422
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prv".freeze, "dc11:publisher".freeze],
|
1423
|
-
type: ["
|
1423
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1424
1424
|
property :pdr,
|
1425
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Project director).freeze,
|
1426
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(pdr).freeze,
|
1427
1425
|
label: "Project director".freeze,
|
1426
|
+
"mads:authoritativeLabel" => %(Project director).freeze,
|
1427
|
+
"mads:code" => %(pdr).freeze,
|
1428
1428
|
"skos:notation" => %(pdr).freeze,
|
1429
1429
|
"skos:prefLabel" => %(Project director).freeze,
|
1430
1430
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1431
|
-
type: ["
|
1431
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1432
1432
|
property :pfr,
|
1433
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Proofreader).freeze,
|
1434
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(pfr).freeze,
|
1435
1433
|
label: "Proofreader".freeze,
|
1434
|
+
"mads:authoritativeLabel" => %(Proofreader).freeze,
|
1435
|
+
"mads:code" => %(pfr).freeze,
|
1436
1436
|
"skos:notation" => %(pfr).freeze,
|
1437
1437
|
"skos:prefLabel" => %(Proofreader).freeze,
|
1438
1438
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1439
|
-
type: ["
|
1439
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1440
1440
|
property :pht,
|
1441
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Photographer).freeze,
|
1442
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(pht).freeze,
|
1443
1441
|
label: "Photographer".freeze,
|
1442
|
+
"mads:authoritativeLabel" => %(Photographer).freeze,
|
1443
|
+
"mads:code" => %(pht).freeze,
|
1444
1444
|
"skos:notation" => %(pht).freeze,
|
1445
1445
|
"skos:prefLabel" => %(Photographer).freeze,
|
1446
1446
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1447
|
-
type: ["
|
1447
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1448
1448
|
property :plt,
|
1449
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Platemaker).freeze,
|
1450
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(plt).freeze,
|
1451
1449
|
label: "Platemaker".freeze,
|
1450
|
+
"mads:authoritativeLabel" => %(Platemaker).freeze,
|
1451
|
+
"mads:code" => %(plt).freeze,
|
1452
1452
|
"skos:notation" => %(plt).freeze,
|
1453
1453
|
"skos:prefLabel" => %(Platemaker).freeze,
|
1454
1454
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1455
|
-
type: ["
|
1455
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1456
1456
|
property :pma,
|
1457
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Permitting agency).freeze,
|
1458
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(pma).freeze,
|
1459
1457
|
label: "Permitting agency".freeze,
|
1458
|
+
"mads:authoritativeLabel" => %(Permitting agency).freeze,
|
1459
|
+
"mads:code" => %(pma).freeze,
|
1460
1460
|
"skos:notation" => %(pma).freeze,
|
1461
1461
|
"skos:prefLabel" => %(Permitting agency).freeze,
|
1462
1462
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1463
|
-
type: ["
|
1463
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1464
1464
|
property :pmn,
|
1465
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Production manager).freeze,
|
1466
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(pmn).freeze,
|
1467
1465
|
label: "Production manager".freeze,
|
1466
|
+
"mads:authoritativeLabel" => %(Production manager).freeze,
|
1467
|
+
"mads:code" => %(pmn).freeze,
|
1468
1468
|
"skos:notation" => %(pmn).freeze,
|
1469
1469
|
"skos:prefLabel" => %(Production manager).freeze,
|
1470
1470
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1471
|
-
type: ["
|
1471
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1472
1472
|
property :pop,
|
1473
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Printer of plates).freeze,
|
1474
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(pop).freeze,
|
1475
1473
|
label: "Printer of plates".freeze,
|
1474
|
+
"mads:authoritativeLabel" => %(Printer of plates).freeze,
|
1475
|
+
"mads:code" => %(pop).freeze,
|
1476
1476
|
"skos:notation" => %(pop).freeze,
|
1477
1477
|
"skos:prefLabel" => %(Printer of plates).freeze,
|
1478
1478
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1479
|
-
type: ["
|
1479
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1480
1480
|
property :ppm,
|
1481
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Papermaker).freeze,
|
1482
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ppm).freeze,
|
1483
1481
|
label: "Papermaker".freeze,
|
1482
|
+
"mads:authoritativeLabel" => %(Papermaker).freeze,
|
1483
|
+
"mads:code" => %(ppm).freeze,
|
1484
1484
|
"skos:notation" => %(ppm).freeze,
|
1485
1485
|
"skos:prefLabel" => %(Papermaker).freeze,
|
1486
1486
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1487
|
-
type: ["
|
1487
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1488
1488
|
property :ppt,
|
1489
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Puppeteer).freeze,
|
1490
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ppt).freeze,
|
1491
1489
|
label: "Puppeteer".freeze,
|
1490
|
+
"mads:authoritativeLabel" => %(Puppeteer).freeze,
|
1491
|
+
"mads:code" => %(ppt).freeze,
|
1492
1492
|
"skos:notation" => %(ppt).freeze,
|
1493
1493
|
"skos:prefLabel" => %(Puppeteer).freeze,
|
1494
1494
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prf".freeze, "dc11:contributor".freeze],
|
1495
|
-
type: ["
|
1495
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1496
1496
|
property :pra,
|
1497
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Praeses).freeze,
|
1498
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(pra).freeze,
|
1499
1497
|
label: "Praeses".freeze,
|
1498
|
+
"mads:authoritativeLabel" => %(Praeses).freeze,
|
1499
|
+
"mads:code" => %(pra).freeze,
|
1500
1500
|
"skos:notation" => %(pra).freeze,
|
1501
1501
|
"skos:prefLabel" => %(Praeses).freeze,
|
1502
1502
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1503
|
-
type: ["
|
1503
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1504
1504
|
property :prc,
|
1505
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Process contact).freeze,
|
1506
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(prc).freeze,
|
1507
1505
|
label: "Process contact".freeze,
|
1506
|
+
"mads:authoritativeLabel" => %(Process contact).freeze,
|
1507
|
+
"mads:code" => %(prc).freeze,
|
1508
1508
|
"skos:notation" => %(prc).freeze,
|
1509
1509
|
"skos:prefLabel" => %(Process contact).freeze,
|
1510
1510
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1511
|
-
type: ["
|
1511
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1512
1512
|
property :prd,
|
1513
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Production personnel).freeze,
|
1514
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(prd).freeze,
|
1515
1513
|
label: "Production personnel".freeze,
|
1514
|
+
"mads:authoritativeLabel" => %(Production personnel).freeze,
|
1515
|
+
"mads:code" => %(prd).freeze,
|
1516
1516
|
"skos:notation" => %(prd).freeze,
|
1517
1517
|
"skos:prefLabel" => %(Production personnel).freeze,
|
1518
1518
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1519
|
-
type: ["
|
1519
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1520
1520
|
property :pre,
|
1521
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Presenter).freeze,
|
1522
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(pre).freeze,
|
1523
1521
|
label: "Presenter".freeze,
|
1522
|
+
"mads:authoritativeLabel" => %(Presenter).freeze,
|
1523
|
+
"mads:code" => %(pre).freeze,
|
1524
1524
|
"skos:notation" => %(pre).freeze,
|
1525
1525
|
"skos:prefLabel" => %(Presenter).freeze,
|
1526
1526
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1527
|
-
type: ["
|
1527
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1528
1528
|
property :prf,
|
1529
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Performer).freeze,
|
1530
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(prf).freeze,
|
1531
1529
|
label: "Performer".freeze,
|
1530
|
+
"mads:authoritativeLabel" => %(Performer).freeze,
|
1531
|
+
"mads:code" => %(prf).freeze,
|
1532
1532
|
"skos:notation" => %(prf).freeze,
|
1533
1533
|
"skos:prefLabel" => %(Performer).freeze,
|
1534
1534
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1535
|
-
type: ["
|
1535
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1536
1536
|
property :prg,
|
1537
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Programmer).freeze,
|
1538
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(prg).freeze,
|
1539
1537
|
label: "Programmer".freeze,
|
1538
|
+
"mads:authoritativeLabel" => %(Programmer).freeze,
|
1539
|
+
"mads:code" => %(prg).freeze,
|
1540
1540
|
"skos:notation" => %(prg).freeze,
|
1541
1541
|
"skos:prefLabel" => %(Programmer).freeze,
|
1542
1542
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1543
|
-
type: ["
|
1543
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1544
1544
|
property :prm,
|
1545
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Printmaker).freeze,
|
1546
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(prm).freeze,
|
1547
1545
|
label: "Printmaker".freeze,
|
1546
|
+
"mads:authoritativeLabel" => %(Printmaker).freeze,
|
1547
|
+
"mads:code" => %(prm).freeze,
|
1548
1548
|
"skos:notation" => %(prm).freeze,
|
1549
1549
|
"skos:prefLabel" => %(Printmaker).freeze,
|
1550
1550
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1551
|
-
type: ["
|
1551
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1552
1552
|
property :prn,
|
1553
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Production company).freeze,
|
1554
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(prn).freeze,
|
1555
1553
|
label: "Production company".freeze,
|
1554
|
+
"mads:authoritativeLabel" => %(Production company).freeze,
|
1555
|
+
"mads:code" => %(prn).freeze,
|
1556
1556
|
"skos:notation" => %(prn).freeze,
|
1557
1557
|
"skos:prefLabel" => %(Production company).freeze,
|
1558
1558
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1559
|
-
type: ["
|
1559
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1560
1560
|
property :pro,
|
1561
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Producer).freeze,
|
1562
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(pro).freeze,
|
1563
1561
|
label: "Producer".freeze,
|
1562
|
+
"mads:authoritativeLabel" => %(Producer).freeze,
|
1563
|
+
"mads:code" => %(pro).freeze,
|
1564
1564
|
"skos:notation" => %(pro).freeze,
|
1565
1565
|
"skos:prefLabel" => %(Producer).freeze,
|
1566
1566
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prv".freeze, "dc11:contributor".freeze],
|
1567
|
-
type: ["
|
1567
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1568
1568
|
property :prp,
|
1569
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Production place).freeze,
|
1570
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(prp).freeze,
|
1571
1569
|
label: "Production place".freeze,
|
1570
|
+
"mads:authoritativeLabel" => %(Production place).freeze,
|
1571
|
+
"mads:code" => %(prp).freeze,
|
1572
1572
|
"skos:notation" => %(prp).freeze,
|
1573
1573
|
"skos:prefLabel" => %(Production place).freeze,
|
1574
1574
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1575
|
-
type: ["
|
1575
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1576
1576
|
property :prs,
|
1577
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Production designer).freeze,
|
1578
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(prs).freeze,
|
1579
1577
|
label: "Production designer".freeze,
|
1578
|
+
"mads:authoritativeLabel" => %(Production designer).freeze,
|
1579
|
+
"mads:code" => %(prs).freeze,
|
1580
1580
|
"skos:notation" => %(prs).freeze,
|
1581
1581
|
"skos:prefLabel" => %(Production designer).freeze,
|
1582
1582
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1583
|
-
type: ["
|
1583
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1584
1584
|
property :prt,
|
1585
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Printer).freeze,
|
1586
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(prt).freeze,
|
1587
1585
|
label: "Printer".freeze,
|
1586
|
+
"mads:authoritativeLabel" => %(Printer).freeze,
|
1587
|
+
"mads:code" => %(prt).freeze,
|
1588
1588
|
"skos:notation" => %(prt).freeze,
|
1589
1589
|
"skos:prefLabel" => %(Printer).freeze,
|
1590
1590
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1591
|
-
type: ["
|
1591
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1592
1592
|
property :prv,
|
1593
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Provider).freeze,
|
1594
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(prv).freeze,
|
1595
1593
|
label: "Provider".freeze,
|
1594
|
+
"mads:authoritativeLabel" => %(Provider).freeze,
|
1595
|
+
"mads:code" => %(prv).freeze,
|
1596
1596
|
"skos:notation" => %(prv).freeze,
|
1597
1597
|
"skos:prefLabel" => %(Provider).freeze,
|
1598
1598
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1599
|
-
type: ["
|
1599
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1600
1600
|
property :pta,
|
1601
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Patent applicant).freeze,
|
1602
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(pta).freeze,
|
1603
1601
|
label: "Patent applicant".freeze,
|
1602
|
+
"mads:authoritativeLabel" => %(Patent applicant).freeze,
|
1603
|
+
"mads:code" => %(pta).freeze,
|
1604
1604
|
"skos:notation" => %(pta).freeze,
|
1605
1605
|
"skos:prefLabel" => %(Patent applicant).freeze,
|
1606
1606
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1607
|
-
type: ["
|
1607
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1608
1608
|
property :pte,
|
1609
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Plaintiff-appellee).freeze,
|
1610
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(pte).freeze,
|
1611
1609
|
label: "Plaintiff-appellee".freeze,
|
1610
|
+
"mads:authoritativeLabel" => %(Plaintiff-appellee).freeze,
|
1611
|
+
"mads:code" => %(pte).freeze,
|
1612
1612
|
"skos:notation" => %(pte).freeze,
|
1613
1613
|
"skos:prefLabel" => %(Plaintiff-appellee).freeze,
|
1614
1614
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/ptf".freeze],
|
1615
|
-
type: ["
|
1615
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1616
1616
|
property :ptf,
|
1617
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Plaintiff).freeze,
|
1618
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ptf).freeze,
|
1619
1617
|
label: "Plaintiff".freeze,
|
1618
|
+
"mads:authoritativeLabel" => %(Plaintiff).freeze,
|
1619
|
+
"mads:code" => %(ptf).freeze,
|
1620
1620
|
"skos:notation" => %(ptf).freeze,
|
1621
1621
|
"skos:prefLabel" => %(Plaintiff).freeze,
|
1622
1622
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1623
|
-
type: ["
|
1623
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1624
1624
|
property :pth,
|
1625
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Patent holder).freeze,
|
1626
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(pth).freeze,
|
1627
1625
|
label: "Patent holder".freeze,
|
1626
|
+
"mads:authoritativeLabel" => %(Patent holder).freeze,
|
1627
|
+
"mads:code" => %(pth).freeze,
|
1628
1628
|
"skos:notation" => %(pth).freeze,
|
1629
1629
|
"skos:prefLabel" => %(Patent holder).freeze,
|
1630
1630
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1631
|
-
type: ["
|
1631
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1632
1632
|
property :ptt,
|
1633
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Plaintiff-appellant).freeze,
|
1634
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ptt).freeze,
|
1635
1633
|
label: "Plaintiff-appellant".freeze,
|
1634
|
+
"mads:authoritativeLabel" => %(Plaintiff-appellant).freeze,
|
1635
|
+
"mads:code" => %(ptt).freeze,
|
1636
1636
|
"skos:notation" => %(ptt).freeze,
|
1637
1637
|
"skos:prefLabel" => %(Plaintiff-appellant).freeze,
|
1638
1638
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/ptf".freeze],
|
1639
|
-
type: ["
|
1639
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1640
1640
|
property :pup,
|
1641
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Publication place).freeze,
|
1642
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(pup).freeze,
|
1643
1641
|
label: "Publication place".freeze,
|
1642
|
+
"mads:authoritativeLabel" => %(Publication place).freeze,
|
1643
|
+
"mads:code" => %(pup).freeze,
|
1644
1644
|
"skos:notation" => %(pup).freeze,
|
1645
1645
|
"skos:prefLabel" => %(Publication place).freeze,
|
1646
1646
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1647
|
-
type: ["
|
1647
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1648
1648
|
property :rbr,
|
1649
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Rubricator).freeze,
|
1650
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(rbr).freeze,
|
1651
1649
|
label: "Rubricator".freeze,
|
1650
|
+
"mads:authoritativeLabel" => %(Rubricator).freeze,
|
1651
|
+
"mads:code" => %(rbr).freeze,
|
1652
1652
|
"skos:notation" => %(rbr).freeze,
|
1653
1653
|
"skos:prefLabel" => %(Rubricator).freeze,
|
1654
1654
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1655
|
-
type: ["
|
1655
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1656
1656
|
property :rcd,
|
1657
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Recordist).freeze,
|
1658
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(rcd).freeze,
|
1659
1657
|
label: "Recordist".freeze,
|
1658
|
+
"mads:authoritativeLabel" => %(Recordist).freeze,
|
1659
|
+
"mads:code" => %(rcd).freeze,
|
1660
1660
|
"skos:notation" => %(rcd).freeze,
|
1661
1661
|
"skos:prefLabel" => %(Recordist).freeze,
|
1662
1662
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1663
|
-
type: ["
|
1663
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1664
1664
|
property :rce,
|
1665
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Recording engineer).freeze,
|
1666
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(rce).freeze,
|
1667
1665
|
label: "Recording engineer".freeze,
|
1666
|
+
"mads:authoritativeLabel" => %(Recording engineer).freeze,
|
1667
|
+
"mads:code" => %(rce).freeze,
|
1668
1668
|
"skos:notation" => %(rce).freeze,
|
1669
1669
|
"skos:prefLabel" => %(Recording engineer).freeze,
|
1670
1670
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1671
|
-
type: ["
|
1671
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1672
1672
|
property :rcp,
|
1673
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Addressee).freeze,
|
1674
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(rcp).freeze,
|
1675
1673
|
label: "Addressee".freeze,
|
1674
|
+
"mads:authoritativeLabel" => %(Addressee).freeze,
|
1675
|
+
"mads:code" => %(rcp).freeze,
|
1676
1676
|
"skos:notation" => %(rcp).freeze,
|
1677
1677
|
"skos:prefLabel" => %(Addressee).freeze,
|
1678
1678
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1679
|
-
type: ["
|
1679
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1680
1680
|
property :rdd,
|
1681
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Radio director).freeze,
|
1682
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(rdd).freeze,
|
1683
1681
|
label: "Radio director".freeze,
|
1682
|
+
"mads:authoritativeLabel" => %(Radio director).freeze,
|
1683
|
+
"mads:code" => %(rdd).freeze,
|
1684
1684
|
"skos:notation" => %(rdd).freeze,
|
1685
1685
|
"skos:prefLabel" => %(Radio director).freeze,
|
1686
1686
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/drt".freeze, "dc11:contributor".freeze],
|
1687
|
-
type: ["
|
1687
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1688
1688
|
property :red,
|
1689
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Redaktor).freeze,
|
1690
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(red).freeze,
|
1691
1689
|
label: "Redaktor".freeze,
|
1690
|
+
"mads:authoritativeLabel" => %(Redaktor).freeze,
|
1691
|
+
"mads:code" => %(red).freeze,
|
1692
1692
|
"skos:notation" => %(red).freeze,
|
1693
1693
|
"skos:prefLabel" => %(Redaktor).freeze,
|
1694
1694
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1695
|
-
type: ["
|
1695
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1696
1696
|
property :ren,
|
1697
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Renderer).freeze,
|
1698
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ren).freeze,
|
1699
1697
|
label: "Renderer".freeze,
|
1698
|
+
"mads:authoritativeLabel" => %(Renderer).freeze,
|
1699
|
+
"mads:code" => %(ren).freeze,
|
1700
1700
|
"skos:notation" => %(ren).freeze,
|
1701
1701
|
"skos:prefLabel" => %(Renderer).freeze,
|
1702
1702
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1703
|
-
type: ["
|
1703
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1704
1704
|
property :res,
|
1705
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Researcher).freeze,
|
1706
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(res).freeze,
|
1707
1705
|
label: "Researcher".freeze,
|
1706
|
+
"mads:authoritativeLabel" => %(Researcher).freeze,
|
1707
|
+
"mads:code" => %(res).freeze,
|
1708
1708
|
"skos:notation" => %(res).freeze,
|
1709
1709
|
"skos:prefLabel" => %(Researcher).freeze,
|
1710
1710
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1711
|
-
type: ["
|
1711
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1712
1712
|
property :rev,
|
1713
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Reviewer).freeze,
|
1714
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(rev).freeze,
|
1715
1713
|
label: "Reviewer".freeze,
|
1714
|
+
"mads:authoritativeLabel" => %(Reviewer).freeze,
|
1715
|
+
"mads:code" => %(rev).freeze,
|
1716
1716
|
"skos:notation" => %(rev).freeze,
|
1717
1717
|
"skos:prefLabel" => %(Reviewer).freeze,
|
1718
1718
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1719
|
-
type: ["
|
1719
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1720
1720
|
property :rpc,
|
1721
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Radio producer).freeze,
|
1722
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(rpc).freeze,
|
1723
1721
|
label: "Radio producer".freeze,
|
1722
|
+
"mads:authoritativeLabel" => %(Radio producer).freeze,
|
1723
|
+
"mads:code" => %(rpc).freeze,
|
1724
1724
|
"skos:notation" => %(rpc).freeze,
|
1725
1725
|
"skos:prefLabel" => %(Radio producer).freeze,
|
1726
1726
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/pro".freeze, "dc11:contributor".freeze],
|
1727
|
-
type: ["
|
1727
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1728
1728
|
property :rps,
|
1729
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Repository).freeze,
|
1730
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(rps).freeze,
|
1731
1729
|
label: "Repository".freeze,
|
1730
|
+
"mads:authoritativeLabel" => %(Repository).freeze,
|
1731
|
+
"mads:code" => %(rps).freeze,
|
1732
1732
|
"skos:notation" => %(rps).freeze,
|
1733
1733
|
"skos:prefLabel" => %(Repository).freeze,
|
1734
1734
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1735
|
-
type: ["
|
1735
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1736
1736
|
property :rpt,
|
1737
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Reporter).freeze,
|
1738
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(rpt).freeze,
|
1739
1737
|
label: "Reporter".freeze,
|
1738
|
+
"mads:authoritativeLabel" => %(Reporter).freeze,
|
1739
|
+
"mads:code" => %(rpt).freeze,
|
1740
1740
|
"skos:notation" => %(rpt).freeze,
|
1741
1741
|
"skos:prefLabel" => %(Reporter).freeze,
|
1742
1742
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1743
|
-
type: ["
|
1743
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1744
1744
|
property :rpy,
|
1745
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Responsible party).freeze,
|
1746
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(rpy).freeze,
|
1747
1745
|
label: "Responsible party".freeze,
|
1746
|
+
"mads:authoritativeLabel" => %(Responsible party).freeze,
|
1747
|
+
"mads:code" => %(rpy).freeze,
|
1748
1748
|
"skos:notation" => %(rpy).freeze,
|
1749
1749
|
"skos:prefLabel" => %(Responsible party).freeze,
|
1750
1750
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1751
|
-
type: ["
|
1751
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1752
1752
|
property :rse,
|
1753
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Respondent-appellee).freeze,
|
1754
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(rse).freeze,
|
1755
1753
|
label: "Respondent-appellee".freeze,
|
1754
|
+
"mads:authoritativeLabel" => %(Respondent-appellee).freeze,
|
1755
|
+
"mads:code" => %(rse).freeze,
|
1756
1756
|
"skos:notation" => %(rse).freeze,
|
1757
1757
|
"skos:prefLabel" => %(Respondent-appellee).freeze,
|
1758
1758
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/rsp".freeze],
|
1759
|
-
type: ["
|
1759
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1760
1760
|
property :rsg,
|
1761
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Restager).freeze,
|
1762
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(rsg).freeze,
|
1763
1761
|
label: "Restager".freeze,
|
1762
|
+
"mads:authoritativeLabel" => %(Restager).freeze,
|
1763
|
+
"mads:code" => %(rsg).freeze,
|
1764
1764
|
"skos:notation" => %(rsg).freeze,
|
1765
1765
|
"skos:prefLabel" => %(Restager).freeze,
|
1766
1766
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1767
|
-
type: ["
|
1767
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1768
1768
|
property :rsp,
|
1769
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Respondent).freeze,
|
1770
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(rsp).freeze,
|
1771
1769
|
label: "Respondent".freeze,
|
1770
|
+
"mads:authoritativeLabel" => %(Respondent).freeze,
|
1771
|
+
"mads:code" => %(rsp).freeze,
|
1772
1772
|
"skos:notation" => %(rsp).freeze,
|
1773
1773
|
"skos:prefLabel" => %(Respondent).freeze,
|
1774
1774
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1775
|
-
type: ["
|
1775
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1776
1776
|
property :rsr,
|
1777
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Restorationist).freeze,
|
1778
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(rsr).freeze,
|
1779
1777
|
label: "Restorationist".freeze,
|
1778
|
+
"mads:authoritativeLabel" => %(Restorationist).freeze,
|
1779
|
+
"mads:code" => %(rsr).freeze,
|
1780
1780
|
"skos:notation" => %(rsr).freeze,
|
1781
1781
|
"skos:prefLabel" => %(Restorationist).freeze,
|
1782
1782
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1783
|
-
type: ["
|
1783
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1784
1784
|
property :rst,
|
1785
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Respondent-appellant).freeze,
|
1786
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(rst).freeze,
|
1787
1785
|
label: "Respondent-appellant".freeze,
|
1786
|
+
"mads:authoritativeLabel" => %(Respondent-appellant).freeze,
|
1787
|
+
"mads:code" => %(rst).freeze,
|
1788
1788
|
"skos:notation" => %(rst).freeze,
|
1789
1789
|
"skos:prefLabel" => %(Respondent-appellant).freeze,
|
1790
1790
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/rsp".freeze],
|
1791
|
-
type: ["
|
1791
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1792
1792
|
property :rth,
|
1793
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Research team head).freeze,
|
1794
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(rth).freeze,
|
1795
1793
|
label: "Research team head".freeze,
|
1794
|
+
"mads:authoritativeLabel" => %(Research team head).freeze,
|
1795
|
+
"mads:code" => %(rth).freeze,
|
1796
1796
|
"skos:notation" => %(rth).freeze,
|
1797
1797
|
"skos:prefLabel" => %(Research team head).freeze,
|
1798
1798
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1799
|
-
type: ["
|
1799
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1800
1800
|
property :rtm,
|
1801
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Research team member).freeze,
|
1802
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(rtm).freeze,
|
1803
1801
|
label: "Research team member".freeze,
|
1802
|
+
"mads:authoritativeLabel" => %(Research team member).freeze,
|
1803
|
+
"mads:code" => %(rtm).freeze,
|
1804
1804
|
"skos:notation" => %(rtm).freeze,
|
1805
1805
|
"skos:prefLabel" => %(Research team member).freeze,
|
1806
1806
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1807
|
-
type: ["
|
1807
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1808
1808
|
property :sad,
|
1809
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Scientific advisor).freeze,
|
1810
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(sad).freeze,
|
1811
1809
|
label: "Scientific advisor".freeze,
|
1810
|
+
"mads:authoritativeLabel" => %(Scientific advisor).freeze,
|
1811
|
+
"mads:code" => %(sad).freeze,
|
1812
1812
|
"skos:notation" => %(sad).freeze,
|
1813
1813
|
"skos:prefLabel" => %(Scientific advisor).freeze,
|
1814
1814
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1815
|
-
type: ["
|
1815
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1816
1816
|
property :sce,
|
1817
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Scenarist).freeze,
|
1818
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(sce).freeze,
|
1819
1817
|
label: "Scenarist".freeze,
|
1818
|
+
"mads:authoritativeLabel" => %(Scenarist).freeze,
|
1819
|
+
"mads:code" => %(sce).freeze,
|
1820
1820
|
"skos:notation" => %(sce).freeze,
|
1821
1821
|
"skos:prefLabel" => %(Scenarist).freeze,
|
1822
1822
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1823
|
-
type: ["
|
1823
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1824
1824
|
property :scl,
|
1825
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Sculptor).freeze,
|
1826
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(scl).freeze,
|
1827
1825
|
label: "Sculptor".freeze,
|
1826
|
+
"mads:authoritativeLabel" => %(Sculptor).freeze,
|
1827
|
+
"mads:code" => %(scl).freeze,
|
1828
1828
|
"skos:notation" => %(scl).freeze,
|
1829
1829
|
"skos:prefLabel" => %(Sculptor).freeze,
|
1830
1830
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/aut".freeze, "dc11:contributor".freeze],
|
1831
|
-
type: ["
|
1831
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1832
1832
|
property :scr,
|
1833
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Scribe).freeze,
|
1834
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(scr).freeze,
|
1835
1833
|
label: "Scribe".freeze,
|
1834
|
+
"mads:authoritativeLabel" => %(Scribe).freeze,
|
1835
|
+
"mads:code" => %(scr).freeze,
|
1836
1836
|
"skos:notation" => %(scr).freeze,
|
1837
1837
|
"skos:prefLabel" => %(Scribe).freeze,
|
1838
1838
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1839
|
-
type: ["
|
1839
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1840
1840
|
property :sds,
|
1841
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Sound designer).freeze,
|
1842
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(sds).freeze,
|
1843
1841
|
label: "Sound designer".freeze,
|
1842
|
+
"mads:authoritativeLabel" => %(Sound designer).freeze,
|
1843
|
+
"mads:code" => %(sds).freeze,
|
1844
1844
|
"skos:notation" => %(sds).freeze,
|
1845
1845
|
"skos:prefLabel" => %(Sound designer).freeze,
|
1846
1846
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1847
|
-
type: ["
|
1847
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1848
1848
|
property :sec,
|
1849
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Secretary).freeze,
|
1850
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(sec).freeze,
|
1851
1849
|
label: "Secretary".freeze,
|
1850
|
+
"mads:authoritativeLabel" => %(Secretary).freeze,
|
1851
|
+
"mads:code" => %(sec).freeze,
|
1852
1852
|
"skos:notation" => %(sec).freeze,
|
1853
1853
|
"skos:prefLabel" => %(Secretary).freeze,
|
1854
1854
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1855
|
-
type: ["
|
1855
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1856
1856
|
property :sgd,
|
1857
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Stage director).freeze,
|
1858
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(sgd).freeze,
|
1859
1857
|
label: "Stage director".freeze,
|
1858
|
+
"mads:authoritativeLabel" => %(Stage director).freeze,
|
1859
|
+
"mads:code" => %(sgd).freeze,
|
1860
1860
|
"skos:notation" => %(sgd).freeze,
|
1861
1861
|
"skos:prefLabel" => %(Stage director).freeze,
|
1862
1862
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1863
|
-
type: ["
|
1863
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1864
1864
|
property :sgn,
|
1865
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Signer).freeze,
|
1866
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(sgn).freeze,
|
1867
1865
|
label: "Signer".freeze,
|
1866
|
+
"mads:authoritativeLabel" => %(Signer).freeze,
|
1867
|
+
"mads:code" => %(sgn).freeze,
|
1868
1868
|
"skos:notation" => %(sgn).freeze,
|
1869
1869
|
"skos:prefLabel" => %(Signer).freeze,
|
1870
1870
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1871
|
-
type: ["
|
1871
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1872
1872
|
property :sht,
|
1873
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Supporting host).freeze,
|
1874
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(sht).freeze,
|
1875
1873
|
label: "Supporting host".freeze,
|
1874
|
+
"mads:authoritativeLabel" => %(Supporting host).freeze,
|
1875
|
+
"mads:code" => %(sht).freeze,
|
1876
1876
|
"skos:notation" => %(sht).freeze,
|
1877
1877
|
"skos:prefLabel" => %(Supporting host).freeze,
|
1878
1878
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1879
|
-
type: ["
|
1879
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1880
1880
|
property :sll,
|
1881
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Seller).freeze,
|
1882
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(sll).freeze,
|
1883
1881
|
label: "Seller".freeze,
|
1882
|
+
"mads:authoritativeLabel" => %(Seller).freeze,
|
1883
|
+
"mads:code" => %(sll).freeze,
|
1884
1884
|
"skos:notation" => %(sll).freeze,
|
1885
1885
|
"skos:prefLabel" => %(Seller).freeze,
|
1886
1886
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/fmo".freeze, "dc11:contributor".freeze],
|
1887
|
-
type: ["
|
1887
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1888
1888
|
property :sng,
|
1889
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Singer).freeze,
|
1890
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(sng).freeze,
|
1891
1889
|
label: "Singer".freeze,
|
1890
|
+
"mads:authoritativeLabel" => %(Singer).freeze,
|
1891
|
+
"mads:code" => %(sng).freeze,
|
1892
1892
|
"skos:notation" => %(sng).freeze,
|
1893
1893
|
"skos:prefLabel" => %(Singer).freeze,
|
1894
1894
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prf".freeze, "dc11:contributor".freeze],
|
1895
|
-
type: ["
|
1895
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1896
1896
|
property :spk,
|
1897
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Speaker).freeze,
|
1898
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(spk).freeze,
|
1899
1897
|
label: "Speaker".freeze,
|
1898
|
+
"mads:authoritativeLabel" => %(Speaker).freeze,
|
1899
|
+
"mads:code" => %(spk).freeze,
|
1900
1900
|
"skos:notation" => %(spk).freeze,
|
1901
1901
|
"skos:prefLabel" => %(Speaker).freeze,
|
1902
1902
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prf".freeze, "dc11:contributor".freeze],
|
1903
|
-
type: ["
|
1903
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1904
1904
|
property :spn,
|
1905
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Sponsor).freeze,
|
1906
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(spn).freeze,
|
1907
1905
|
label: "Sponsor".freeze,
|
1906
|
+
"mads:authoritativeLabel" => %(Sponsor).freeze,
|
1907
|
+
"mads:code" => %(spn).freeze,
|
1908
1908
|
"skos:notation" => %(spn).freeze,
|
1909
1909
|
"skos:prefLabel" => %(Sponsor).freeze,
|
1910
1910
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1911
|
-
type: ["
|
1911
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1912
1912
|
property :spy,
|
1913
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Second party).freeze,
|
1914
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(spy).freeze,
|
1915
1913
|
label: "Second party".freeze,
|
1914
|
+
"mads:authoritativeLabel" => %(Second party).freeze,
|
1915
|
+
"mads:code" => %(spy).freeze,
|
1916
1916
|
"skos:notation" => %(spy).freeze,
|
1917
1917
|
"skos:prefLabel" => %(Second party).freeze,
|
1918
1918
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1919
|
-
type: ["
|
1919
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1920
1920
|
property :srv,
|
1921
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Surveyor).freeze,
|
1922
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(srv).freeze,
|
1923
1921
|
label: "Surveyor".freeze,
|
1922
|
+
"mads:authoritativeLabel" => %(Surveyor).freeze,
|
1923
|
+
"mads:code" => %(srv).freeze,
|
1924
1924
|
"skos:notation" => %(srv).freeze,
|
1925
1925
|
"skos:prefLabel" => %(Surveyor).freeze,
|
1926
1926
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1927
|
-
type: ["
|
1927
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1928
1928
|
property :std,
|
1929
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Set designer).freeze,
|
1930
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(std).freeze,
|
1931
1929
|
label: "Set designer".freeze,
|
1930
|
+
"mads:authoritativeLabel" => %(Set designer).freeze,
|
1931
|
+
"mads:code" => %(std).freeze,
|
1932
1932
|
"skos:notation" => %(std).freeze,
|
1933
1933
|
"skos:prefLabel" => %(Set designer).freeze,
|
1934
1934
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1935
|
-
type: ["
|
1935
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1936
1936
|
property :stg,
|
1937
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Setting).freeze,
|
1938
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(stg).freeze,
|
1939
1937
|
label: "Setting".freeze,
|
1938
|
+
"mads:authoritativeLabel" => %(Setting).freeze,
|
1939
|
+
"mads:code" => %(stg).freeze,
|
1940
1940
|
"skos:notation" => %(stg).freeze,
|
1941
1941
|
"skos:prefLabel" => %(Setting).freeze,
|
1942
1942
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1943
|
-
type: ["
|
1943
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1944
1944
|
property :stl,
|
1945
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Storyteller).freeze,
|
1946
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(stl).freeze,
|
1947
1945
|
label: "Storyteller".freeze,
|
1946
|
+
"mads:authoritativeLabel" => %(Storyteller).freeze,
|
1947
|
+
"mads:code" => %(stl).freeze,
|
1948
1948
|
"skos:notation" => %(stl).freeze,
|
1949
1949
|
"skos:prefLabel" => %(Storyteller).freeze,
|
1950
1950
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prf".freeze, "dc11:contributor".freeze],
|
1951
|
-
type: ["
|
1951
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1952
1952
|
property :stm,
|
1953
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Stage manager).freeze,
|
1954
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(stm).freeze,
|
1955
1953
|
label: "Stage manager".freeze,
|
1954
|
+
"mads:authoritativeLabel" => %(Stage manager).freeze,
|
1955
|
+
"mads:code" => %(stm).freeze,
|
1956
1956
|
"skos:notation" => %(stm).freeze,
|
1957
1957
|
"skos:prefLabel" => %(Stage manager).freeze,
|
1958
1958
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1959
|
-
type: ["
|
1959
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1960
1960
|
property :stn,
|
1961
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Standards body).freeze,
|
1962
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(stn).freeze,
|
1963
1961
|
label: "Standards body".freeze,
|
1962
|
+
"mads:authoritativeLabel" => %(Standards body).freeze,
|
1963
|
+
"mads:code" => %(stn).freeze,
|
1964
1964
|
"skos:notation" => %(stn).freeze,
|
1965
1965
|
"skos:prefLabel" => %(Standards body).freeze,
|
1966
1966
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
1967
|
-
type: ["
|
1967
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1968
1968
|
property :str,
|
1969
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Stereotyper).freeze,
|
1970
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(str).freeze,
|
1971
1969
|
label: "Stereotyper".freeze,
|
1970
|
+
"mads:authoritativeLabel" => %(Stereotyper).freeze,
|
1971
|
+
"mads:code" => %(str).freeze,
|
1972
1972
|
"skos:notation" => %(str).freeze,
|
1973
1973
|
"skos:prefLabel" => %(Stereotyper).freeze,
|
1974
1974
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1975
|
-
type: ["
|
1975
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1976
1976
|
property :tcd,
|
1977
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Technical director).freeze,
|
1978
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(tcd).freeze,
|
1979
1977
|
label: "Technical director".freeze,
|
1978
|
+
"mads:authoritativeLabel" => %(Technical director).freeze,
|
1979
|
+
"mads:code" => %(tcd).freeze,
|
1980
1980
|
"skos:notation" => %(tcd).freeze,
|
1981
1981
|
"skos:prefLabel" => %(Technical director).freeze,
|
1982
1982
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1983
|
-
type: ["
|
1983
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1984
1984
|
property :tch,
|
1985
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Teacher).freeze,
|
1986
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(tch).freeze,
|
1987
1985
|
label: "Teacher".freeze,
|
1986
|
+
"mads:authoritativeLabel" => %(Teacher).freeze,
|
1987
|
+
"mads:code" => %(tch).freeze,
|
1988
1988
|
"skos:notation" => %(tch).freeze,
|
1989
1989
|
"skos:prefLabel" => %(Teacher).freeze,
|
1990
1990
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/prf".freeze, "dc11:contributor".freeze],
|
1991
|
-
type: ["
|
1991
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
1992
1992
|
property :ths,
|
1993
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Thesis advisor).freeze,
|
1994
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(ths).freeze,
|
1995
1993
|
label: "Thesis advisor".freeze,
|
1994
|
+
"mads:authoritativeLabel" => %(Thesis advisor).freeze,
|
1995
|
+
"mads:code" => %(ths).freeze,
|
1996
1996
|
"skos:notation" => %(ths).freeze,
|
1997
1997
|
"skos:prefLabel" => %(Thesis advisor).freeze,
|
1998
1998
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
1999
|
-
type: ["
|
1999
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2000
2000
|
property :tld,
|
2001
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Television director).freeze,
|
2002
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(tld).freeze,
|
2003
2001
|
label: "Television director".freeze,
|
2002
|
+
"mads:authoritativeLabel" => %(Television director).freeze,
|
2003
|
+
"mads:code" => %(tld).freeze,
|
2004
2004
|
"skos:notation" => %(tld).freeze,
|
2005
2005
|
"skos:prefLabel" => %(Television director).freeze,
|
2006
2006
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/drt".freeze, "dc11:contributor".freeze],
|
2007
|
-
type: ["
|
2007
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2008
2008
|
property :tlp,
|
2009
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Television producer).freeze,
|
2010
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(tlp).freeze,
|
2011
2009
|
label: "Television producer".freeze,
|
2010
|
+
"mads:authoritativeLabel" => %(Television producer).freeze,
|
2011
|
+
"mads:code" => %(tlp).freeze,
|
2012
2012
|
"skos:notation" => %(tlp).freeze,
|
2013
2013
|
"skos:prefLabel" => %(Television producer).freeze,
|
2014
2014
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/pro".freeze, "dc11:contributor".freeze],
|
2015
|
-
type: ["
|
2015
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2016
2016
|
property :trc,
|
2017
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Transcriber).freeze,
|
2018
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(trc).freeze,
|
2019
2017
|
label: "Transcriber".freeze,
|
2018
|
+
"mads:authoritativeLabel" => %(Transcriber).freeze,
|
2019
|
+
"mads:code" => %(trc).freeze,
|
2020
2020
|
"skos:notation" => %(trc).freeze,
|
2021
2021
|
"skos:prefLabel" => %(Transcriber).freeze,
|
2022
2022
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
2023
|
-
type: ["
|
2023
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2024
2024
|
property :trl,
|
2025
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Translator).freeze,
|
2026
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(trl).freeze,
|
2027
2025
|
label: "Translator".freeze,
|
2026
|
+
"mads:authoritativeLabel" => %(Translator).freeze,
|
2027
|
+
"mads:code" => %(trl).freeze,
|
2028
2028
|
"skos:notation" => %(trl).freeze,
|
2029
2029
|
"skos:prefLabel" => %(Translator).freeze,
|
2030
2030
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
2031
|
-
type: ["
|
2031
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2032
2032
|
property :tyd,
|
2033
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Type designer).freeze,
|
2034
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(tyd).freeze,
|
2035
2033
|
label: "Type designer".freeze,
|
2034
|
+
"mads:authoritativeLabel" => %(Type designer).freeze,
|
2035
|
+
"mads:code" => %(tyd).freeze,
|
2036
2036
|
"skos:notation" => %(tyd).freeze,
|
2037
2037
|
"skos:prefLabel" => %(Type designer).freeze,
|
2038
2038
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
2039
|
-
type: ["
|
2039
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2040
2040
|
property :tyg,
|
2041
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Typographer).freeze,
|
2042
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(tyg).freeze,
|
2043
2041
|
label: "Typographer".freeze,
|
2042
|
+
"mads:authoritativeLabel" => %(Typographer).freeze,
|
2043
|
+
"mads:code" => %(tyg).freeze,
|
2044
2044
|
"skos:notation" => %(tyg).freeze,
|
2045
2045
|
"skos:prefLabel" => %(Typographer).freeze,
|
2046
2046
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
2047
|
-
type: ["
|
2047
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2048
2048
|
property :uvp,
|
2049
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(University place).freeze,
|
2050
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(uvp).freeze,
|
2051
2049
|
label: "University place".freeze,
|
2050
|
+
"mads:authoritativeLabel" => %(University place).freeze,
|
2051
|
+
"mads:code" => %(uvp).freeze,
|
2052
2052
|
"skos:notation" => %(uvp).freeze,
|
2053
2053
|
"skos:prefLabel" => %(University place).freeze,
|
2054
2054
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
2055
|
-
type: ["
|
2055
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2056
2056
|
property :vac,
|
2057
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Voice actor).freeze,
|
2058
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(vac).freeze,
|
2059
2057
|
label: "Voice actor".freeze,
|
2058
|
+
"mads:authoritativeLabel" => %(Voice actor).freeze,
|
2059
|
+
"mads:code" => %(vac).freeze,
|
2060
2060
|
"skos:notation" => %(vac).freeze,
|
2061
2061
|
"skos:prefLabel" => %(Voice actor).freeze,
|
2062
2062
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/act".freeze, "dc11:contributor".freeze],
|
2063
|
-
type: ["
|
2063
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2064
2064
|
property :vdg,
|
2065
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Videographer).freeze,
|
2066
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(vdg).freeze,
|
2067
2065
|
label: "Videographer".freeze,
|
2066
|
+
"mads:authoritativeLabel" => %(Videographer).freeze,
|
2067
|
+
"mads:code" => %(vdg).freeze,
|
2068
2068
|
"skos:notation" => %(vdg).freeze,
|
2069
2069
|
"skos:prefLabel" => %(Videographer).freeze,
|
2070
2070
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
2071
|
-
type: ["
|
2071
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2072
2072
|
property :wac,
|
2073
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Writer of added commentary).freeze,
|
2074
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(wac).freeze,
|
2075
2073
|
label: "Writer of added commentary".freeze,
|
2074
|
+
"mads:authoritativeLabel" => %(Writer of added commentary).freeze,
|
2075
|
+
"mads:code" => %(wac).freeze,
|
2076
2076
|
"skos:notation" => %(wac).freeze,
|
2077
2077
|
"skos:prefLabel" => %(Writer of added commentary).freeze,
|
2078
2078
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/wst".freeze, "dc11:contributor".freeze],
|
2079
|
-
type: ["
|
2079
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2080
2080
|
property :wal,
|
2081
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Writer of added lyrics).freeze,
|
2082
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(wal).freeze,
|
2083
2081
|
label: "Writer of added lyrics".freeze,
|
2082
|
+
"mads:authoritativeLabel" => %(Writer of added lyrics).freeze,
|
2083
|
+
"mads:code" => %(wal).freeze,
|
2084
2084
|
"skos:notation" => %(wal).freeze,
|
2085
2085
|
"skos:prefLabel" => %(Writer of added lyrics).freeze,
|
2086
2086
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/wst".freeze, "dc11:contributor".freeze],
|
2087
|
-
type: ["
|
2087
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2088
2088
|
property :wam,
|
2089
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Writer of accompanying material).freeze,
|
2090
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(wam).freeze,
|
2091
2089
|
label: "Writer of accompanying material".freeze,
|
2090
|
+
"mads:authoritativeLabel" => %(Writer of accompanying material).freeze,
|
2091
|
+
"mads:code" => %(wam).freeze,
|
2092
2092
|
"skos:notation" => %(wam).freeze,
|
2093
2093
|
"skos:prefLabel" => %(Writer of accompanying material).freeze,
|
2094
2094
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
2095
|
-
type: ["
|
2095
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2096
2096
|
property :wat,
|
2097
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Writer of added text).freeze,
|
2098
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(wat).freeze,
|
2099
2097
|
label: "Writer of added text".freeze,
|
2098
|
+
"mads:authoritativeLabel" => %(Writer of added text).freeze,
|
2099
|
+
"mads:code" => %(wat).freeze,
|
2100
2100
|
"skos:notation" => %(wat).freeze,
|
2101
2101
|
"skos:prefLabel" => %(Writer of added text).freeze,
|
2102
2102
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "http://id.loc.gov/vocabulary/relators/wst".freeze, "dc11:contributor".freeze],
|
2103
|
-
type: ["
|
2103
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2104
2104
|
property :wdc,
|
2105
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Woodcutter).freeze,
|
2106
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(wdc).freeze,
|
2107
2105
|
label: "Woodcutter".freeze,
|
2106
|
+
"mads:authoritativeLabel" => %(Woodcutter).freeze,
|
2107
|
+
"mads:code" => %(wdc).freeze,
|
2108
2108
|
"skos:notation" => %(wdc).freeze,
|
2109
2109
|
"skos:prefLabel" => %(Woodcutter).freeze,
|
2110
2110
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
2111
|
-
type: ["
|
2111
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2112
2112
|
property :wde,
|
2113
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Wood engraver).freeze,
|
2114
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(wde).freeze,
|
2115
2113
|
label: "Wood engraver".freeze,
|
2114
|
+
"mads:authoritativeLabel" => %(Wood engraver).freeze,
|
2115
|
+
"mads:code" => %(wde).freeze,
|
2116
2116
|
"skos:notation" => %(wde).freeze,
|
2117
2117
|
"skos:prefLabel" => %(Wood engraver).freeze,
|
2118
2118
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
2119
|
-
type: ["
|
2119
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2120
2120
|
property :win,
|
2121
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Writer of introduction).freeze,
|
2122
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(win).freeze,
|
2123
2121
|
label: "Writer of introduction".freeze,
|
2122
|
+
"mads:authoritativeLabel" => %(Writer of introduction).freeze,
|
2123
|
+
"mads:code" => %(win).freeze,
|
2124
2124
|
"skos:notation" => %(win).freeze,
|
2125
2125
|
"skos:prefLabel" => %(Writer of introduction).freeze,
|
2126
2126
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
2127
|
-
type: ["
|
2127
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2128
2128
|
property :wit,
|
2129
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Witness).freeze,
|
2130
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(wit).freeze,
|
2131
2129
|
label: "Witness".freeze,
|
2130
|
+
"mads:authoritativeLabel" => %(Witness).freeze,
|
2131
|
+
"mads:code" => %(wit).freeze,
|
2132
2132
|
"skos:notation" => %(wit).freeze,
|
2133
2133
|
"skos:prefLabel" => %(Witness).freeze,
|
2134
2134
|
subPropertyOf: "http://id.loc.gov/vocabulary/relators/role".freeze,
|
2135
|
-
type: ["
|
2135
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2136
2136
|
property :wpr,
|
2137
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Writer of preface).freeze,
|
2138
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(wpr).freeze,
|
2139
2137
|
label: "Writer of preface".freeze,
|
2138
|
+
"mads:authoritativeLabel" => %(Writer of preface).freeze,
|
2139
|
+
"mads:code" => %(wpr).freeze,
|
2140
2140
|
"skos:notation" => %(wpr).freeze,
|
2141
2141
|
"skos:prefLabel" => %(Writer of preface).freeze,
|
2142
2142
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
2143
|
-
type: ["
|
2143
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2144
2144
|
property :wst,
|
2145
|
-
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel" => %(Writer of supplementary textual content).freeze,
|
2146
|
-
"http://www.loc.gov/mads/rdf/v1#code" => %(wst).freeze,
|
2147
2145
|
label: "Writer of supplementary textual content".freeze,
|
2146
|
+
"mads:authoritativeLabel" => %(Writer of supplementary textual content).freeze,
|
2147
|
+
"mads:code" => %(wst).freeze,
|
2148
2148
|
"skos:notation" => %(wst).freeze,
|
2149
2149
|
"skos:prefLabel" => %(Writer of supplementary textual content).freeze,
|
2150
2150
|
subPropertyOf: ["http://id.loc.gov/vocabulary/relators/role".freeze, "dc11:contributor".freeze],
|
2151
|
-
type: ["
|
2151
|
+
type: ["mads:Authority".freeze, "mads:Topic".freeze, "owl:ObjectProperty".freeze, "skos:Concept".freeze]
|
2152
2152
|
|
2153
2153
|
# Extra definitions
|
2154
2154
|
term :collection_BIBFRAMEInstance,
|
2155
2155
|
label: "Relators - BIBFRAME Instance Collection".freeze,
|
2156
|
-
type: "
|
2156
|
+
type: "mads:MADSCollection".freeze
|
2157
2157
|
term :collection_BIBFRAMEWork,
|
2158
2158
|
label: "Relators - BIBFRAME Work Collection".freeze,
|
2159
|
-
type: "
|
2159
|
+
type: "mads:MADSCollection".freeze
|
2160
2160
|
term :collection_RDA,
|
2161
2161
|
label: "Relators - RDA Collection".freeze,
|
2162
|
-
type: "
|
2162
|
+
type: "mads:MADSCollection".freeze
|
2163
2163
|
term :collection_RDAContributor,
|
2164
2164
|
label: "Relators - RDA Contributor Collection".freeze,
|
2165
|
-
type: "
|
2165
|
+
type: "mads:MADSCollection".freeze
|
2166
2166
|
term :collection_RDACreator,
|
2167
2167
|
label: "Relators - RDA Creator Collection".freeze,
|
2168
|
-
type: "
|
2168
|
+
type: "mads:MADSCollection".freeze
|
2169
2169
|
term :collection_RDADistributor,
|
2170
2170
|
label: "Relators - RDA Distributor Collection".freeze,
|
2171
|
-
type: "
|
2171
|
+
type: "mads:MADSCollection".freeze
|
2172
2172
|
term :collection_RDAExpression,
|
2173
2173
|
label: "Relators - RDA Expression Collection".freeze,
|
2174
|
-
type: "
|
2174
|
+
type: "mads:MADSCollection".freeze
|
2175
2175
|
term :collection_RDAItem,
|
2176
2176
|
label: "Relators - RDA Item Collection".freeze,
|
2177
|
-
type: "
|
2177
|
+
type: "mads:MADSCollection".freeze
|
2178
2178
|
term :collection_RDAManifestation,
|
2179
2179
|
label: "Relators - RDA Manifestation Collection".freeze,
|
2180
|
-
type: "
|
2180
|
+
type: "mads:MADSCollection".freeze
|
2181
2181
|
term :collection_RDAManufacturer,
|
2182
2182
|
label: "Relators - RDA Manufacturer Collection".freeze,
|
2183
|
-
type: "
|
2183
|
+
type: "mads:MADSCollection".freeze
|
2184
2184
|
term :collection_RDAOther,
|
2185
2185
|
label: "Relators - RDA Other Collection".freeze,
|
2186
|
-
type: "
|
2186
|
+
type: "mads:MADSCollection".freeze
|
2187
2187
|
term :collection_RDAOwner,
|
2188
2188
|
label: "Relators - RDA Owner Collection".freeze,
|
2189
|
-
type: "
|
2189
|
+
type: "mads:MADSCollection".freeze
|
2190
2190
|
term :collection_RDAPublisher,
|
2191
2191
|
label: "Relators - RDA Publisher Collection".freeze,
|
2192
|
-
type: "
|
2192
|
+
type: "mads:MADSCollection".freeze
|
2193
2193
|
term :collection_RDAWork,
|
2194
2194
|
label: "Relators - RDA Work Collection".freeze,
|
2195
|
-
type: "
|
2195
|
+
type: "mads:MADSCollection".freeze
|
2196
2196
|
end
|
2197
2197
|
end
|