forked from nicholsn/lokf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlokf.owl.ttl
More file actions
1290 lines (1173 loc) · 47 KB
/
Copy pathlokf.owl.ttl
File metadata and controls
1290 lines (1173 loc) · 47 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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix linkml: <https://w3id.org/linkml/> .
@prefix lokf: <https://w3id.org/lokf/> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema1: <http://schema.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vivo: <http://vivoweb.org/ontology/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
lokf:schema.owl.ttl a owl:Ontology ;
rdfs:label "lokf" ;
dcterms:license "https://creativecommons.org/licenses/by/4.0/" ;
dcterms:title "Linked Open Knowledge Format (LOKF)" ;
pav:version "0.1.0" ;
skos:definition "LOKF is a semantic, ontology-grounded profile of the Google Open Knowledge Format (OKF v0.1). It preserves OKF's authoring model — a directory of markdown files, each with a small YAML frontmatter block describing one concept — but binds every concept, field, and relationship to established web vocabularies (schema.org, W3C DCAT, and W3C PROV-O). Because the frontmatter keys are LinkML slots mapped to IRIs, a LOKF concept file, once a LinkML-generated JSON-LD @context is attached, is simultaneously human-readable markdown AND valid JSON-LD that expands losslessly to RDF triples. The entire format is defined in this single LinkML schema, from which the JSON-LD context, JSON Schema, SHACL shapes, and an OWL ontology are generated." .
lokf:KnowledgeBundle a owl:Class ;
rdfs:label "KnowledgeBundle" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:description ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:base_iri ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:base_iri ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:publisher ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:anyURI ;
owl:onProperty lokf:context ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:license ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:okf_version ],
[ a owl:Restriction ;
owl:allValuesFrom lokf:Agent ;
owl:onProperty lokf:publisher ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:lokf_version ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:title ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:okf_version ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:context ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:anyURI ;
owl:onProperty lokf:license ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:lokf_version ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:publisher ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:title ],
[ a owl:Restriction ;
owl:allValuesFrom lokf:Concept ;
owl:onProperty lokf:concepts ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:concepts ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:context ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:description ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:title ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:lokf_version ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:description ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:okf_version ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:license ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:anyURI ;
owl:onProperty lokf:base_iri ] ;
skos:closeMatch schema1:Collection,
dcat:Catalog ;
skos:definition "A self-contained, hierarchical collection of concept documents — the unit of distribution (a git repo, tarball, or subdirectory). Maps to a DCAT Catalog. When a whole bundle is serialized as a single JSON-LD document, this class is the tree root; individual concept files validate against Concept (or a subclass)." ;
skos:exactMatch lokf:KnowledgeBundle ;
skos:inScheme lokf:schema .
dcterms:isPartOf a owl:Class ;
rdfs:label "isPartOf" ;
rdfs:subClassOf lokf:RelationType ;
skos:definition "The concept is a part of the target." .
dcterms:references a owl:Class ;
rdfs:label "references" ;
rdfs:subClassOf lokf:RelationType ;
skos:definition "The concept refers to the target." .
dcterms:relation a owl:Class ;
rdfs:label "relatedTo" ;
rdfs:subClassOf lokf:RelationType ;
skos:definition "The concept is generically related to the target." .
dcterms:requires a owl:Class ;
rdfs:label "dependsOn" ;
rdfs:subClassOf lokf:RelationType ;
skos:definition "The concept depends on the target." .
dcterms:source a owl:Class ;
rdfs:label "source" ;
rdfs:subClassOf lokf:RelationType ;
skos:definition "The concept is sourced from the target." .
schema1:about a owl:Class ;
rdfs:label "about" ;
rdfs:subClassOf lokf:RelationType ;
skos:definition "The concept is about the target." .
schema1:hasPart a owl:Class ;
rdfs:label "hasPart" ;
rdfs:subClassOf lokf:RelationType ;
skos:definition "The target is a part of the concept." .
schema1:memberOf a owl:Class ;
rdfs:label "memberOf" ;
rdfs:subClassOf lokf:RelationType ;
skos:definition "The concept (a role) is held within the target organization." .
rdf:JSON a owl:Class ;
rdfs:label "json" ;
rdfs:subClassOf lokf:FieldType .
rdfs:isDefinedBy a owl:Class ;
rdfs:label "definedBy" ;
rdfs:subClassOf lokf:RelationType ;
skos:definition "The concept is formally defined by the target." .
xsd:date a owl:Class ;
rdfs:label "date" ;
rdfs:subClassOf lokf:FieldType .
xsd:decimal a owl:Class ;
rdfs:label "number" ;
rdfs:subClassOf lokf:FieldType .
xsd:integer a owl:Class ;
rdfs:label "integer" ;
rdfs:subClassOf lokf:FieldType .
xsd:time a owl:Class ;
rdfs:label "time" ;
rdfs:subClassOf lokf:FieldType .
org:member a owl:Class ;
rdfs:label "holder" ;
rdfs:subClassOf lokf:RelationType ;
skos:definition "The target agent holds this concept (a role)." .
prov:wasDerivedFrom a owl:Class ;
rdfs:label "derivedFrom" ;
rdfs:subClassOf lokf:RelationType ;
skos:definition "The concept was derived from the target." .
lokf:Citation a owl:Class ;
rdfs:label "Citation" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:title ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:title ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:description ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:description ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:url ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:description ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:url ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:anyURI ;
owl:onProperty lokf:url ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:title ] ;
skos:closeMatch dcterms:BibliographicResource ;
skos:definition "A reference to an external source supporting a claim in a concept's body. Attached via the schema:citation predicate." ;
skos:exactMatch schema1:CreativeWork ;
skos:inScheme lokf:schema .
lokf:Distribution a owl:Class ;
rdfs:label "Distribution" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:media_type ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:access_url ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:description ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:media_type ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:description ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:name ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:media_type ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:description ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:access_url ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:name ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:name ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:anyURI ;
owl:onProperty lokf:access_url ] ;
skos:definition "A specific accessible form of a Dataset (a file, feed, or endpoint). Maps to dcat:Distribution." ;
skos:exactMatch dcat:Distribution ;
skos:inScheme lokf:schema .
lokf:Field a owl:Class ;
rdfs:label "Field" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:description ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:name ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:description ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:unit ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:constraints ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:description ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:is_key ],
[ a owl:Restriction ;
owl:allValuesFrom lokf:FieldType ;
owl:onProperty lokf:datatype ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:unit ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:unit ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:constraints ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:datatype ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:boolean ;
owl:onProperty lokf:is_key ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:constraints ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:name ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:name ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:is_key ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:datatype ] ;
skos:definition "A single column / property within a Table or Dataset schema. Maps to schema:PropertyValue." ;
skos:exactMatch schema1:PropertyValue ;
skos:inScheme lokf:schema .
lokf:Relation a owl:Class ;
rdfs:label "Relation" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:minCardinality 1 ;
owl:onProperty lokf:target ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:relation_label ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:target ],
[ a owl:Restriction ;
owl:allValuesFrom lokf:Concept ;
owl:onProperty lokf:target ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:relation_label ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:relation_label ],
[ a owl:Restriction ;
owl:allValuesFrom lokf:RelationType ;
owl:onProperty lokf:predicate ],
[ a owl:Restriction ;
owl:minCardinality 1 ;
owl:onProperty lokf:predicate ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:predicate ] ;
skos:definition "A typed, reified relationship from the containing concept to a target, used when a predicate is not covered by one of the named relation slots. Modeled as an rdf:Statement (subject = the containing concept)." ;
skos:exactMatch rdf:Statement ;
skos:inScheme lokf:schema .
lokf:about a owl:ObjectProperty ;
rdfs:label "about" ;
rdfs:range lokf:Concept ;
skos:closeMatch foaf:primaryTopic ;
skos:definition "The subject matter this concept is about." ;
skos:inScheme lokf:schema .
lokf:author a owl:ObjectProperty ;
rdfs:label "author" ;
rdfs:range lokf:Agent ;
skos:closeMatch dcterms:creator,
prov:wasAttributedTo ;
skos:definition "The agent(s) responsible for authoring the concept." ;
skos:inScheme lokf:schema .
lokf:citations a owl:ObjectProperty ;
rdfs:label "citations" ;
rdfs:range lokf:Citation ;
skos:definition "External sources supporting claims in the body." ;
skos:inScheme lokf:schema .
lokf:concepts a owl:ObjectProperty ;
rdfs:label "concepts" ;
rdfs:range lokf:Concept ;
skos:definition "The concepts contained in a bundle." ;
skos:inScheme lokf:schema .
lokf:definedBy a owl:ObjectProperty ;
rdfs:label "definedBy" ;
rdfs:range lokf:Concept ;
skos:definition "A resource that formally defines this concept." ;
skos:inScheme lokf:schema .
lokf:derivedFrom a owl:ObjectProperty ;
rdfs:label "derivedFrom" ;
rdfs:range lokf:Concept ;
skos:definition "An entity this concept was derived from (provenance)." ;
skos:inScheme lokf:schema .
lokf:distribution a owl:ObjectProperty ;
rdfs:label "distribution" ;
rdfs:range lokf:Distribution ;
skos:definition "Accessible forms of the dataset." ;
skos:inScheme lokf:schema .
lokf:fields a owl:ObjectProperty ;
rdfs:label "fields" ;
rdfs:range lokf:Field ;
skos:definition "The columns / properties that make up a dataset's schema." ;
skos:inScheme lokf:schema .
lokf:hasPart a owl:ObjectProperty ;
rdfs:label "hasPart" ;
rdfs:range lokf:Concept ;
skos:closeMatch dcterms:hasPart ;
skos:definition "A concept that is a part of this concept." ;
skos:inScheme lokf:schema .
lokf:holder a owl:ObjectProperty ;
rdfs:label "holder" ;
rdfs:range lokf:Concept ;
skos:closeMatch schema1:member ;
skos:definition "The agent (typically a Person) who holds the role." ;
skos:inScheme lokf:schema .
lokf:isPartOf a owl:ObjectProperty ;
rdfs:label "isPartOf" ;
rdfs:range lokf:Concept ;
skos:closeMatch schema1:isPartOf ;
skos:definition "The target concept that this concept is a part of." ;
skos:inScheme lokf:schema .
lokf:joinsWith a owl:Class ;
rdfs:label "joinsWith" ;
rdfs:subClassOf lokf:RelationType ;
skos:definition "The concept (a table) is joined with the target." .
lokf:memberOf a owl:ObjectProperty ;
rdfs:label "memberOf" ;
rdfs:range lokf:Concept ;
skos:closeMatch org:organization ;
skos:definition "The organization within which the role is held." ;
skos:inScheme lokf:schema .
lokf:references a owl:ObjectProperty ;
rdfs:label "references" ;
rdfs:range lokf:Concept ;
skos:definition "A concept or resource this concept refers to." ;
skos:inScheme lokf:schema .
lokf:relatedTo a owl:ObjectProperty ;
rdfs:label "relatedTo" ;
rdfs:range lokf:Concept ;
skos:closeMatch skos:related ;
skos:definition "A generic association to another concept." ;
skos:inScheme lokf:schema .
lokf:relations a owl:ObjectProperty ;
rdfs:label "relations" ;
rdfs:range lokf:Relation ;
skos:definition "Typed relationships whose predicate is not covered by a named relation slot. Each entry is a reified Relation (predicate + target)." ;
skos:inScheme lokf:schema .
lokf:sameAs a owl:ObjectProperty ;
rdfs:label "sameAs" ;
rdfs:range lokf:Concept ;
skos:closeMatch owl:sameAs ;
skos:definition "An IRI asserting this concept is the same entity as another." ;
skos:inScheme lokf:schema .
lokf:source a owl:ObjectProperty ;
rdfs:label "source" ;
rdfs:range lokf:Concept ;
skos:definition "A resource from which this concept is derived or sourced." ;
skos:inScheme lokf:schema .
lokf:tags a owl:DatatypeProperty ;
rdfs:label "tags" ;
skos:closeMatch dcat:keyword ;
skos:definition "Short cross-cutting keywords for categorization." ;
skos:inScheme lokf:schema .
owl:sameAs a owl:Class ;
rdfs:label "sameAs" ;
rdfs:subClassOf lokf:RelationType ;
skos:definition "The concept is the same entity as the target." .
prov:wasAttributedTo a owl:Class ;
rdfs:label "wasAttributedTo" ;
rdfs:subClassOf lokf:RelationType ;
skos:definition "The concept was attributed to the target agent." .
lokf:GlossaryTerm a owl:Class ;
rdfs:label "GlossaryTerm" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:abbreviation ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:abbreviation ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:definition ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:definition ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:abbreviation ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:definition ],
lokf:Concept ;
skos:definition "A defined term in a controlled vocabulary or glossary. Maps to schema:DefinedTerm and skos:Concept." ;
skos:exactMatch schema1:DefinedTerm,
skos:Concept ;
skos:inScheme lokf:schema .
lokf:Organization a owl:Class ;
rdfs:label "Organization" ;
rdfs:subClassOf lokf:Agent,
lokf:Concept ;
skos:definition "An organization, team, or group. Usable both as an inline Agent value (publisher) and as a standalone Concept document with a body and typed relations." ;
skos:exactMatch schema1:Organization,
prov:Organization,
foaf:Organization ;
skos:inScheme lokf:schema .
lokf:Person a owl:Class ;
rdfs:label "Person" ;
rdfs:subClassOf lokf:Agent,
lokf:Concept ;
skos:definition "An individual person. Usable both as an inline Agent value (author, publisher) and as a standalone Concept document with a body and typed relations." ;
skos:exactMatch schema1:Person,
prov:Person,
foaf:Person ;
skos:inScheme lokf:schema .
lokf:Role a owl:Class ;
rdfs:label "Role" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:startDate ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:startDate ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:roleName ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:startDate ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:roleName ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:roleName ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:endDate ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:memberOf ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:endDate ],
[ a owl:Restriction ;
owl:allValuesFrom lokf:Concept ;
owl:onProperty lokf:holder ],
[ a owl:Restriction ;
owl:allValuesFrom lokf:Concept ;
owl:onProperty lokf:memberOf ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:holder ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:endDate ],
lokf:Concept ;
skos:closeMatch schema1:Role,
vivo:Position,
org:Role ;
skos:definition "A role an agent holds within an organization over a period of time — a job, appointment, or position. Reifies the agent–organization link so it can carry a title (roleName) and a start/end interval, following the schema.org Role and W3C ORG Membership patterns." ;
skos:exactMatch schema1:OrganizationRole ;
skos:inScheme lokf:schema .
lokf:Service a owl:Class ;
rdfs:label "Service" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:http_method ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:http_method ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:anyURI ;
owl:onProperty lokf:endpoint ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:anyURI ;
owl:onProperty lokf:documentation ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:documentation ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:documentation ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:endpoint ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:http_method ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:endpoint ],
lokf:Concept ;
skos:closeMatch schema1:SoftwareApplication ;
skos:definition "A callable service or API endpoint." ;
skos:exactMatch schema1:WebAPI ;
skos:inScheme lokf:schema .
lokf:Table a owl:Class ;
rdfs:label "Table" ;
rdfs:subClassOf lokf:Dataset ;
skos:closeMatch schema1:Dataset,
dcat:Dataset ;
skos:definition "A structured, tabular dataset (e.g. a warehouse table or view) whose columns are described by Field objects under `fields`." ;
skos:exactMatch lokf:Table ;
skos:inScheme lokf:schema .
lokf:abbreviation a owl:DatatypeProperty ;
rdfs:label "abbreviation" ;
skos:closeMatch skos:altLabel ;
skos:definition "A short form or acronym for a term." ;
skos:inScheme lokf:schema .
lokf:access_url a owl:DatatypeProperty ;
rdfs:label "access_url" ;
rdfs:range xsd:anyURI ;
skos:definition "A URL that gives access to a distribution." ;
skos:inScheme lokf:schema .
lokf:base_iri a owl:DatatypeProperty ;
rdfs:label "base_iri" ;
rdfs:range xsd:anyURI ;
skos:definition "The base IRI against which Concept IDs are resolved to produce each concept's stable `id`." ;
skos:inScheme lokf:schema .
lokf:constraints a owl:DatatypeProperty ;
rdfs:label "constraints" ;
skos:definition "Free-text or expression describing constraints on a field." ;
skos:inScheme lokf:schema .
lokf:context a owl:DatatypeProperty ;
rdfs:label "context" ;
rdfs:range xsd:anyURI ;
skos:definition "The URL of the JSON-LD @context to attach to this bundle's concepts to interpret their frontmatter as Linked Data." ;
skos:inScheme lokf:schema .
lokf:created a owl:DatatypeProperty ;
rdfs:label "created" ;
rdfs:range xsd:dateTime ;
skos:definition "ISO 8601 datetime the concept was created." ;
skos:exactMatch dcterms:created ;
skos:inScheme lokf:schema .
lokf:datatype a owl:ObjectProperty ;
rdfs:label "datatype" ;
rdfs:range lokf:FieldType ;
skos:closeMatch schema1:rangeIncludes ;
skos:definition "The data type of a field." ;
skos:inScheme lokf:schema .
lokf:definition a owl:DatatypeProperty ;
rdfs:label "definition" ;
skos:definition "The formal definition of a term." ;
skos:inScheme lokf:schema .
lokf:dependsOn a owl:ObjectProperty ;
rdfs:label "dependsOn" ;
rdfs:range lokf:Concept ;
skos:closeMatch lokf:dependsOn ;
skos:definition "A concept this concept depends on." ;
skos:inScheme lokf:schema .
lokf:documentation a owl:DatatypeProperty ;
rdfs:label "documentation" ;
rdfs:range xsd:anyURI ;
skos:definition "A link to the service's documentation." ;
skos:inScheme lokf:schema .
lokf:email a owl:DatatypeProperty ;
rdfs:label "email" ;
skos:closeMatch foaf:mbox ;
skos:definition "Contact email address." ;
skos:inScheme lokf:schema .
lokf:endDate a owl:DatatypeProperty ;
rdfs:label "endDate" ;
skos:definition "The date the role ended; omit for a role still held." ;
skos:inScheme lokf:schema .
lokf:endpoint a owl:DatatypeProperty ;
rdfs:label "endpoint" ;
rdfs:range xsd:anyURI ;
skos:closeMatch schema1:contentUrl ;
skos:definition "The base URL or invocation endpoint of a service." ;
skos:inScheme lokf:schema .
lokf:formula a owl:DatatypeProperty ;
rdfs:label "formula" ;
skos:definition "The calculation or definition expression for a metric." ;
skos:inScheme lokf:schema .
lokf:http_method a owl:DatatypeProperty ;
rdfs:label "http_method" ;
skos:definition "The HTTP method used to invoke the service, if applicable." ;
skos:inScheme lokf:schema .
lokf:is_key a owl:DatatypeProperty ;
rdfs:label "is_key" ;
rdfs:range xsd:boolean ;
skos:definition "Whether the field is (part of) the primary key." ;
skos:inScheme lokf:schema .
lokf:lokf_version a owl:DatatypeProperty ;
rdfs:label "lokf_version" ;
skos:definition "The LOKF version the bundle targets (e.g. \"0.1\")." ;
skos:inScheme lokf:schema .
lokf:media_type a owl:DatatypeProperty ;
rdfs:label "media_type" ;
skos:definition "The media (MIME) type of a distribution." ;
skos:inScheme lokf:schema .
lokf:okf_version a owl:DatatypeProperty ;
rdfs:label "okf_version" ;
skos:definition "The OKF version the bundle remains compatible with (e.g. \"0.1\")." ;
skos:inScheme lokf:schema .
lokf:predicate a owl:ObjectProperty ;
rdfs:label "predicate" ;
rdfs:range lokf:RelationType ;
skos:definition "The relationship type. SHOULD be drawn from the RelationType vocabulary." ;
skos:inScheme lokf:schema .
lokf:publisher a owl:ObjectProperty ;
rdfs:label "publisher" ;
rdfs:range lokf:Agent ;
skos:closeMatch dcterms:publisher ;
skos:definition "The agent responsible for making the bundle available." ;
skos:inScheme lokf:schema .
lokf:relation_label a owl:DatatypeProperty ;
rdfs:label "relation_label" ;
skos:definition "An optional human-readable label for the relationship." ;
skos:inScheme lokf:schema .
lokf:resource a owl:DatatypeProperty ;
rdfs:label "resource" ;
rdfs:range xsd:anyURI ;
skos:closeMatch dcat:landingPage,
prov:specializationOf ;
skos:definition "A URI that uniquely identifies the underlying real-world asset the concept describes (a table console URL, an API base URL, etc.). Absent for purely abstract concepts." ;
skos:inScheme lokf:schema .
lokf:roleName a owl:DatatypeProperty ;
rdfs:label "roleName" ;
skos:definition "The name/title of the role held (e.g. a job title)." ;
skos:inScheme lokf:schema .
lokf:startDate a owl:DatatypeProperty ;
rdfs:label "startDate" ;
skos:closeMatch org:memberDuring ;
skos:definition "The date the role began (ISO 8601 date or year)." ;
skos:inScheme lokf:schema .
lokf:target a owl:ObjectProperty ;
rdfs:label "target" ;
rdfs:range lokf:Concept ;
skos:definition "The IRI (or Concept ID) of the relationship's object." ;
skos:inScheme lokf:schema .
lokf:timestamp a owl:DatatypeProperty ;
rdfs:label "timestamp" ;
rdfs:range xsd:dateTime ;
skos:definition "ISO 8601 datetime of the last meaningful change." ;
skos:exactMatch dcterms:modified ;
skos:inScheme lokf:schema .
lokf:url a owl:DatatypeProperty ;
rdfs:label "url" ;
rdfs:range xsd:anyURI ;
skos:definition "A URL." ;
skos:inScheme lokf:schema .
lokf:version a owl:DatatypeProperty ;
rdfs:label "version" ;
skos:closeMatch pav:version ;
skos:definition "A version string for the concept's content." ;
skos:inScheme lokf:schema .
xsd:boolean a owl:Class ;
rdfs:label "boolean" ;
rdfs:subClassOf lokf:FieldType .
lokf:Dataset a owl:Class ;
rdfs:label "Dataset" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom lokf:Field ;
owl:onProperty lokf:fields ],
[ a owl:Restriction ;
owl:allValuesFrom lokf:Distribution ;
owl:onProperty lokf:distribution ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:distribution ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:fields ],
lokf:Concept ;
skos:definition "A collection of data, published or curated for access and reuse." ;
skos:exactMatch schema1:Dataset,
dcat:Dataset ;
skos:inScheme lokf:schema .
lokf:Document a owl:Class ;
rdfs:label "Document" ;
rdfs:subClassOf lokf:Concept ;
skos:closeMatch schema1:DigitalDocument ;
skos:definition "A general knowledge document that does not fit a more specific type." ;
skos:exactMatch lokf:Document ;
skos:inScheme lokf:schema .
lokf:Metric a owl:Class ;
rdfs:label "Metric" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:unit ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:unit ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:formula ],
[ a owl:Restriction ;
owl:allValuesFrom lokf:Concept ;
owl:onProperty lokf:measures ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:unit ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:formula ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:measures ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:formula ],
lokf:Concept ;
skos:closeMatch schema1:Observation,
skos:Concept ;
skos:definition "A precisely defined, measurable quantity — the canonical definition of a business or operational metric." ;
skos:exactMatch lokf:Metric ;
skos:inScheme lokf:schema .
lokf:Playbook a owl:Class ;
rdfs:label "Playbook" ;
rdfs:subClassOf lokf:Concept ;
skos:definition "A procedure or runbook — an ordered set of steps to accomplish a task or respond to an event." ;
skos:exactMatch schema1:HowTo,
lokf:Playbook ;
skos:inScheme lokf:schema .
lokf:Policy a owl:Class ;
rdfs:label "Policy" ;
rdfs:subClassOf lokf:Concept ;
skos:closeMatch schema1:CreativeWork,
schema1:DigitalDocument ;
skos:definition "A governance, compliance, or operational policy document." ;
skos:exactMatch lokf:Policy ;
skos:inScheme lokf:schema .
lokf:Reference a owl:Class ;
rdfs:label "Reference" ;
rdfs:subClassOf lokf:Concept ;
skos:closeMatch schema1:CreativeWork,
schema1:WebPage ;
skos:definition "A concept that mirrors an external source (a page, paper, or document) as a first-class citizen of the bundle so it can be cited and linked." ;
skos:exactMatch lokf:Reference ;
skos:inScheme lokf:schema .
lokf:body a owl:DatatypeProperty ;
rdfs:label "body" ;
skos:closeMatch lokf:body ;
skos:definition "The markdown body of the concept document (everything after the frontmatter). Mapped to schema:text; carried as a field only in the JSON-LD / JSON serialization, not duplicated in the frontmatter." ;
skos:inScheme lokf:schema .
lokf:measures a owl:Class,
owl:ObjectProperty ;
rdfs:label "measures" ;
rdfs:range lokf:Concept ;
rdfs:subClassOf lokf:RelationType ;
skos:definition "The concept (a metric) measures the target.",
"What the metric measures (a concept IRI or description)." ;
skos:inScheme lokf:schema .
xsd:dateTime a owl:Class ;
rdfs:label "datetime" ;
rdfs:subClassOf lokf:FieldType .
lokf:id a owl:DatatypeProperty ;
rdfs:label "id" ;
rdfs:range xsd:anyURI ;
skos:definition "The concept's stable IRI. By convention it is the bundle base IRI joined with the Concept ID (the file path within the bundle, minus the `.md` suffix). Becomes the JSON-LD @id / RDF subject." ;
skos:inScheme lokf:schema .
lokf:license a owl:DatatypeProperty ;
rdfs:label "license" ;
rdfs:range xsd:anyURI ;
skos:definition "The license under which the concept or bundle is offered." ;
skos:inScheme lokf:schema .
lokf:unit a owl:DatatypeProperty ;
rdfs:label "unit" ;
skos:definition "The unit of measurement (e.g. USD, seconds, count)." ;
skos:inScheme lokf:schema .
lokf:Agent a owl:Class ;
rdfs:label "Agent" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:minCardinality 1 ;
owl:onProperty lokf:type ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:email ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:name ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:id ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:type ],
[ a owl:Restriction ;
owl:minCardinality 1 ;
owl:onProperty lokf:id ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:name ],
[ a owl:Restriction ;
owl:minCardinality 0 ;
owl:onProperty lokf:name ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:anyURI ;
owl:onProperty lokf:id ],
[ owl:unionOf ( lokf:Organization lokf:Person ) ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:type ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty lokf:email ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty lokf:email ] ;
skos:closeMatch schema1:Agent,
foaf:Agent ;
skos:definition "A person or organization responsible for a concept." ;
skos:exactMatch prov:Agent ;
skos:inScheme lokf:schema .
lokf:name a owl:DatatypeProperty ;
rdfs:label "name" ;
skos:definition "A name." ;
skos:inScheme lokf:schema .
lokf:title a owl:DatatypeProperty ;
rdfs:label "title" ;
skos:closeMatch dcterms:title,
rdfs:label ;
skos:definition "Human-readable display name." ;
skos:inScheme lokf:schema .
lokf:FieldType a owl:Class ;
rdfs:label "FieldType" ;
owl:unionOf ( xsd:string xsd:integer xsd:decimal xsd:boolean xsd:date xsd:dateTime xsd:time xsd:anyURI rdf:JSON ) ;
skos:definition "Datatypes for dataset/table fields, each mapped to its XSD (or RDF) type." ;
skos:inScheme lokf:schema ;
linkml:permissible_values rdf:JSON,
xsd:anyURI,
xsd:boolean,
xsd:date,
xsd:dateTime,
xsd:decimal,
xsd:integer,
xsd:string,
xsd:time .
lokf:description a owl:DatatypeProperty ;
rdfs:label "description" ;
skos:closeMatch dcterms:description ;
skos:definition "A single-sentence summary of the concept." ;
skos:inScheme lokf:schema .