-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlokf.shacl.ttl
More file actions
2077 lines (2056 loc) · 95.1 KB
/
Copy pathlokf.shacl.ttl
File metadata and controls
2077 lines (2056 loc) · 95.1 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 lokf: <https://w3id.org/lokf/> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@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 sh: <http://www.w3.org/ns/shacl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
schema1:Dataset a sh:NodeShape ;
rdfs:comment "A collection of data, published or curated for access and reuse." ;
sh:closed true ;
sh:ignoredProperties ( rdf:type ) ;
sh:property [ sh:datatype xsd:string ;
sh:description "The concept's type. OKF's single required field. In LOKF the value SHOULD name a LOKF class (e.g. Metric, Dataset, Table, Playbook, GlossaryTerm); it designates the JSON-LD @type / rdf:type. Consumers MUST tolerate unknown values by treating the concept as a generic lokf:Concept." ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 3 ;
sh:path lokf:type ],
[ sh:class lokf:Concept ;
sh:description "The subject matter this concept is about." ;
sh:nodeKind sh:IRI ;
sh:order 21 ;
sh:path schema1:about ],
[ sh:class rdf:Statement ;
sh:description "Typed relationships whose predicate is not covered by a named relation slot. Each entry is a reified Relation (predicate + target)." ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:order 15 ;
sh:path lokf:relations ],
[ sh:class lokf:Concept ;
sh:description "An entity this concept was derived from (provenance)." ;
sh:nodeKind sh:IRI ;
sh:order 20 ;
sh:path prov:wasDerivedFrom ],
[ sh:description "The license under which the concept or bundle is offered." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 11 ;
sh:path schema1:license ],
[ sh:datatype xsd:dateTime ;
sh:description "ISO 8601 datetime the concept was created." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 9 ;
sh:path schema1:dateCreated ],
[ sh:class lokf:Concept ;
sh:description "The target concept that this concept is a part of." ;
sh:nodeKind sh:IRI ;
sh:order 16 ;
sh:path dcterms:isPartOf ],
[ sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 2 ;
sh:path schema1:identifier ],
[ sh:class lokf:Concept ;
sh:description "A concept that is a part of this concept." ;
sh:nodeKind sh:IRI ;
sh:order 17 ;
sh:path schema1:hasPart ],
[ sh:class lokf:Concept ;
sh:description "A resource from which this concept is derived or sourced." ;
sh:nodeKind sh:IRI ;
sh:order 25 ;
sh:path dcterms:source ],
[ sh:class lokf:Concept ;
sh:description "A generic association to another concept." ;
sh:nodeKind sh:IRI ;
sh:order 23 ;
sh:path dcterms:relation ],
[ sh:class lokf:Concept ;
sh:description "An IRI asserting this concept is the same entity as another." ;
sh:nodeKind sh:IRI ;
sh:order 22 ;
sh:path schema1:sameAs ],
[ sh:datatype xsd:string ;
sh:description "Short cross-cutting keywords for categorization." ;
sh:nodeKind sh:Literal ;
sh:order 7 ;
sh:path schema1:keywords ],
[ sh:class lokf:Concept ;
sh:description "A concept or resource this concept refers to." ;
sh:nodeKind sh:IRI ;
sh:order 18 ;
sh:path dcterms:references ],
[ sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 6 ;
sh:path schema1:url ],
[ sh:class prov:Agent ;
sh:description "The agent(s) responsible for authoring the concept." ;
sh:nodeKind sh:IRI ;
sh:order 12 ;
sh:path schema1:author ],
[ sh:class schema1:CreativeWork ;
sh:description "External sources supporting claims in the body." ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:order 14 ;
sh:path schema1:citation ],
[ sh:datatype xsd:string ;
sh:description "A version string for the concept's content." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 10 ;
sh:path schema1:version ],
[ sh:class lokf:Concept ;
sh:description "A resource that formally defines this concept." ;
sh:nodeKind sh:IRI ;
sh:order 24 ;
sh:path rdfs:isDefinedBy ],
[ sh:datatype xsd:string ;
sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 13 ;
sh:path schema1:text ],
[ sh:class dcat:Distribution ;
sh:description "Accessible forms of the dataset." ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:order 0 ;
sh:path dcat:distribution ],
[ sh:class lokf:Concept ;
sh:description "A concept this concept depends on." ;
sh:nodeKind sh:IRI ;
sh:order 19 ;
sh:path dcterms:requires ],
[ sh:datatype xsd:string ;
sh:description "Human-readable display name." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 4 ;
sh:path schema1:name ],
[ sh:datatype xsd:dateTime ;
sh:description "ISO 8601 datetime of the last meaningful change." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 8 ;
sh:path schema1:dateModified ],
[ sh:datatype xsd:string ;
sh:description "A single-sentence summary of the concept." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 5 ;
sh:path schema1:description ],
[ sh:class schema1:PropertyValue ;
sh:description "The columns / properties that make up a dataset's schema." ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:order 1 ;
sh:path lokf:field ] ;
sh:targetClass schema1:Dataset .
schema1:DefinedTerm a sh:NodeShape ;
rdfs:comment "A defined term in a controlled vocabulary or glossary. Maps to schema:DefinedTerm and skos:Concept." ;
sh:closed true ;
sh:ignoredProperties ( rdf:type ) ;
sh:property [ sh:description "The license under which the concept or bundle is offered." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 11 ;
sh:path schema1:license ],
[ sh:class rdf:Statement ;
sh:description "Typed relationships whose predicate is not covered by a named relation slot. Each entry is a reified Relation (predicate + target)." ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:order 15 ;
sh:path lokf:relations ],
[ sh:class lokf:Concept ;
sh:description "A concept or resource this concept refers to." ;
sh:nodeKind sh:IRI ;
sh:order 18 ;
sh:path dcterms:references ],
[ sh:class lokf:Concept ;
sh:description "The target concept that this concept is a part of." ;
sh:nodeKind sh:IRI ;
sh:order 16 ;
sh:path dcterms:isPartOf ],
[ sh:class lokf:Concept ;
sh:description "The subject matter this concept is about." ;
sh:nodeKind sh:IRI ;
sh:order 21 ;
sh:path schema1:about ],
[ sh:class prov:Agent ;
sh:description "The agent(s) responsible for authoring the concept." ;
sh:nodeKind sh:IRI ;
sh:order 12 ;
sh:path schema1:author ],
[ sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 2 ;
sh:path schema1:identifier ],
[ sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 6 ;
sh:path schema1:url ],
[ sh:class lokf:Concept ;
sh:description "A generic association to another concept." ;
sh:nodeKind sh:IRI ;
sh:order 23 ;
sh:path dcterms:relation ],
[ sh:class lokf:Concept ;
sh:description "A resource that formally defines this concept." ;
sh:nodeKind sh:IRI ;
sh:order 24 ;
sh:path rdfs:isDefinedBy ],
[ sh:datatype xsd:string ;
sh:description "A short form or acronym for a term." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 1 ;
sh:path schema1:alternateName ],
[ sh:class lokf:Concept ;
sh:description "A concept this concept depends on." ;
sh:nodeKind sh:IRI ;
sh:order 19 ;
sh:path dcterms:requires ],
[ sh:class lokf:Concept ;
sh:description "An IRI asserting this concept is the same entity as another." ;
sh:nodeKind sh:IRI ;
sh:order 22 ;
sh:path schema1:sameAs ],
[ sh:datatype xsd:string ;
sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 13 ;
sh:path schema1:text ],
[ sh:class lokf:Concept ;
sh:description "A resource from which this concept is derived or sourced." ;
sh:nodeKind sh:IRI ;
sh:order 25 ;
sh:path dcterms:source ],
[ sh:datatype xsd:dateTime ;
sh:description "ISO 8601 datetime the concept was created." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 9 ;
sh:path schema1:dateCreated ],
[ sh:datatype xsd:dateTime ;
sh:description "ISO 8601 datetime of the last meaningful change." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 8 ;
sh:path schema1:dateModified ],
[ sh:datatype xsd:string ;
sh:description "The formal definition of a term." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 0 ;
sh:path skos:definition ],
[ sh:class schema1:CreativeWork ;
sh:description "External sources supporting claims in the body." ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:order 14 ;
sh:path schema1:citation ],
[ sh:datatype xsd:string ;
sh:description "The concept's type. OKF's single required field. In LOKF the value SHOULD name a LOKF class (e.g. Metric, Dataset, Table, Playbook, GlossaryTerm); it designates the JSON-LD @type / rdf:type. Consumers MUST tolerate unknown values by treating the concept as a generic lokf:Concept." ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 3 ;
sh:path lokf:type ],
[ sh:datatype xsd:string ;
sh:description "A version string for the concept's content." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 10 ;
sh:path schema1:version ],
[ sh:class lokf:Concept ;
sh:description "An entity this concept was derived from (provenance)." ;
sh:nodeKind sh:IRI ;
sh:order 20 ;
sh:path prov:wasDerivedFrom ],
[ sh:datatype xsd:string ;
sh:description "A single-sentence summary of the concept." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 5 ;
sh:path schema1:description ],
[ sh:datatype xsd:string ;
sh:description "Short cross-cutting keywords for categorization." ;
sh:nodeKind sh:Literal ;
sh:order 7 ;
sh:path schema1:keywords ],
[ sh:datatype xsd:string ;
sh:description "Human-readable display name." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 4 ;
sh:path schema1:name ],
[ sh:class lokf:Concept ;
sh:description "A concept that is a part of this concept." ;
sh:nodeKind sh:IRI ;
sh:order 17 ;
sh:path schema1:hasPart ] ;
sh:targetClass schema1:DefinedTerm .
schema1:Organization a sh:NodeShape ;
rdfs:comment "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." ;
sh:closed true ;
sh:ignoredProperties ( rdf:type ) ;
sh:property [ sh:datatype xsd:string ;
sh:description "Human-readable display name." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 2 ;
sh:path schema1:name ],
[ sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 4 ;
sh:path schema1:url ],
[ sh:class lokf:Concept ;
sh:description "A concept that is a part of this concept." ;
sh:nodeKind sh:IRI ;
sh:order 15 ;
sh:path schema1:hasPart ],
[ sh:datatype xsd:string ;
sh:description "The concept's type. OKF's single required field. In LOKF the value SHOULD name a LOKF class (e.g. Metric, Dataset, Table, Playbook, GlossaryTerm); it designates the JSON-LD @type / rdf:type. Consumers MUST tolerate unknown values by treating the concept as a generic lokf:Concept." ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 1 ;
sh:path lokf:type ],
[ sh:class lokf:Concept ;
sh:description "The subject matter this concept is about." ;
sh:nodeKind sh:IRI ;
sh:order 19 ;
sh:path schema1:about ],
[ sh:datatype xsd:string ;
sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 11 ;
sh:path schema1:text ],
[ sh:class lokf:Concept ;
sh:description "A concept this concept depends on." ;
sh:nodeKind sh:IRI ;
sh:order 17 ;
sh:path dcterms:requires ],
[ sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 0 ;
sh:path schema1:identifier ],
[ sh:class lokf:Concept ;
sh:description "The target concept that this concept is a part of." ;
sh:nodeKind sh:IRI ;
sh:order 14 ;
sh:path dcterms:isPartOf ],
[ sh:datatype xsd:string ;
sh:description "A version string for the concept's content." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 8 ;
sh:path schema1:version ],
[ sh:datatype xsd:string ;
sh:description "A single-sentence summary of the concept." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 3 ;
sh:path schema1:description ],
[ sh:class lokf:Concept ;
sh:description "A resource that formally defines this concept." ;
sh:nodeKind sh:IRI ;
sh:order 22 ;
sh:path rdfs:isDefinedBy ],
[ sh:class lokf:Concept ;
sh:description "An entity this concept was derived from (provenance)." ;
sh:nodeKind sh:IRI ;
sh:order 18 ;
sh:path prov:wasDerivedFrom ],
[ sh:description "The license under which the concept or bundle is offered." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 9 ;
sh:path schema1:license ],
[ sh:class lokf:Concept ;
sh:description "A generic association to another concept." ;
sh:nodeKind sh:IRI ;
sh:order 21 ;
sh:path dcterms:relation ],
[ sh:class prov:Agent ;
sh:description "The agent(s) responsible for authoring the concept." ;
sh:nodeKind sh:IRI ;
sh:order 10 ;
sh:path schema1:author ],
[ sh:datatype xsd:string ;
sh:description "Contact email address." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 25 ;
sh:path schema1:email ],
[ sh:datatype xsd:dateTime ;
sh:description "ISO 8601 datetime the concept was created." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 7 ;
sh:path schema1:dateCreated ],
[ sh:datatype xsd:string ;
sh:description "Short cross-cutting keywords for categorization." ;
sh:nodeKind sh:Literal ;
sh:order 5 ;
sh:path schema1:keywords ],
[ sh:class rdf:Statement ;
sh:description "Typed relationships whose predicate is not covered by a named relation slot. Each entry is a reified Relation (predicate + target)." ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:order 13 ;
sh:path lokf:relations ],
[ sh:class lokf:Concept ;
sh:description "A resource from which this concept is derived or sourced." ;
sh:nodeKind sh:IRI ;
sh:order 23 ;
sh:path dcterms:source ],
[ sh:class schema1:CreativeWork ;
sh:description "External sources supporting claims in the body." ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:order 12 ;
sh:path schema1:citation ],
[ sh:class lokf:Concept ;
sh:description "An IRI asserting this concept is the same entity as another." ;
sh:nodeKind sh:IRI ;
sh:order 20 ;
sh:path schema1:sameAs ],
[ sh:datatype xsd:dateTime ;
sh:description "ISO 8601 datetime of the last meaningful change." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 6 ;
sh:path schema1:dateModified ],
[ sh:class lokf:Concept ;
sh:description "A concept or resource this concept refers to." ;
sh:nodeKind sh:IRI ;
sh:order 16 ;
sh:path dcterms:references ],
[ sh:datatype xsd:string ;
sh:description "A name." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 24 ;
sh:path schema1:name ] ;
sh:targetClass schema1:Organization .
schema1:OrganizationRole a sh:NodeShape ;
rdfs:comment "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." ;
sh:closed true ;
sh:ignoredProperties ( rdf:type ) ;
sh:property [ sh:description "The license under which the concept or bundle is offered." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 14 ;
sh:path schema1:license ],
[ sh:class lokf:Concept ;
sh:description "A concept that is a part of this concept." ;
sh:nodeKind sh:IRI ;
sh:order 20 ;
sh:path schema1:hasPart ],
[ sh:class schema1:CreativeWork ;
sh:description "External sources supporting claims in the body." ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:order 17 ;
sh:path schema1:citation ],
[ sh:class lokf:Concept ;
sh:description "The organization within which the role is held." ;
sh:nodeKind sh:IRI ;
sh:order 3 ;
sh:path schema1:memberOf ],
[ sh:class lokf:Concept ;
sh:description "An entity this concept was derived from (provenance)." ;
sh:nodeKind sh:IRI ;
sh:order 23 ;
sh:path prov:wasDerivedFrom ],
[ sh:datatype xsd:string ;
sh:description "Short cross-cutting keywords for categorization." ;
sh:nodeKind sh:Literal ;
sh:order 10 ;
sh:path schema1:keywords ],
[ sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 5 ;
sh:path schema1:identifier ],
[ sh:class prov:Agent ;
sh:description "The agent(s) responsible for authoring the concept." ;
sh:nodeKind sh:IRI ;
sh:order 15 ;
sh:path schema1:author ],
[ sh:datatype xsd:string ;
sh:description "Human-readable display name." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 7 ;
sh:path schema1:name ],
[ sh:datatype xsd:string ;
sh:description "The concept's type. OKF's single required field. In LOKF the value SHOULD name a LOKF class (e.g. Metric, Dataset, Table, Playbook, GlossaryTerm); it designates the JSON-LD @type / rdf:type. Consumers MUST tolerate unknown values by treating the concept as a generic lokf:Concept." ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 6 ;
sh:path lokf:type ],
[ sh:datatype xsd:dateTime ;
sh:description "ISO 8601 datetime of the last meaningful change." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 11 ;
sh:path schema1:dateModified ],
[ sh:class lokf:Concept ;
sh:description "A resource that formally defines this concept." ;
sh:nodeKind sh:IRI ;
sh:order 27 ;
sh:path rdfs:isDefinedBy ],
[ sh:datatype xsd:string ;
sh:description "A version string for the concept's content." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 13 ;
sh:path schema1:version ],
[ sh:datatype xsd:string ;
sh:description "The name/title of the role held (e.g. a job title)." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 0 ;
sh:path schema1:roleName ],
[ sh:datatype xsd:string ;
sh:description "A single-sentence summary of the concept." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 8 ;
sh:path schema1:description ],
[ sh:class lokf:Concept ;
sh:description "A resource from which this concept is derived or sourced." ;
sh:nodeKind sh:IRI ;
sh:order 28 ;
sh:path dcterms:source ],
[ sh:datatype xsd:string ;
sh:description "The date the role ended; omit for a role still held." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 2 ;
sh:path schema1:endDate ],
[ sh:datatype xsd:string ;
sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 16 ;
sh:path schema1:text ],
[ sh:datatype xsd:string ;
sh:description "The date the role began (ISO 8601 date or year)." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 1 ;
sh:path schema1:startDate ],
[ sh:class rdf:Statement ;
sh:description "Typed relationships whose predicate is not covered by a named relation slot. Each entry is a reified Relation (predicate + target)." ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:order 18 ;
sh:path lokf:relations ],
[ sh:class lokf:Concept ;
sh:description "An IRI asserting this concept is the same entity as another." ;
sh:nodeKind sh:IRI ;
sh:order 25 ;
sh:path schema1:sameAs ],
[ sh:class lokf:Concept ;
sh:description "The agent (typically a Person) who holds the role." ;
sh:nodeKind sh:IRI ;
sh:order 4 ;
sh:path org:member ],
[ sh:class lokf:Concept ;
sh:description "A concept this concept depends on." ;
sh:nodeKind sh:IRI ;
sh:order 22 ;
sh:path dcterms:requires ],
[ sh:class lokf:Concept ;
sh:description "The target concept that this concept is a part of." ;
sh:nodeKind sh:IRI ;
sh:order 19 ;
sh:path dcterms:isPartOf ],
[ sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 9 ;
sh:path schema1:url ],
[ sh:class lokf:Concept ;
sh:description "A generic association to another concept." ;
sh:nodeKind sh:IRI ;
sh:order 26 ;
sh:path dcterms:relation ],
[ sh:class lokf:Concept ;
sh:description "The subject matter this concept is about." ;
sh:nodeKind sh:IRI ;
sh:order 24 ;
sh:path schema1:about ],
[ sh:class lokf:Concept ;
sh:description "A concept or resource this concept refers to." ;
sh:nodeKind sh:IRI ;
sh:order 21 ;
sh:path dcterms:references ],
[ sh:datatype xsd:dateTime ;
sh:description "ISO 8601 datetime the concept was created." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 12 ;
sh:path schema1:dateCreated ] ;
sh:targetClass schema1:OrganizationRole .
schema1:Person a sh:NodeShape ;
rdfs:comment "An individual person. Usable both as an inline Agent value (author, publisher) and as a standalone Concept document with a body and typed relations." ;
sh:closed true ;
sh:ignoredProperties ( rdf:type ) ;
sh:property [ sh:class lokf:Concept ;
sh:description "A resource from which this concept is derived or sourced." ;
sh:nodeKind sh:IRI ;
sh:order 23 ;
sh:path dcterms:source ],
[ sh:datatype xsd:string ;
sh:description "Short cross-cutting keywords for categorization." ;
sh:nodeKind sh:Literal ;
sh:order 5 ;
sh:path schema1:keywords ],
[ sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 4 ;
sh:path schema1:url ],
[ sh:class lokf:Concept ;
sh:description "A generic association to another concept." ;
sh:nodeKind sh:IRI ;
sh:order 21 ;
sh:path dcterms:relation ],
[ sh:class lokf:Concept ;
sh:description "A concept that is a part of this concept." ;
sh:nodeKind sh:IRI ;
sh:order 15 ;
sh:path schema1:hasPart ],
[ sh:datatype xsd:string ;
sh:description "A single-sentence summary of the concept." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 3 ;
sh:path schema1:description ],
[ sh:datatype xsd:string ;
sh:description "A version string for the concept's content." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 8 ;
sh:path schema1:version ],
[ sh:datatype xsd:string ;
sh:description "The concept's type. OKF's single required field. In LOKF the value SHOULD name a LOKF class (e.g. Metric, Dataset, Table, Playbook, GlossaryTerm); it designates the JSON-LD @type / rdf:type. Consumers MUST tolerate unknown values by treating the concept as a generic lokf:Concept." ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 1 ;
sh:path lokf:type ],
[ sh:class lokf:Concept ;
sh:description "The subject matter this concept is about." ;
sh:nodeKind sh:IRI ;
sh:order 19 ;
sh:path schema1:about ],
[ sh:description "The license under which the concept or bundle is offered." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 9 ;
sh:path schema1:license ],
[ sh:class prov:Agent ;
sh:description "The agent(s) responsible for authoring the concept." ;
sh:nodeKind sh:IRI ;
sh:order 10 ;
sh:path schema1:author ],
[ sh:datatype xsd:string ;
sh:description "Contact email address." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 25 ;
sh:path schema1:email ],
[ sh:datatype xsd:dateTime ;
sh:description "ISO 8601 datetime the concept was created." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 7 ;
sh:path schema1:dateCreated ],
[ sh:class schema1:CreativeWork ;
sh:description "External sources supporting claims in the body." ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:order 12 ;
sh:path schema1:citation ],
[ sh:class lokf:Concept ;
sh:description "An IRI asserting this concept is the same entity as another." ;
sh:nodeKind sh:IRI ;
sh:order 20 ;
sh:path schema1:sameAs ],
[ sh:datatype xsd:string ;
sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 11 ;
sh:path schema1:text ],
[ sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 0 ;
sh:path schema1:identifier ],
[ sh:datatype xsd:string ;
sh:description "A name." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 24 ;
sh:path schema1:name ],
[ sh:class lokf:Concept ;
sh:description "A concept or resource this concept refers to." ;
sh:nodeKind sh:IRI ;
sh:order 16 ;
sh:path dcterms:references ],
[ sh:datatype xsd:dateTime ;
sh:description "ISO 8601 datetime of the last meaningful change." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 6 ;
sh:path schema1:dateModified ],
[ sh:class lokf:Concept ;
sh:description "The target concept that this concept is a part of." ;
sh:nodeKind sh:IRI ;
sh:order 14 ;
sh:path dcterms:isPartOf ],
[ sh:class rdf:Statement ;
sh:description "Typed relationships whose predicate is not covered by a named relation slot. Each entry is a reified Relation (predicate + target)." ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:order 13 ;
sh:path lokf:relations ],
[ sh:class lokf:Concept ;
sh:description "A concept this concept depends on." ;
sh:nodeKind sh:IRI ;
sh:order 17 ;
sh:path dcterms:requires ],
[ sh:class lokf:Concept ;
sh:description "A resource that formally defines this concept." ;
sh:nodeKind sh:IRI ;
sh:order 22 ;
sh:path rdfs:isDefinedBy ],
[ sh:datatype xsd:string ;
sh:description "Human-readable display name." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 2 ;
sh:path schema1:name ],
[ sh:class lokf:Concept ;
sh:description "An entity this concept was derived from (provenance)." ;
sh:nodeKind sh:IRI ;
sh:order 18 ;
sh:path prov:wasDerivedFrom ] ;
sh:targetClass schema1:Person .
schema1:WebAPI a sh:NodeShape ;
rdfs:comment "A callable service or API endpoint." ;
sh:closed true ;
sh:ignoredProperties ( rdf:type ) ;
sh:property [ sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 3 ;
sh:path schema1:identifier ],
[ sh:datatype xsd:dateTime ;
sh:description "ISO 8601 datetime of the last meaningful change." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 9 ;
sh:path schema1:dateModified ],
[ sh:description "A link to the service's documentation." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 2 ;
sh:path schema1:documentation ],
[ sh:class lokf:Concept ;
sh:description "A resource from which this concept is derived or sourced." ;
sh:nodeKind sh:IRI ;
sh:order 26 ;
sh:path dcterms:source ],
[ sh:class lokf:Concept ;
sh:description "The subject matter this concept is about." ;
sh:nodeKind sh:IRI ;
sh:order 22 ;
sh:path schema1:about ],
[ sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 7 ;
sh:path schema1:url ],
[ sh:class lokf:Concept ;
sh:description "A concept or resource this concept refers to." ;
sh:nodeKind sh:IRI ;
sh:order 19 ;
sh:path dcterms:references ],
[ sh:class lokf:Concept ;
sh:description "A generic association to another concept." ;
sh:nodeKind sh:IRI ;
sh:order 24 ;
sh:path dcterms:relation ],
[ sh:datatype xsd:string ;
sh:description "The HTTP method used to invoke the service, if applicable." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 1 ;
sh:path schema1:httpMethod ],
[ sh:class lokf:Concept ;
sh:description "An IRI asserting this concept is the same entity as another." ;
sh:nodeKind sh:IRI ;
sh:order 23 ;
sh:path schema1:sameAs ],
[ sh:datatype xsd:string ;
sh:description "Short cross-cutting keywords for categorization." ;
sh:nodeKind sh:Literal ;
sh:order 8 ;
sh:path schema1:keywords ],
[ sh:datatype xsd:string ;
sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 14 ;
sh:path schema1:text ],
[ sh:datatype xsd:dateTime ;
sh:description "ISO 8601 datetime the concept was created." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 10 ;
sh:path schema1:dateCreated ],
[ sh:class prov:Agent ;
sh:description "The agent(s) responsible for authoring the concept." ;
sh:nodeKind sh:IRI ;
sh:order 13 ;
sh:path schema1:author ],
[ sh:class rdf:Statement ;
sh:description "Typed relationships whose predicate is not covered by a named relation slot. Each entry is a reified Relation (predicate + target)." ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:order 16 ;
sh:path lokf:relations ],
[ sh:class lokf:Concept ;
sh:description "An entity this concept was derived from (provenance)." ;
sh:nodeKind sh:IRI ;
sh:order 21 ;
sh:path prov:wasDerivedFrom ],
[ sh:class schema1:CreativeWork ;
sh:description "External sources supporting claims in the body." ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:order 15 ;
sh:path schema1:citation ],
[ sh:datatype xsd:string ;
sh:description "A single-sentence summary of the concept." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 6 ;
sh:path schema1:description ],
[ sh:datatype xsd:string ;
sh:description "Human-readable display name." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 5 ;
sh:path schema1:name ],
[ sh:class lokf:Concept ;
sh:description "The target concept that this concept is a part of." ;
sh:nodeKind sh:IRI ;
sh:order 17 ;
sh:path dcterms:isPartOf ],
[ sh:description "The license under which the concept or bundle is offered." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 12 ;
sh:path schema1:license ],
[ sh:description "The base URL or invocation endpoint of a service." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 0 ;
sh:path schema1:url ],
[ sh:class lokf:Concept ;
sh:description "A concept this concept depends on." ;
sh:nodeKind sh:IRI ;
sh:order 20 ;
sh:path dcterms:requires ],
[ sh:class lokf:Concept ;
sh:description "A resource that formally defines this concept." ;
sh:nodeKind sh:IRI ;
sh:order 25 ;
sh:path rdfs:isDefinedBy ],
[ sh:class lokf:Concept ;
sh:description "A concept that is a part of this concept." ;
sh:nodeKind sh:IRI ;
sh:order 18 ;
sh:path schema1:hasPart ],
[ sh:datatype xsd:string ;
sh:description "The concept's type. OKF's single required field. In LOKF the value SHOULD name a LOKF class (e.g. Metric, Dataset, Table, Playbook, GlossaryTerm); it designates the JSON-LD @type / rdf:type. Consumers MUST tolerate unknown values by treating the concept as a generic lokf:Concept." ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 4 ;
sh:path lokf:type ],
[ sh:datatype xsd:string ;
sh:description "A version string for the concept's content." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 11 ;
sh:path schema1:version ] ;
sh:targetClass schema1:WebAPI .
lokf:Document a sh:NodeShape ;
rdfs:comment "A general knowledge document that does not fit a more specific type." ;
sh:closed true ;
sh:ignoredProperties ( rdf:type ) ;
sh:property [ sh:class lokf:Concept ;
sh:description "A concept that is a part of this concept." ;
sh:nodeKind sh:IRI ;
sh:order 15 ;
sh:path schema1:hasPart ],
[ sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 4 ;
sh:path schema1:url ],
[ sh:datatype xsd:string ;
sh:description "A single-sentence summary of the concept." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 3 ;
sh:path schema1:description ],
[ sh:class schema1:CreativeWork ;
sh:description "External sources supporting claims in the body." ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:order 12 ;
sh:path schema1:citation ],
[ sh:datatype xsd:dateTime ;
sh:description "ISO 8601 datetime the concept was created." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 7 ;
sh:path schema1:dateCreated ],
[ sh:class lokf:Concept ;
sh:description "An entity this concept was derived from (provenance)." ;
sh:nodeKind sh:IRI ;
sh:order 18 ;
sh:path prov:wasDerivedFrom ],
[ sh:datatype xsd:string ;
sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 11 ;
sh:path schema1:text ],
[ sh:class lokf:Concept ;
sh:description "A concept this concept depends on." ;
sh:nodeKind sh:IRI ;
sh:order 17 ;
sh:path dcterms:requires ],
[ sh:description "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." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:order 0 ;
sh:path schema1:identifier ],
[ sh:class prov:Agent ;
sh:description "The agent(s) responsible for authoring the concept." ;
sh:nodeKind sh:IRI ;
sh:order 10 ;
sh:path schema1:author ],
[ sh:class lokf:Concept ;
sh:description "A resource from which this concept is derived or sourced." ;
sh:nodeKind sh:IRI ;
sh:order 23 ;
sh:path dcterms:source ],
[ sh:datatype xsd:string ;
sh:description "Short cross-cutting keywords for categorization." ;
sh:nodeKind sh:Literal ;
sh:order 5 ;
sh:path schema1:keywords ],
[ sh:datatype xsd:dateTime ;
sh:description "ISO 8601 datetime of the last meaningful change." ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 6 ;
sh:path schema1:dateModified ],
[ sh:class lokf:Concept ;
sh:description "A generic association to another concept." ;
sh:nodeKind sh:IRI ;
sh:order 21 ;
sh:path dcterms:relation ],
[ sh:class lokf:Concept ;
sh:description "The target concept that this concept is a part of." ;
sh:nodeKind sh:IRI ;
sh:order 14 ;
sh:path dcterms:isPartOf ],
[ sh:datatype xsd:string ;
sh:description "The concept's type. OKF's single required field. In LOKF the value SHOULD name a LOKF class (e.g. Metric, Dataset, Table, Playbook, GlossaryTerm); it designates the JSON-LD @type / rdf:type. Consumers MUST tolerate unknown values by treating the concept as a generic lokf:Concept." ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:order 1 ;
sh:path lokf:type ],
[ sh:description "The license under which the concept or bundle is offered." ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;