forked from linkml/linkml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathout.rdf
More file actions
318 lines (287 loc) · 16.9 KB
/
out.rdf
File metadata and controls
318 lines (287 loc) · 16.9 KB
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix linkml: <https://w3id.org/linkml/> .
@prefix schema1: <http://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix shex: <http://www.w3.org/ns/shex#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<https://w3id.org/linkml/examples/personinfo/personinfo> a linkml:SchemaDefinition ;
dcterms:license "https://creativecommons.org/publicdomain/zero/1.0/" ;
sh:declare [ sh:namespace linkml: ;
sh:prefix "linkml" ] ;
linkml:classes <https://w3id.org/linkml/examples/personinfo/Person> ;
linkml:default_prefix "https://w3id.org/linkml/examples/personinfo/" ;
linkml:default_range <https://w3id.org/linkml/examples/personinfo/string> ;
linkml:generation_date "2024-03-01T14:55:23"^^xsd:dateTime ;
linkml:id <https://w3id.org/linkml/examples/personinfo> ;
linkml:imports linkml:types ;
linkml:metamodel_version "1.7.0" ;
linkml:slots <https://w3id.org/linkml/examples/personinfo/person__age>,
<https://w3id.org/linkml/examples/personinfo/person__aliases>,
<https://w3id.org/linkml/examples/personinfo/person__full_name>,
<https://w3id.org/linkml/examples/personinfo/person__id>,
<https://w3id.org/linkml/examples/personinfo/person__phone> ;
linkml:source_file "test.yaml" ;
linkml:source_file_date "2024-03-01T14:51:46"^^xsd:dateTime ;
linkml:source_file_size 313 ;
linkml:types <https://w3id.org/linkml/examples/personinfo/boolean>,
<https://w3id.org/linkml/examples/personinfo/curie>,
<https://w3id.org/linkml/examples/personinfo/date>,
<https://w3id.org/linkml/examples/personinfo/date_or_datetime>,
<https://w3id.org/linkml/examples/personinfo/datetime>,
<https://w3id.org/linkml/examples/personinfo/decimal>,
<https://w3id.org/linkml/examples/personinfo/double>,
<https://w3id.org/linkml/examples/personinfo/float>,
<https://w3id.org/linkml/examples/personinfo/integer>,
<https://w3id.org/linkml/examples/personinfo/jsonpath>,
<https://w3id.org/linkml/examples/personinfo/jsonpointer>,
<https://w3id.org/linkml/examples/personinfo/ncname>,
<https://w3id.org/linkml/examples/personinfo/nodeidentifier>,
<https://w3id.org/linkml/examples/personinfo/objectidentifier>,
<https://w3id.org/linkml/examples/personinfo/sparqlpath>,
<https://w3id.org/linkml/examples/personinfo/string>,
<https://w3id.org/linkml/examples/personinfo/time>,
<https://w3id.org/linkml/examples/personinfo/uri>,
<https://w3id.org/linkml/examples/personinfo/uriorcurie> .
<https://w3id.org/linkml/examples/personinfo/boolean> a linkml:TypeDefinition ;
skos:definition "A binary (true or false) value" ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"boolean\"." ;
skos:exactMatch schema1:Boolean ;
skos:inScheme linkml:types ;
linkml:base "Bool" ;
linkml:definition_uri linkml:Boolean ;
linkml:imported_from "linkml:types" ;
linkml:repr "bool" ;
linkml:uri xsd:boolean .
<https://w3id.org/linkml/examples/personinfo/curie> a linkml:TypeDefinition ;
dcterms:conformsTo "https://www.w3.org/TR/curie/" ;
skos:definition "a compact URI" ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"curie\"." ;
skos:inScheme linkml:types ;
skos:note "in RDF serializations this MUST be expanded to a URI",
"in non-RDF serializations MAY be serialized as the compact representation" ;
linkml:base "Curie" ;
linkml:definition_uri linkml:Curie ;
linkml:imported_from "linkml:types" ;
linkml:repr "str" ;
linkml:uri xsd:string .
<https://w3id.org/linkml/examples/personinfo/date> a linkml:TypeDefinition ;
skos:definition "a date (year, month and day) in an idealized calendar" ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"date\".",
"URI is dateTime because OWL reasoners don't work with straight date or time" ;
skos:exactMatch schema1:Date ;
skos:inScheme linkml:types ;
linkml:base "XSDDate" ;
linkml:definition_uri linkml:Date ;
linkml:imported_from "linkml:types" ;
linkml:repr "str" ;
linkml:uri xsd:date .
<https://w3id.org/linkml/examples/personinfo/date_or_datetime> a linkml:TypeDefinition ;
skos:definition "Either a date or a datetime" ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"date_or_datetime\"." ;
skos:inScheme linkml:types ;
linkml:base "str" ;
linkml:definition_uri linkml:DateOrDatetime ;
linkml:imported_from "linkml:types" ;
linkml:repr "str" ;
linkml:uri linkml:DateOrDatetime .
<https://w3id.org/linkml/examples/personinfo/datetime> a linkml:TypeDefinition ;
skos:definition "The combination of a date and time" ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"datetime\"." ;
skos:exactMatch schema1:DateTime ;
skos:inScheme linkml:types ;
linkml:base "XSDDateTime" ;
linkml:definition_uri linkml:Datetime ;
linkml:imported_from "linkml:types" ;
linkml:repr "str" ;
linkml:uri xsd:dateTime .
<https://w3id.org/linkml/examples/personinfo/decimal> a linkml:TypeDefinition ;
skos:broadMatch schema1:Number ;
skos:definition "A real number with arbitrary precision that conforms to the xsd:decimal specification" ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"decimal\"." ;
skos:inScheme linkml:types ;
linkml:base "Decimal" ;
linkml:definition_uri linkml:Decimal ;
linkml:imported_from "linkml:types" ;
linkml:uri xsd:decimal .
<https://w3id.org/linkml/examples/personinfo/double> a linkml:TypeDefinition ;
skos:closeMatch schema1:Float ;
skos:definition "A real number that conforms to the xsd:double specification" ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"double\"." ;
skos:inScheme linkml:types ;
linkml:base "float" ;
linkml:definition_uri linkml:Double ;
linkml:imported_from "linkml:types" ;
linkml:uri xsd:double .
<https://w3id.org/linkml/examples/personinfo/float> a linkml:TypeDefinition ;
skos:definition "A real number that conforms to the xsd:float specification" ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"float\"." ;
skos:exactMatch schema1:Float ;
skos:inScheme linkml:types ;
linkml:base "float" ;
linkml:definition_uri linkml:Float ;
linkml:imported_from "linkml:types" ;
linkml:uri xsd:float .
<https://w3id.org/linkml/examples/personinfo/integer> a linkml:TypeDefinition ;
skos:definition "An integer" ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"integer\"." ;
skos:exactMatch schema1:Integer ;
skos:inScheme linkml:types ;
linkml:base "int" ;
linkml:definition_uri linkml:Integer ;
linkml:imported_from "linkml:types" ;
linkml:uri xsd:integer .
<https://w3id.org/linkml/examples/personinfo/jsonpath> a linkml:TypeDefinition ;
dcterms:conformsTo "https://www.ietf.org/archive/id/draft-goessner-dispatch-jsonpath-00.html" ;
skos:definition "A string encoding a JSON Path. The value of the string MUST conform to JSON Point syntax and SHOULD dereference to zero or more valid objects within the current instance document when encoded in tree form." ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"jsonpath\"." ;
skos:inScheme linkml:types ;
linkml:base "str" ;
linkml:definition_uri linkml:Jsonpath ;
linkml:imported_from "linkml:types" ;
linkml:repr "str" ;
linkml:uri xsd:string .
<https://w3id.org/linkml/examples/personinfo/jsonpointer> a linkml:TypeDefinition ;
dcterms:conformsTo "https://datatracker.ietf.org/doc/html/rfc6901" ;
skos:definition "A string encoding a JSON Pointer. The value of the string MUST conform to JSON Point syntax and SHOULD dereference to a valid object within the current instance document when encoded in tree form." ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"jsonpointer\"." ;
skos:inScheme linkml:types ;
linkml:base "str" ;
linkml:definition_uri linkml:Jsonpointer ;
linkml:imported_from "linkml:types" ;
linkml:repr "str" ;
linkml:uri xsd:string .
<https://w3id.org/linkml/examples/personinfo/ncname> a linkml:TypeDefinition ;
skos:definition "Prefix part of CURIE" ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"ncname\"." ;
skos:inScheme linkml:types ;
linkml:base "NCName" ;
linkml:definition_uri linkml:Ncname ;
linkml:imported_from "linkml:types" ;
linkml:repr "str" ;
linkml:uri xsd:string .
<https://w3id.org/linkml/examples/personinfo/nodeidentifier> a linkml:TypeDefinition ;
skos:definition "A URI, CURIE or BNODE that represents a node in a model." ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"nodeidentifier\"." ;
skos:inScheme linkml:types ;
linkml:base "NodeIdentifier" ;
linkml:definition_uri linkml:Nodeidentifier ;
linkml:imported_from "linkml:types" ;
linkml:repr "str" ;
linkml:uri shex:nonLiteral .
<https://w3id.org/linkml/examples/personinfo/objectidentifier> a linkml:TypeDefinition ;
skos:definition "A URI or CURIE that represents an object in the model." ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"objectidentifier\"." ;
skos:inScheme linkml:types ;
skos:note "Used for inheritance and type checking" ;
linkml:base "ElementIdentifier" ;
linkml:definition_uri linkml:Objectidentifier ;
linkml:imported_from "linkml:types" ;
linkml:repr "str" ;
linkml:uri shex:iri .
<https://w3id.org/linkml/examples/personinfo/sparqlpath> a linkml:TypeDefinition ;
dcterms:conformsTo "https://www.w3.org/TR/sparql11-query/#propertypaths" ;
skos:definition "A string encoding a SPARQL Property Path. The value of the string MUST conform to SPARQL syntax and SHOULD dereference to zero or more valid objects within the current instance document when encoded as RDF." ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"sparqlpath\"." ;
skos:inScheme linkml:types ;
linkml:base "str" ;
linkml:definition_uri linkml:Sparqlpath ;
linkml:imported_from "linkml:types" ;
linkml:repr "str" ;
linkml:uri xsd:string .
<https://w3id.org/linkml/examples/personinfo/time> a linkml:TypeDefinition ;
skos:definition "A time object represents a (local) time of day, independent of any particular day" ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"time\".",
"URI is dateTime because OWL reasoners do not work with straight date or time" ;
skos:exactMatch schema1:Time ;
skos:inScheme linkml:types ;
linkml:base "XSDTime" ;
linkml:definition_uri linkml:Time ;
linkml:imported_from "linkml:types" ;
linkml:repr "str" ;
linkml:uri xsd:time .
<https://w3id.org/linkml/examples/personinfo/uri> a linkml:TypeDefinition ;
dcterms:conformsTo "https://www.ietf.org/rfc/rfc3987.txt" ;
skos:closeMatch schema1:URL ;
skos:definition "a complete URI" ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"uri\"." ;
skos:inScheme linkml:types ;
skos:note "in RDF serializations a slot with range of uri is treated as a literal or type xsd:anyURI unless it is an identifier or a reference to an identifier, in which case it is translated directly to a node" ;
linkml:base "URI" ;
linkml:definition_uri linkml:Uri ;
linkml:imported_from "linkml:types" ;
linkml:repr "str" ;
linkml:uri xsd:anyURI .
<https://w3id.org/linkml/examples/personinfo/uriorcurie> a linkml:TypeDefinition ;
skos:definition "a URI or a CURIE" ;
skos:editorialNote "If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"uriorcurie\"." ;
skos:inScheme linkml:types ;
linkml:base "URIorCURIE" ;
linkml:definition_uri linkml:Uriorcurie ;
linkml:imported_from "linkml:types" ;
linkml:repr "str" ;
linkml:uri xsd:anyURI .
<https://w3id.org/linkml/examples/personinfo/age> a linkml:SlotDefinition .
<https://w3id.org/linkml/examples/personinfo/aliases> a linkml:SlotDefinition .
<https://w3id.org/linkml/examples/personinfo/full_name> a linkml:SlotDefinition .
<https://w3id.org/linkml/examples/personinfo/id> a linkml:SlotDefinition .
<https://w3id.org/linkml/examples/personinfo/person__age> a linkml:SlotDefinition ;
skos:inScheme <https://w3id.org/linkml/examples/personinfo> ;
skos:prefLabel "age" ;
linkml:domain_of <https://w3id.org/linkml/examples/personinfo/Person> ;
linkml:owner <https://w3id.org/linkml/examples/personinfo/Person> ;
linkml:range <https://w3id.org/linkml/examples/personinfo/string> ;
linkml:slot_uri <https://w3id.org/linkml/examples/personinfo/age> .
<https://w3id.org/linkml/examples/personinfo/person__aliases> a linkml:SlotDefinition ;
skos:inScheme <https://w3id.org/linkml/examples/personinfo> ;
skos:prefLabel "aliases" ;
linkml:domain_of <https://w3id.org/linkml/examples/personinfo/Person> ;
linkml:owner <https://w3id.org/linkml/examples/personinfo/Person> ;
linkml:range <https://w3id.org/linkml/examples/personinfo/string> ;
linkml:slot_uri <https://w3id.org/linkml/examples/personinfo/aliases> .
<https://w3id.org/linkml/examples/personinfo/person__full_name> a linkml:SlotDefinition ;
skos:inScheme <https://w3id.org/linkml/examples/personinfo> ;
skos:prefLabel "full_name" ;
linkml:domain_of <https://w3id.org/linkml/examples/personinfo/Person> ;
linkml:owner <https://w3id.org/linkml/examples/personinfo/Person> ;
linkml:range <https://w3id.org/linkml/examples/personinfo/string> ;
linkml:slot_uri <https://w3id.org/linkml/examples/personinfo/full_name> .
<https://w3id.org/linkml/examples/personinfo/person__id> a linkml:SlotDefinition ;
skos:inScheme <https://w3id.org/linkml/examples/personinfo> ;
skos:prefLabel "id" ;
linkml:domain_of <https://w3id.org/linkml/examples/personinfo/Person> ;
linkml:owner <https://w3id.org/linkml/examples/personinfo/Person> ;
linkml:range <https://w3id.org/linkml/examples/personinfo/string> ;
linkml:slot_uri <https://w3id.org/linkml/examples/personinfo/id> .
<https://w3id.org/linkml/examples/personinfo/person__phone> a linkml:SlotDefinition ;
skos:inScheme <https://w3id.org/linkml/examples/personinfo> ;
skos:prefLabel "phone" ;
linkml:domain_of <https://w3id.org/linkml/examples/personinfo/Person> ;
linkml:owner <https://w3id.org/linkml/examples/personinfo/Person> ;
linkml:range <https://w3id.org/linkml/examples/personinfo/string> ;
linkml:slot_uri <https://w3id.org/linkml/examples/personinfo/phone> .
<https://w3id.org/linkml/examples/personinfo/phone> a linkml:SlotDefinition .
<https://w3id.org/linkml/examples/personinfo/string> a linkml:TypeDefinition ;
skos:definition "A character string" ;
skos:editorialNote "In RDF serializations, a slot with range of string is treated as a literal or type xsd:string. If you are authoring schemas in LinkML YAML, the type is referenced with the lower case \"string\"." ;
skos:exactMatch schema1:Text ;
skos:inScheme linkml:types ;
linkml:base "str" ;
linkml:definition_uri linkml:String ;
linkml:imported_from "linkml:types" ;
linkml:uri xsd:string .
<https://w3id.org/linkml/examples/personinfo/Person> a linkml:ClassDefinition ;
skos:inScheme <https://w3id.org/linkml/examples/personinfo> ;
linkml:attributes <https://w3id.org/linkml/examples/personinfo/age>,
<https://w3id.org/linkml/examples/personinfo/aliases>,
<https://w3id.org/linkml/examples/personinfo/full_name>,
<https://w3id.org/linkml/examples/personinfo/id>,
<https://w3id.org/linkml/examples/personinfo/phone> ;
linkml:class_uri <https://w3id.org/linkml/examples/personinfo/Person> ;
linkml:definition_uri <https://w3id.org/linkml/examples/personinfo/Person> ;
linkml:slot_usage [ ] ;
linkml:slots <https://w3id.org/linkml/examples/personinfo/person__age>,
<https://w3id.org/linkml/examples/personinfo/person__aliases>,
<https://w3id.org/linkml/examples/personinfo/person__full_name>,
<https://w3id.org/linkml/examples/personinfo/person__id>,
<https://w3id.org/linkml/examples/personinfo/person__phone> .