forked from charlesvardeman/pidinst-experiments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pidinst.ttl
218 lines (171 loc) · 7.03 KB
/
pidinst.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
@prefix : <http://example.org/PIDINST/> .
@prefix schema: <http://schema.org/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
:InstrumentInstance a owl:Class ;
rdfs:comment "An instrument instance described in the PIDINST schema." .
:identifier a owl:DatatypeProperty ;
schema:domainIncludes :InstrumentInstance ;
schema:rangeIncludes xsd:string ;
rdfs:comment "Unique string that identifies the instrument instance." .
:identifierType a owl:DatatypeProperty ;
schema:domainIncludes :InstrumentInstance ;
schema:rangeIncludes xsd:string ;
rdfs:comment "Type of the identifier." .
:schemaVersion a owl:DatatypeProperty ;
schema:domainIncludes :InstrumentInstance ;
schema:rangeIncludes xsd:string ;
rdfs:comment "Version number of the PIDINST schema used in this record." .
:landingPage a owl:DatatypeProperty ;
schema:domainIncludes :InstrumentInstance ;
schema:rangeIncludes xsd:anyURI ;
rdfs:comment "A landing page that the identifier resolves to." .
:name a owl:DatatypeProperty ;
schema:domainIncludes :InstrumentInstance ;
schema:rangeIncludes xsd:string ;
rdfs:comment "Name by which the instrument instance is known." .
:owner a owl:ObjectProperty ;
schema:domainIncludes :InstrumentInstance ;
schema:rangeIncludes :Owner ;
rdfs:comment "Institution(s) responsible for the management of the instrument." .
:Owner a owl:Class ;
rdfs:comment "Institution(s) responsible for the management of the instrument." .
:ownerName a owl:DatatypeProperty ;
schema:domainIncludes :Owner ;
schema:rangeIncludes xsd:string ;
rdfs:comment "Full name of the owner." .
:ownerContact a owl:DatatypeProperty ;
schema:domainIncludes :Owner ;
schema:rangeIncludes xsd:string ;
rdfs:comment "Contact address of the owner." .
:ownerIdentifier a owl:DatatypeProperty ;
schema:domainIncludes :Owner ;
schema:rangeIncludes xsd:string ;
rdfs:comment "Identifier used to identify the owner." .
:ownerIdentifierType a owl:DatatypeProperty ;
schema:domainIncludes :Owner ;
schema:rangeIncludes xsd:string ;
rdfs:comment "Type of the owner identifier." .
:Manufacturer a owl:Class ;
rdfs:label "Manufacturer" ;
rdfs:comment "The instrument's manufacturer(s) or developer." .
:manufacturerName a owl:DatatypeProperty ;
rdfs:label "manufacturerName" ;
schema:domainIncludes :Manufacturer ;
schema:rangeIncludes xsd:string .
:manufacturerIdentifier a owl:DatatypeProperty ;
rdfs:label "manufacturerIdentifier" ;
schema:domainIncludes :Manufacturer ;
schema:rangeIncludes xsd:string .
:manufacturerIdentifierType a owl:DatatypeProperty ;
rdfs:label "manufacturerIdentifierType" ;
schema:domainIncludes :Manufacturer ;
schema:rangeIncludes xsd:string .
# Property linking Instrument Instance to Manufacturer
:hasManufacturer a owl:ObjectProperty ;
rdfs:label "hasManufacturer" ;
schema:domainIncludes :InstrumentInstance ;
schema:rangeIncludes :Manufacturer .
:Model a owl:Class ;
rdfs:label "Model" ;
rdfs:comment "Name of the model or type of device as attributed by the manufacturer." .
:modelName a owl:DatatypeProperty ;
rdfs:label "modelName" ;
schema:domainIncludes :Model ;
schema:rangeIncludes xsd:string .
:modelIdentifier a owl:DatatypeProperty ;
rdfs:label "modelIdentifier" ;
schema:domainIncludes :Model ;
schema:rangeIncludes xsd:string .
:modelIdentifierType a owl:DatatypeProperty ;
rdfs:label "modelIdentifierType" ;
schema:domainIncludes :Model ;
schema:rangeIncludes xsd:string .
# Property linking Instrument Instance to Model
:hasModel a owl:ObjectProperty ;
rdfs:label "hasModel" ;
schema:domainIncludes :InstrumentInstance ;
schema:rangeIncludes :Model .
:description a owl:DatatypeProperty ;
rdfs:label "description" ;
schema:domainIncludes :InstrumentInstance ;
schema:rangeIncludes xsd:string .
:InstrumentType a owl:Class ;
rdfs:label "InstrumentType" ;
rdfs:comment "Classification of the type of the instrument." .
:instrumentTypeName a owl:DatatypeProperty ;
rdfs:label "instrumentTypeName" ;
schema:domainIncludes :InstrumentType ;
schema:rangeIncludes xsd:string .
:instrumentTypeIdentifier a owl:DatatypeProperty ;
rdfs:label "instrumentTypeIdentifier" ;
schema:domainIncludes :InstrumentType ;
schema:rangeIncludes xsd:string .
:instrumentTypeIdentifierType a owl:DatatypeProperty ;
rdfs:label "instrumentTypeIdentifierType" ;
schema:domainIncludes :InstrumentType ;
schema:rangeIncludes xsd:string .
# Property linking Instrument Instance to InstrumentType
:hasInstrumentType a owl:ObjectProperty ;
rdfs:label "hasInstrumentType" ;
schema:domainIncludes :InstrumentInstance ;
schema:rangeIncludes :InstrumentType .
:measuredVariable rdf:type rdf:Property ;
rdfs:label "measuredVariable" ;
rdfs:domain :InstrumentInstance ;
rdfs:range xsd:string .
:date rdf:type rdf:Property ;
rdfs:label "date" ;
rdfs:domain :InstrumentInstance ;
rdfs:range xsd:dateTime .
:dateType rdf:type rdf:Property ;
rdfs:label "dateType" ;
rdfs:domain :InstrumentInstance ;
rdfs:range :DateType .
:DateType rdf:type rdfs:Class ;
rdfs:label "DateType" ;
rdfs:subClassOf rdf:List .
:Commissioned rdf:type :DateType .
:DeCommissioned rdf:type :DateType .
:relatedIdentifier rdf:type rdf:Property ;
rdfs:label "relatedIdentifier" ;
rdfs:domain :InstrumentInstance ;
rdfs:range xsd:string .
:relatedIdentifierType rdf:type rdf:Property ;
rdfs:label "relatedIdentifierType" ;
rdfs:domain :InstrumentInstance ;
rdfs:range :RelatedIdentifierType .
:RelatedIdentifierType rdf:type rdfs:Class ;
rdfs:label "RelatedIdentifierType" ;
rdfs:subClassOf rdf:List .
# ... Insert controlled list values as subclasses of RelatedIdentifierType...
:relationType rdf:type rdf:Property ;
rdfs:label "relationType" ;
rdfs:domain :InstrumentInstance ;
rdfs:range :RelationType .
:RelationType rdf:type rdfs:Class ;
rdfs:label "RelationType" ;
rdfs:subClassOf rdf:List .
# ... Insert controlled list values as subclasses of RelationType...
:relatedIdentifierName rdf:type rdf:Property ;
rdfs:label "relatedIdentifierName" ;
rdfs:domain :InstrumentInstance ;
rdfs:range xsd:string .
:alternateIdentifier rdf:type rdf:Property ;
rdfs:label "alternateIdentifier" ;
rdfs:domain :InstrumentInstance ;
rdfs:range xsd:string .
:alternateIdentifierType rdf:type rdf:Property ;
rdfs:label "alternateIdentifierType" ;
rdfs:domain :InstrumentInstance ;
rdfs:range :AlternateIdentifierType .
:AlternateIdentifierType rdf:type rdfs:Class ;
rdfs:label "AlternateIdentifierType" ;
rdfs:subClassOf rdf:List .
# ... Insert controlled list values as subclasses of AlternateIdentifierType...
:alternateIdentifierName rdf:type rdf:Property ;
rdfs:label "alternateIdentifierName" ;
rdfs:domain :InstrumentInstance ;
rdfs:range xsd:string .