-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathacl.ttl
More file actions
1132 lines (1013 loc) · 46.6 KB
/
Copy pathacl.ttl
File metadata and controls
1132 lines (1013 loc) · 46.6 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 schema: <http://schema.org/> .
@prefix cvocab: <http://open-services.net/ns/core#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix sioc: <http://rdfs.org/sioc/ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix wdrs: <http://www.w3.org/2007/05/powder-s#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix xhv: <http://www.w3.org/1999/xhtml/vocab#> .
@prefix acl: <http://www.w3.org/ns/auth/acl#> .
@prefix oplacl: <http://www.openlinksw.com/ontology/acl#> .
@prefix oplcert: <http://www.openlinksw.com/schemas/cert#> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix wdrs: <http://www.w3.org/2007/05/powder-s#> .
@prefix oplwebsrv: <http://www.openlinksw.com/ontology/webservices#> .
@prefix source: <http://www.openlinksw.com/data/turtle/acl.ttl> .
@prefix sourceDAV: <http://www.openlinksw.com/DAV/data/turtle/acl.ttl> .
@prefix : <#> .
@base <http://www.w3.org/ns/auth/acl>
sourceDAV:
a schema:CreativeWork ;
schema:name """About OpenLink ACL Ontology"""^^xsd:string ;
dcterms:format "text/turtle" ;
schema:dateCreated "2013-01-01T13:00:00-05:00"^^xsd:dateTime ;
schema:dateModified "2018-01-11T10:30:00-05:00"^^xsd:dateTime ;
schema:author <http://www.openlinksw.com/#this> ;
schema:license <http://creativecommons.org/licenses/by/4.0/deed.en_US> ;
cc:attributionName "OpenLink Software" ;
owl:sameAs source: .
source:
a schema:CreativeWork ;
schema:name """OpenLink ACL Ontology"""^^xsd:string ;
schema:comment """This is a turtle document that uses Linked Data oriented content to describe OpenLink Operating System Families"""@en ;
schema:dateCreated "2013-01-01T13:00:00-05:00"^^xsd:dateTime ;
schema:dateModified "2018-01-11T10:30:00-05:00"^^xsd:dateTime ;
schema:author <http://www.openlinksw.com/#this> ;
schema:license <http://creativecommons.org/licenses/by/4.0/deed.en_US> ;
cc:attributionName "OpenLink Software" ;
schema:about oplacl: .
oplacl:
a owl:Ontology ;
rdfs:label """OpenLink ACL Ontology"""^^xsd:string ;
rdfs:comment """Ontology that defines entity and relation types used to describe conditional ACL groups and application
realms. Examples include static group, contidional group, recursive authorization etc. """@en ;
wdrs:describedby <http://www.openlinksw.com/ontology/acl> ;
dcterms:created "2014-05-18T13:00:00-05:00"^^xsd:dateTime ;
dcterms:modified "2015-03-20T13:38:00-05:00"^^xsd:dateTime ;
schema:creator <http://www.openlinksw.com/#this> ;
owl:versionInfo "1.8.0"^^xsd:string ;
owl:imports <http://www.w3.org/ns/auth/acl#> ,
<http://xmlns.com/foaf/0.1/> ,
<http://www.w3.org/2002/07/owl#> ,
<http://www.w3.org/1999/02/22-rdf-syntax-ns#> ,
<http://purl.org/dc/terms/> ,
<http://rdfs.org/sioc/services#> ,
<http://www.openlinksw.com/ontology/webservices#> ;
<http://open.vocab.org/terms/defines>
oplacl:StaticGroup ,
oplacl:ConditionalGroup ,
oplacl:RecursiveAuthorization ,
oplacl:ApplicationRealm ,
oplacl:Condition ,
oplacl:QueryCondition ,
oplacl:GenericCondition ,
oplacl:TripletCondition ,
oplacl:IPAddressCondition ,
oplacl:Comparator ,
oplacl:Criteria ,
oplacl:Scope ,
oplacl:AccessMode ,
oplacl:GrantAccessMode ,
oplacl:AclCachingMode ,
oplacl:hasRealm ,
oplacl:hasIdentityDelegate ,
oplacl:hasCondition ,
oplacl:hasCriteria ,
oplacl:hasComparator ,
oplacl:hasComparatorPattern ,
oplacl:hasQuery ,
oplacl:hasProperty ,
oplacl:hasObject ,
oplacl:hasScope ,
oplacl:hasIPAddressPattern ,
oplacl:hasGrantAccessMode ,
oplacl:isGrantAccessModeOf ,
oplacl:hasApplicableAccess ,
oplacl:hasDefaultAccess ,
oplacl:hasEnabledAclScope ,
oplacl:hasDisabledAclScope ,
oplacl:hasAccessMode ,
oplacl:hasRuleDocument ,
oplacl:hasGroupDocument ,
oplacl:hasGraphAclCachingMode ,
oplacl:EqualTo ,
oplacl:NotEqualTo ,
oplacl:LessThan ,
oplacl:LessThanOrEqual ,
oplacl:GreaterThan ,
oplacl:GreaterThanOrEqual ,
oplacl:Contains ,
oplacl:NotContains ,
oplacl:StartsWith ,
oplacl:NotStartsWith ,
oplacl:EndsWith ,
oplacl:NotEndsWith ,
oplacl:Regexp ,
oplacl:NotRegexp ,
oplacl:IsNull ,
oplacl:IsNotNull ,
oplacl:WebIDVerified ,
oplacl:CertVerified ,
oplacl:CertExpiration ,
oplacl:CertSerial ,
oplacl:CertMail ,
oplacl:CertSubject ,
oplacl:CertIssuer ,
oplacl:CertIssuerSAN ,
oplacl:CertStartDate ,
oplacl:CertEndDate ,
oplacl:CertSignatureAlgorithm ,
oplacl:CertSignature ,
oplacl:CertDigest ,
oplacl:CertPKExponent ,
oplacl:CertPKModulus ,
oplacl:NetID,
oplacl:GrantRead ,
oplacl:GrantWrite ,
oplacl:GrantSponge ,
oplacl:GrantExecute ,
oplacl:Sponge ,
oplacl:Execute ,
oplacl:DefaultRealm ,
oplacl:SqlRealm ,
<urn:virtuoso:val:scopes:sponger:describe> ,
<urn:virtuoso:val:scopes:sponger:about> ,
<urn:virtuoso:val:scopes:pivotviewer> ,
oplacl:Dav ,
oplacl:Query ,
oplacl:PrivateGraphs ,
oplacl:SpongerCartridges ,
oplacl:OAuth ,
oplacl:ListGranted ,
oplacl:ListDenied ;
schema:about
oplacl:StaticGroup ,
oplacl:ConditionalGroup ,
oplacl:RecursiveAuthorization ,
oplacl:ApplicationRealm ,
oplacl:Condition ,
oplacl:QueryCondition ,
oplacl:GenericCondition ,
oplacl:TripletCondition ,
oplacl:IPAddressCondition ,
oplacl:Comparator ,
oplacl:Criteria ,
oplacl:Scope ,
oplacl:AccessMode ,
oplacl:GrantAccessMode ,
oplacl:AclCachingMode ,
oplacl:hasRealm ,
oplacl:hasIdentityDelegate ,
oplacl:hasCondition ,
oplacl:hasCriteria ,
oplacl:hasComparator ,
oplacl:hasComparatorPattern ,
oplacl:hasQuery ,
oplacl:hasProperty ,
oplacl:hasObject ,
oplacl:hasScope ,
oplacl:hasIPAddressPattern ,
oplacl:hasGrantAccessMode ,
oplacl:isGrantAccessModeOf ,
oplacl:hasApplicableAccess ,
oplacl:hasDefaultAccess ,
oplacl:hasEnabledAclScope ,
oplacl:hasDisabledAclScope ,
oplacl:hasAccessMode ,
oplacl:hasRuleDocument ,
oplacl:hasGroupDocument ,
oplacl:hasGraphAclCachingMode ,
oplacl:EqualTo ,
oplacl:NotEqualTo ,
oplacl:LessThan ,
oplacl:LessThanOrEqual ,
oplacl:GreaterThan ,
oplacl:GreaterThanOrEqual ,
oplacl:Contains ,
oplacl:NotContains ,
oplacl:StartsWith ,
oplacl:NotStartsWith ,
oplacl:EndsWith ,
oplacl:NotEndsWith ,
oplacl:Regexp ,
oplacl:NotRegexp ,
oplacl:IsNull ,
oplacl:IsNotNull ,
oplacl:WebIDVerified ,
oplacl:CertVerified ,
oplacl:CertExpiration ,
oplacl:CertSerial ,
oplacl:CertMail ,
oplacl:CertSubject ,
oplacl:CertIssuer ,
oplacl:CertIssuerSAN ,
oplacl:CertStartDate ,
oplacl:CertEndDate ,
oplacl:CertSignatureAlgorithm ,
oplacl:CertSignature ,
oplacl:CertDigest ,
oplacl:CertPKExponent ,
oplacl:CertPKModulus ,
oplacl:NetID,
oplacl:GrantRead ,
oplacl:GrantWrite ,
oplacl:GrantSponge ,
oplacl:GrantExecute ,
oplacl:Sponge ,
oplacl:Execute ,
oplacl:DefaultRealm ,
oplacl:SqlRealm ,
<urn:virtuoso:val:scopes:sponger:describe> ,
<urn:virtuoso:val:scopes:sponger:about> ,
<urn:virtuoso:val:scopes:pivotviewer> ,
oplacl:Dav ,
oplacl:Query ,
oplacl:PrivateGraphs ,
oplacl:SpongerCartridges ,
oplacl:OAuth ,
oplacl:ListGranted ,
oplacl:ListDenied .
<http://www.openlinksw.com/DAV/data/turtle/acl.ttl>
a foaf:Document , schema:TechArticle ;
rdfs:label """OpenLink ACL Ontology Description Document (Turtle) """ ;
cc:license <http://creativecommons.org/licenses/by-sa/3.0/> ;
dcterms:license <http://creativecommons.org/licenses/by-sa/3.0/> ;
schema:creator <http://www.openlinksw.com/#this> ;
rdfs:comment """This is a turtle document that uses Linked Data oriented content to describe an OpenLink ontology for ACL """@en ;
foaf:primaryTopic <http://www.openlinksw.com/ontology/acl#> ;
dcterms:created "2014-05-18T13:00:00-05:00"^^xsd:dateTime ;
dcterms:modified "2015-03-20T13:38:00-05:00"^^xsd:dateTime ;
xhv:canonical <http://www.openlinksw.com/ontology/acl> ;
xhv:describes <http://www.openlinksw.com/ontology/acl#> ;
schema:about <http://www.openlinksw.com/ontology/acl#> ;
dcterms:subject <http://www.openlinksw.com/ontology/acl#> .
<http://www.openlinksw.com/data/turtle/acl.ttl>
a foaf:Document , schema:TechArticle ;
schema:creator <http://www.openlinksw.com/#this> ;
cc:license <http://creativecommons.org/licenses/by-sa/3.0/> ;
rdfs:label """OpenLink ACL Ontology Description Document (Turtle) """ ;
rdfs:comment """This is a turtle document that uses Linked Data oriented content to describe the OpenLink ACL Ontology. """@en ;
foaf:primaryTopic <http://www.openlinksw.com/ontology/acl#> ;
dcterms:created "2014-05-18T13:00:00-05:00"^^xsd:dateTime ;
dcterms:modified "2015-03-20T13:38:00-05:00"^^xsd:dateTime ;
xhv:canonical <http://www.openlinksw.com/ontology/acl> ;
xhv:describes <http://www.openlinksw.com/ontology/acl#> ;
schema:about <http://www.openlinksw.com/ontology/acl#> ;
dcterms:subject <http://www.openlinksw.com/ontology/acl#> .
<http://www.openlinksw.com/ontology/acl>
a foaf:Document , schema:TechArticle ;
rdfs:label """OpenLink ACL Ontology Description Document"""^^xsd:string ;
cc:license <http://creativecommons.org/licenses/by-sa/3.0/> ;
dcterms:created "2014-05-18T13:00:00-05:00"^^xsd:dateTime ;
dcterms:modified "2015-03-20T13:38:00-05:00"^^xsd:dateTime ;
schema:creator <http://www.openlinksw.com/#this> ;
rdfs:comment """This is a document that uses Linked Data oriented content to describe OpenLink ACL Ontology. """@en ;
dcterms:subject <http://www.openlinksw.com/ontology/acl#> ;
foaf:primaryTopic <http://www.openlinksw.com/ontology/acl#> ;
foaf:topic
oplacl:StaticGroup ,
oplacl:ConditionalGroup ,
oplacl:RecursiveAuthorization ,
oplacl:ApplicationRealm ,
oplacl:Condition ,
oplacl:QueryCondition ,
oplacl:GenericCondition ,
oplacl:TripletCondition ,
oplacl:IPAddressCondition ,
oplacl:Comparator ,
oplacl:Criteria ,
oplacl:Scope ,
oplacl:AccessMode ,
oplacl:GrantAccessMode ,
oplacl:AclCachingMode ,
oplacl:hasRealm ,
oplacl:hasIdentityDelegate ,
oplacl:hasCondition ,
oplacl:hasCriteria ,
oplacl:hasComparator ,
oplacl:hasComparatorPattern ,
oplacl:hasQuery ,
oplacl:hasProperty ,
oplacl:hasObject ,
oplacl:hasScope ,
oplacl:hasIPAddressPattern ,
oplacl:hasGrantAccessMode ,
oplacl:isGrantAccessModeOf ,
oplacl:hasApplicableAccess ,
oplacl:hasDefaultAccess ,
oplacl:hasEnabledAclScope ,
oplacl:hasDisabledAclScope ,
oplacl:hasAccessMode ,
oplacl:hasRuleDocument ,
oplacl:hasGroupDocument ,
oplacl:hasGraphAclCachingMode ,
oplacl:EqualTo ,
oplacl:NotEqualTo ,
oplacl:LessThan ,
oplacl:LessThanOrEqual ,
oplacl:GreaterThan ,
oplacl:GreaterThanOrEqual ,
oplacl:Contains ,
oplacl:NotContains ,
oplacl:StartsWith ,
oplacl:NotStartsWith ,
oplacl:EndsWith ,
oplacl:NotEndsWith ,
oplacl:Regexp ,
oplacl:NotRegexp ,
oplacl:IsNull ,
oplacl:IsNotNull ,
oplacl:WebIDVerified ,
oplacl:CertVerified ,
oplacl:CertExpiration ,
oplacl:CertSerial ,
oplacl:CertMail ,
oplacl:CertSubject ,
oplacl:CertIssuer ,
oplacl:CertIssuerSAN ,
oplacl:CertStartDate ,
oplacl:CertEndDate ,
oplacl:CertSignatureAlgorithm ,
oplacl:CertSignature ,
oplacl:CertDigest ,
oplacl:CertPKExponent ,
oplacl:CertPKModulus ,
oplacl:NetID,
oplacl:GrantRead ,
oplacl:GrantWrite ,
oplacl:GrantSponge ,
oplacl:GrantExecute ,
oplacl:Sponge ,
oplacl:Execute ,
oplacl:DefaultRealm ,
oplacl:SqlRealm ,
<urn:virtuoso:val:scopes:sponger:describe> ,
<urn:virtuoso:val:scopes:sponger:about> ,
<urn:virtuoso:val:scopes:pivotviewer> ,
oplacl:Dav ,
oplacl:Query ,
oplacl:PrivateGraphs ,
oplacl:SpongerCartridges ,
oplacl:OAuth ,
oplacl:ListGranted ,
oplacl:ListDenied .
# <-------------- Common ACL Classes --------------> #
oplacl:StaticGroup a owl:Class ;
rdfs:label "Static Group" ;
skos:altLabel "Static Group" ;
rdfs:comment """Entity type of resources representing a Static Group, i.e. a classical group with a set of members (Class). """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:subClassOf foaf:Group .
oplacl:ConditionalGroup a owl:Class ;
rdfs:label "Conditional Group" ;
skos:altLabel "Conditional Group" ;
rdfs:comment """Entity type of resources representing a Conditional Group, i.e. a group which includes a set of conditions to describe the members (Class). """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:subClassOf foaf:Group .
oplacl:RecursiveAuthorization a owl:Class ;
rdfs:label "Recursive Authorization" ;
skos:altLabel "Recursive Authorization" ;
rdfs:comment """Entity type of resources representing a Recursive Authorization, i.e. an authorization resource which applies to all sub-resources recursively. (Class). """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:subClassOf acl:Authorization .
oplacl:ApplicationRealm a owl:Class ;
rdfs:label "Application Realm" ;
skos:altLabel "Application Realm" ;
rdfs:comment """Entity type (class) that defines the nature of an access control (ACL) constrained functionality realm.
This kind of functionality realm is within the scope of restrictions described by the Virtuoso ABAC [Attribute Based
Access Control] System. """@en ;
rdfs:isDefinedBy oplacl: .
oplacl:Condition a owl:Class ;
rdfs:label "Condition" ;
skos:altLabel "Condition" ;
rdfs:comment """Entity type of resources representing a Group Condition (Class). """@en ;
rdfs:isDefinedBy oplacl: .
oplacl:QueryCondition a owl:Class ;
rdfs:label "Query Condition" ;
skos:altLabel "Query Condition" ;
rdfs:comment """Entity type of resources representing a Query Condition (Class). """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:subClassOf oplacl:Condition .
oplacl:GenericCondition a owl:Class ;
rdfs:label "Generic Condition" ;
skos:altLabel "Generic Condition" ;
rdfs:comment """Entity type of resources representing a Generic Condition (Class). """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:subClassOf oplacl:Condition .
oplacl:TripletCondition a owl:Class ;
rdfs:label "Triplet Condition" ;
skos:altLabel "Triplet Condition" ;
rdfs:comment """Entity type of resources representing a Triplet Condition (Class). """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:subClassOf oplacl:Condition .
oplacl:IPAddressCondition a owl:Class ;
rdfs:label "IP Address Condition" ;
skos:altLabel "IP Address Condition" ;
rdfs:comment """Entity type of resources representing an IP address Condition (Class). """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:subClassOf oplacl:Condition .
oplacl:Comparator a owl:Class ;
rdfs:label "Comparator" ;
skos:altLabel "Comparator" ;
rdfs:comment """Entity type of resources representing a Comparator (Class). """@en ;
rdfs:isDefinedBy oplacl: .
oplacl:Criteria a owl:Class ;
rdfs:label "Criteria" ;
skos:altLabel "Criteria" ;
rdfs:comment """Entity type of resources representing a Criteria (Class). """@en ;
rdfs:isDefinedBy oplacl: .
oplacl:GrantAccessMode a owl:Class ;
rdfs:subClassOf oplacl:AccessMode ;
rdfs:label "Grant Access" ;
rdfs:comment "Parent class for all Access operations that grant the right to grant access to resources. "@en ;
rdfs:isDefinedBy oplacl: .
oplacl:Scope a owl:Class ;
schema:name "Scope" ;
rdfs:label "Scope" ;
skos:altLabel "ACL Scope" ;
rdfs:comment """Mechanism used to identify a functionality realm to which an Access Control applies. """@en ;
rdfs:isDefinedBy oplacl: .
oplacl:AccessMode a owl:Class ;
rdfs:label "Access Mode" ;
rdfs:comment """An Access Mode represents a right someone is granted on a resource.
In other words a group of operations that person can perform on the resource. This sub-class was
introduced to stress the fact that OpenLink's own access mode instances in combiantion with the
new hasAccessMode property should be used instead of the broken sub-class approach in the W3c
ACL ontology. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:subClassOf acl:Access .
oplacl:AclCachingMode a owl:Class ;
rdfs:label "AclCachingMode" ;
skos:altLabel "ACL Caching Mode" ;
rdfs:comment """An ACL Caching mode defines how ACLs are cached. """@en ;
rdfs:isDefinedBy oplacl: .
# <-------------- ACL Properties --------------> #
oplacl:hasIdentityDelegate
a rdf:Property, owl:ObjectProperty;
rdfs:label "hasIdentityDelegate" ;
rdfs:subPropertyOf foaf:knows , acl:delegates ;
owl:inverseOf oplcert:onBehalfOf ;
rdfs:comment """Inverse of onBehalfOf relation that enables an Identity Principal confirm delegation of Identity to an Agent. For example a software user would use this relation to indicate that a piece of software was acting on his/her behalf. """ ;
rdfs:isDefinedBy oplacl: ;
schema:domainIncludes foaf:Person, schema:Person ;
schema:rangeIncludes schema:SoftwareApplication .
oplacl:hasRealm
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasRealm" ;
skos:altLabel "Realm" ;
rdfs:comment """Relates an Authorization or a group to an application realm. """@en ;
rdfs:isDefinedBy oplacl: ;
schema:domainIncludes
acl:Authorization,
foaf:Group ;
rdfs:range oplacl:ApplicationRealm .
acl:Authorization owl:disjointWith foaf:Group .
oplacl:hasCondition
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasCondition" ;
skos:altLabel "Condition" ;
rdfs:comment """Relates a conditional group to a condition. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:ConditionalGroup ;
rdfs:range oplacl:Condition .
oplacl:hasCriteria
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasCriteria" ;
skos:altLabel "Criteria" ;
rdfs:comment """Relates a generic Condition to the used Criteria. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:GenericCondition ;
rdfs:range oplacl:Criteria .
oplacl:hasComparator
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasComparator" ;
skos:altLabel "Comparator" ;
rdfs:comment """Relates a generic Condition to the used Comparator. """@en ;
rdfs:isDefinedBy oplacl: ;
schema:domainIncludes
oplacl:GenericCondition,
oplacl:TripletCondition ;
rdfs:range oplacl:Comparator .
oplacl:GenericCondition owl:disjointWith oplacl:TripletCondition .
oplacl:hasValue
a owl:DatatypeProperty, rdf:Property ;
rdfs:label "hasValue" ;
skos:altLabel "Value" ;
rdfs:comment """Relates a GenericCondition to the value the criteria should be compared to using the given Comparator. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:GenericCondition ;
rdfs:range xsd:string .
oplacl:hasQuery
a owl:DatatypeProperty, rdf:Property ;
rdfs:label "hasQuery" ;
skos:altLabel "Query" ;
rdfs:comment """Relates a QueryCondition to the actual SPARQL ASK query which defines the condition. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:QueryCondition ;
rdfs:range xsd:string .
oplacl:hasCriteriaDatatype
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasCriteriaDatatype" ;
skos:altLabel "Criteria Datatype" ;
rdfs:comment """Relates a Condition criteria to its datatype, i.e. the type of value that is compared. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:Criteria ;
rdfs:range xsd:simpleType .
oplacl:hasComparatorPattern
a owl:DatatypeProperty, rdf:Property ;
rdfs:label "hasComparatorPattern" ;
skos:altLabel "Comparator Pattern" ;
rdfs:comment """Relates a Condition Comparator with the SQL pattern used for comparison. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:Comparator ;
rdfs:range xsd:string .
oplacl:hasSupportedDatatype
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasSupportedDatatype" ;
skos:altLabel "Supported Datatype" ;
rdfs:comment """Relates a Condition Comparator to the datatypes that can be compared with it. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:Comparator ;
rdfs:range xsd:simpleType .
oplacl:hasProperty
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasProperty" ;
skos:altLabel "Property" ;
rdfs:comment """Relates a TripletCondition to the property used in the comparison. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:TripletCondition ;
rdfs:range rdf:Property .
oplacl:hasObject
a rdf:Property ;
rdfs:label "hasObject" ;
skos:altLabel "Object" ;
rdfs:comment "Relates a TripletCondition to the object for comparison. This can be anything, an individual or a literal. "@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:TripletCondition .
oplacl:hasScope
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasScope" ;
skos:altLabel "Scope" ;
rdfs:comment """Relates an Authorization to its Scope which defines the type of resource the rule applies to.
This is not modelled via rdf:type on the acl:accessTo resource of the rule to allow different scopes on the
same resource. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain acl:Authorization ;
rdfs:range oplacl:Scope .
oplacl:hasIPAddressPattern
a owl:DatatypeProperty, rdf:Property ;
rdfs:label "hasIPAddressPattern" ;
skos:altLabel "IP Address Pattern" ;
rdfs:comment """Relates an IPAddressCondition to a regular expression. Any IP Address matching this expression fulfills the condition. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:IPAddressCondition ;
rdfs:range xsd:string .
oplacl:hasGrantAccessMode
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasGrantAccessMode" ;
skos:altLabel "Grant Access Mode" ;
rdfs:comment """Relates an Access mode to its corresponding Grant mode, i.e. the Access which allows to grant access to a resource. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:AccessMode ;
rdfs:range oplacl:GrantAccessMode ;
owl:inverseOf oplacl:isGrantAccessModeOf .
oplacl:isGrantAccessModeOf
a owl:ObjectProperty, rdf:Property ;
rdfs:label "isGrantAccessModeOf" ;
skos:altLabel "Is Grant Access Mode Of" ;
rdfs:comment """Relates a Grant Access mode to the Access mode it grants. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:GrantAccessMode ;
rdfs:range oplacl:AccessMode ;
owl:inverseOf oplacl:hasGrantAccessMode .
oplacl:hasApplicableAccess
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasApplicableAccess" ;
skos:altLabel "Applicable Access" ;
rdfs:comment """Denotes the access modes which are applicable to a certain Scope, ie. all access modes that are usable.
These access modes are useful for generic user interfaces or the generation of default permissions. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:Scope ;
rdfs:range acl:Access .
oplacl:hasDefaultAccess
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasDefaultAccess" ;
skos:altLabel "Default Access" ;
rdfs:comment """Denotes the access modes which are granted if ACL rules on the scope have been disabled via oplacl:aclRulesEnabled.
Setting default modes is comparable to defining public ACL rules for all resources in the scope. It allows to configure Access
for all resources in the scope without the need to define individual rules. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:Scope ;
rdfs:range acl:Access .
oplacl:hasEnabledAclScope
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasEnabledACLScope" ;
skos:altLabel "Enabled ACL Scope" ;
rdfs:comment """Lists the Scopes which are explicitely enabled in a given realm. Applications may use this information to determine
if certain sets of ACL rules should be applied or ignored. If a scope is neither enabled nor explicitely disabled (:hasDisabledAclScope)
then it is up to the application to decide whether to enfore the ACL rules or not. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:ApplicationRealm ;
rdfs:range oplacl:Scope .
oplacl:hasDisabledAclScope
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasDisabledACLScope" ;
skos:altLabel "Disabled ACL Scope" ;
rdfs:comment """Lists the Scopes which are explicitely disabled in a given realm. Applications may use this information to determine
if certain sets of ACL rules should be applied or ignored. If a scope is neither enabled (:hasEnabledAclScope) nor explicitely disabled
then it is up to the application to decide whether to enfore the ACL rules or not. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:ApplicationRealm ;
rdfs:range oplacl:Scope .
oplacl:hasAccessMode
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasAccessMode" ;
skos:altLabel "Access Mode" ;
rdfs:comment """The access mode a rule grants. This property replaces the "mode" property in the W3c ACL ontology which has a broken range.
In its stead this property should be used in combination with the pre-defined AccessMode instances like Read, Write, or Sponge. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain acl:Authorization ;
rdfs:range oplacl:AccessMode .
oplacl:hasRuleDocument
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasRuleDocument" ;
skos:altLabel "Rule Document" ;
rdfs:comment """The document in which the ACL rules (Authorization) resources for a specific application realm are stored. This typically
refers to a named graph in the triple store. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:ApplicationRealm ;
rdfs:range rdfs:Resource .
oplacl:hasGroupDocument
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasGroupDocument" ;
skos:altLabel "Group Document" ;
rdfs:comment """The document in which the ACL group resources for a specific application realm are stored. This typically
refers to a named graph in the triple store. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:ApplicationRealm ;
rdfs:range rdfs:Resource .
oplacl:hasGraphAclCachingMode
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasGraphAclCachingMode" ;
skos:altLabel "Graph ACL Caching Mode" ;
rdfs:comment """The mode which should be used for caching graph ACLs in this realm. """@en ;
rdfs:isDefinedBy oplacl: ;
rdfs:domain oplacl:ApplicationRealm ;
rdfs:range oplacl:AclCachingMode .
# <-------------- Comparator Instances --------------> #
oplacl:EqualTo a oplacl:Comparator ;
rdfs:label "Equal to" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasComparatorPattern """(^{value}^ = ^{pattern}^)"""^^xsd:string ;
oplacl:hasSupportedDatatype xsd:string ;
oplacl:hasSupportedDatatype xsd:integer ;
oplacl:hasSupportedDatatype xsd:boolean ;
oplacl:hasSupportedDatatype xsd:date .
oplacl:NotEqualTo a oplacl:Comparator ;
rdfs:label "Not Equal to" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasComparatorPattern """(^{value}^ <> ^{pattern}^)"""^^xsd:string ;
oplacl:hasSupportedDatatype xsd:string ;
oplacl:hasSupportedDatatype xsd:integer ;
oplacl:hasSupportedDatatype xsd:boolean ;
oplacl:hasSupportedDatatype xsd:date .
oplacl:LessThan a oplacl:Comparator ;
rdfs:label "Less Than" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasComparatorPattern """(^{value}^ < ^{pattern}^)"""^^xsd:string ;
oplacl:hasSupportedDatatype xsd:integer ;
oplacl:hasSupportedDatatype xsd:date .
oplacl:LessThanOrEqual a oplacl:Comparator ;
rdfs:label "Less Than or Equal" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasComparatorPattern """(^{value}^ <= ^{pattern}^)"""^^xsd:string ;
oplacl:hasSupportedDatatype xsd:integer ;
oplacl:hasSupportedDatatype xsd:date .
oplacl:GreaterThan a oplacl:Comparator ;
rdfs:label "Greater Than" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasComparatorPattern """(^{value}^ > ^{pattern}^)"""^^xsd:string ;
oplacl:hasSupportedDatatype xsd:integer ;
oplacl:hasSupportedDatatype xsd:date .
oplacl:GreaterThanOrEqual a oplacl:Comparator ;
rdfs:label "Greater Than or Equal" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasComparatorPattern """(^{value}^ >= ^{pattern}^)"""^^xsd:string ;
oplacl:hasSupportedDatatype xsd:integer ;
oplacl:hasSupportedDatatype xsd:date .
oplacl:Contains a oplacl:Comparator ;
rdfs:label "Contains" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasComparatorPattern """(bif:isnull (bif:strstr (bif:ucase (^{value}^), bif:ucase (^{pattern}^))) = 0)"""^^xsd:string ;
oplacl:hasSupportedDatatype xsd:string .
oplacl:NotContains a oplacl:Comparator ;
rdfs:label "Does not Contain" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasComparatorPattern """(bif:isnull (bif:strstr (bif:ucase (^{value}^), bif:ucase (^{pattern}^))) = 1)"""^^xsd:string ;
oplacl:hasSupportedDatatype xsd:string .
oplacl:StartsWith a oplacl:Comparator ;
rdfs:label "Starts With" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasComparatorPattern """(bif:starts_with (bif:ucase (^{value}^), bif:ucase (^{pattern}^)) = 1)"""^^xsd:string ;
oplacl:hasSupportedDatatype xsd:string .
oplacl:NotStartsWith a oplacl:Comparator ;
rdfs:label "Does not Start With" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasComparatorPattern """(bif:starts_with (bif:ucase (^{value}^), bif:ucase (^{pattern}^)) = 0)"""^^xsd:string ;
oplacl:hasSupportedDatatype xsd:string .
oplacl:EndsWith a oplacl:Comparator ;
rdfs:label "Ends With" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasComparatorPattern """(bif:ends_with (bif:ucase (^{value}^), bif:ucase (^{pattern}^)) = 1)"""^^xsd:string ;
oplacl:hasSupportedDatatype xsd:string .
oplacl:NotEndsWith a oplacl:Comparator ;
rdfs:label "Does not End With" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasComparatorPattern """(bif:ends_with (bif:ucase (^{value}^), bif:ucase (^{pattern}^)) = 0)"""^^xsd:string ;
oplacl:hasSupportedDatatype xsd:string .
oplacl:Regexp a oplacl:Comparator ;
rdfs:label "Matches Regexp" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasComparatorPattern """(bif:regexp_like(^{value}^, ^{pattern}^) = 1)"""^^xsd:string ;
oplacl:hasSupportedDatatype xsd:string .
oplacl:NotRegexp a oplacl:Comparator ;
rdfs:label "Does not Match Regexp" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasComparatorPattern """(bif:regexp_like(^{value}^, ^{pattern}^) = 0)"""^^xsd:string ;
oplacl:hasSupportedDatatype xsd:string .
oplacl:IsNull a oplacl:Comparator ;
rdfs:label "Is Null" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasComparatorPattern """(DB.DBA.is_empty_or_null (^{value}^) = 1)"""^^xsd:string ;
oplacl:hasSupportedDatatype xsd:string ;
oplacl:hasSupportedDatatype xsd:integer ;
oplacl:hasSupportedDatatype xsd:boolean ;
oplacl:hasSupportedDatatype xsd:date .
oplacl:IsNotNull a oplacl:Comparator ;
rdfs:label "Is Not Null" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasComparatorPattern """(DB.DBA.is_empty_or_null (^{value}^) = 0)"""^^xsd:string ;
oplacl:hasSupportedDatatype xsd:string ;
oplacl:hasSupportedDatatype xsd:integer ;
oplacl:hasSupportedDatatype xsd:boolean ;
oplacl:hasSupportedDatatype xsd:date .
# <-------------- Criteria Instances --------------> #
oplacl:WebIDVerified a oplacl:Criteria ;
rdfs:label "WebID Verified Criterion" ;
rdfs:comment """Criterion used to evaluate the verification state of a WebID+TLS-enabled X.509 certificate. """@en ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasCriteriaDatatype xsd:boolean .
oplacl:CertVerified a oplacl:Criteria ;
rdfs:label "Certificate Verified Criterion" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasCriteriaDatatype xsd:boolean .
oplacl:CertExpiration a oplacl:Criteria ;
rdfs:label "Valid Certificate Expiration Date Criterion" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasCriteriaDatatype xsd:boolean .
oplacl:CertSerial a oplacl:Criteria ;
rdfs:label "Certificate Serial Number Criterion" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasCriteriaDatatype xsd:string .
oplacl:CertMail a oplacl:Criteria ;
rdfs:label "Certificate EMail Address Criterion" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasCriteriaDatatype xsd:string .
oplacl:CertSubject a oplacl:Criteria ;
rdfs:label "Certificate Subject Criterion" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasCriteriaDatatype xsd:string .
oplacl:CertIssuer a oplacl:Criteria ;
rdfs:label "Certificate Issuer Criterion" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasCriteriaDatatype xsd:string .
oplacl:CertIssuerSAN a oplacl:Criteria ;
rdfs:label "Certificate Issuer SAN Criterion" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasCriteriaDatatype xsd:string .
oplacl:CertStartDate a oplacl:Criteria ;
rdfs:label "Certificate Start Date Criterion" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasCriteriaDatatype xsd:date .
oplacl:CertEndDate a oplacl:Criteria ;
rdfs:label "Certificate End Date Criterion" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasCriteriaDatatype xsd:date .
oplacl:CertSignatureAlgorithm a oplacl:Criteria ;
rdfs:label "Certificate Signature Algorithm Criterion" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasCriteriaDatatype xsd:string .
oplacl:CertSignature a oplacl:Criteria ;
rdfs:label "Certificate Signature Criterion" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasCriteriaDatatype xsd:string .
oplacl:CertDigest a oplacl:Criteria ;
rdfs:label "Certificate Digest Criterion" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasCriteriaDatatype xsd:string .
oplacl:CertPKExponent a oplacl:Criteria ;
rdfs:label "Certificate PK Exponent Criterion" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasCriteriaDatatype xsd:integer .
oplacl:CertPKModulus a oplacl:Criteria ;
rdfs:label "Certificate PK Modulus Criterion" ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasCriteriaDatatype xsd:string .
oplacl:NetID a oplacl:Criteria ;
rdfs:label "NetID Criterion" ;
rdfs:comment "Criterion used to evaluate the value of a NetID, i.e. the personal IRI, as part of an Identity authentication (verification) workflow e.g., Virtuoso's multi-protocol authentication layer (aka. VAL) . "@en ;
rdfs:isDefinedBy oplacl: ;
oplacl:hasCriteriaDatatype xsd:string .
# <-------------- Access Mode Instances --------------> #
oplacl:Read a oplacl:AccessMode ;
rdfs:label "Read" ;
rdfs:comment "Represents Read Operations, i.e. allows agents to read a certain URI or to read the resource represented by the URI. "@en ;
oplacl:hasGrantAccessMode oplacl:GrantRead ;
rdfs:isDefinedBy oplacl: .
oplacl:Write a oplacl:AccessMode ;
rdfs:label "Write" ;
rdfs:comment "Represents Write Operations, i.e. allows agents to write to a certain URI or to change the resource represented by the URI. "@en ;
oplacl:hasGrantAccessMode oplacl:GrantWrite ;
rdfs:isDefinedBy oplacl: .
oplacl:Sponge a oplacl:AccessMode ;
rdfs:label "Sponge" ;
rdfs:comment "Represents Sponge Operations, i.e. allows agents to sponge a certain graph or into a certain graph. "@en ;
oplacl:hasGrantAccessMode oplacl:GrantSponge ;
rdfs:isDefinedBy oplacl: .
oplacl:Execute a oplacl:AccessMode ;
rdfs:label "Execute" ;
rdfs:comment "Represents Execute Operations, i.e. allows agents to execute a certain resource. "@en ;
oplacl:hasGrantAccessMode oplacl:GrantExecute ;
rdfs:isDefinedBy oplacl: .
oplacl:GrantRead a oplacl:GrantAccessMode ;
rdfs:label "Grant Read" ;
rdfs:comment "Represents operations that grant the permission to read something, i.e. the creation of ACL rules with mode acl:Read. "@en ;
oplacl:isGrantAccessModeOf oplacl:Read ;
rdfs:isDefinedBy oplacl: .
oplacl:GrantWrite a oplacl:GrantAccessMode ;
rdfs:label "Grant Write" ;
rdfs:comment "Represents operations that grant the permission to write to something, i.e. the creation of ACL rules with mode acl:Write. "@en ;
oplacl:isGrantAccessModeOf oplacl:Write ;
rdfs:isDefinedBy oplacl: .
oplacl:GrantSponge a oplacl:GrantAccessMode ;
rdfs:label "Grant Sponge" ;
rdfs:comment "Represents operations that grant the permission to sponge from or to a graph, i.e. the creation of ACL rules with mode oplacl:Sponge. "@en ;
oplacl:isGrantAccessModeOf oplacl:Sponge ;
rdfs:isDefinedBy oplacl: .
oplacl:GrantExecute a oplacl:GrantAccessMode ;
rdfs:label "Grant Execute" ;
rdfs:comment "Represents operations that grant the permission to execute a resource, i.e. the creation of ACL rules with mode oplacl:Execute. "@en ;
oplacl:isGrantAccessModeOf oplacl:Execute ;
rdfs:isDefinedBy oplacl: .
# <-------------- App Realm Instances --------------> #
oplacl:DefaultRealm a oplacl:ApplicationRealm ;
rdfs:label "Default Realm" ;
rdfs:comment """The default application realm is used when no other realm has been specified. It is typically used
for HTTP applications like the sparql endpoint or the URI shortener. """@en ;
wdrs:describedBy <> .
oplacl:SqlRealm a oplacl:ApplicationRealm ;
rdfs:label "SQL Realm" ;
rdfs:comment """SQL access control realm instance associated with client connectivity. This access control realm
is the target [scope] of Virtuoso ABAC [Attribute Based Access Controls] privilege grants that control SQL clients
which includes ODBC, JDBC, ADO.NET, OLE-DB, and XMLA connections. """@en ;
wdrs:describedBy <> .
# <-------------- Scope Instances --------------> #
# oplacl:Describe
# owl:sameAs <urn:virtuoso:val:scopes:sponger:describe> ;
# a oplacl:Scope, oplwebsrv:WebService ;
# rdfs:label "Faceted Browsing based Entity Description Service ACL Scope"@en ;
# dcterms:description """
# Entity description page that enables flexible exploration of an entity description
# via navigation over different entity relationship types [a/k/a deep follow-your-nose exploration].
# The sophisticated interface provided by this service exposes instances of classes [or entity types].
# It also provides the ability to perform inference and reasoning based on the semantics of different
# entity relationship types [relations].
# """@en ;
# rdfs:comment """
# This class of service is endowed with properties that enable it to be constrained by fine-grained
# access controls (ACLs) that cover identity-scoped privileges such as: read, sponger middleware service controlled write,
# and general write. By default all identity principals (users) are granted read access and sponger controlled write .
# """@en ;
# oplacl:hasApplicableAccess oplacl:Read , oplacl:Sponge ;
# oplacl:hasDefaultAccess oplacl:Read , oplacl:Sponge ;
# oplwebsrv:endpointURLString "http://{cname}/describe/" ;
# oplwebsrv:uriTemplate "/describe/?uri={entity-uri}",