-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathlicenses.ttl
More file actions
1216 lines (1075 loc) · 57.3 KB
/
Copy pathlicenses.ttl
File metadata and controls
1216 lines (1075 loc) · 57.3 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 cvocab: <http://open-services.net/ns/core#> .
@prefix sioc: <http://rdfs.org/sioc/ns#> .
@prefix oplweb: <http://www.openlinksw.com/schemas/oplweb#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix gr: <http://purl.org/goodrelations/v1#> .
@prefix siocs: <http://rdfs.org/sioc/services#> .
@prefix sioct: <http://rdfs.org/sioc/types#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix wdrs: <http://www.w3.org/2007/05/powder-s#> .
@prefix prodont: <http://www.productontology.org/id/> .
@prefix xhv: <http://www.w3.org/1999/xhtml/vocab#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix opllic: <http://www.openlinksw.com/ontology/licenses#> .
@prefix oplcont: <http://www.openlinksw.com/ontology/contracts#> .
@prefix oplpro: <http://www.openlinksw.com/ontology/products#> .
@prefix oplsof: <http://www.openlinksw.com/ontology/software#> .
@prefix oplfea: <http://www.openlinksw.com/ontology/features#> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix acl: <http://www.w3.org/ns/auth/acl#> .
@prefix oplacl: <http://www.openlinksw.com/ontology/acl#> .
@prefix oplres: <http://www.openlinksw.com/ontology/restrictions#> .
@prefix oplwebsrv: <http://www.openlinksw.com/ontology/webservices#> .
@prefix schema: <http://schema.org/> .
<http://www.openlinksw.com/ontology/licenses#>
a owl:Ontology ;
rdfs:label """OpenLink Product Licenses Ontology"""^^xsd:string ;
rdfs:comment """Ontology that defines entity and relation types used to describe product licenses.
Examples include sessions, users, cores etc."""@en ;
wdrs:describedby <http://www.openlinksw.com/ontology/licenses> ;
dcterms:created "2014-05-18T13:00:00-05:00"^^xsd:dateTime ;
schema:creator <http://www.openlinksw.com/#this> ;
dcterms:modified "2015-03-20T13:38:00-05:00"^^xsd:dateTime ;
owl:versionInfo "1.2.0"^^xsd:string ;
owl:imports <http://purl.org/goodrelations/v1> ,
<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://www.openlinksw.com/ontology/software#> ;
<http://open.vocab.org/terms/defines>
opllic:hasSessions ,
opllic:hasMaximumUsers ,
opllic:hasMaximumProcessorCores ,
opllic:hasMaximumClientConnections ,
opllic:maxNetworkInstance ,
opllic:hasBuyService ,
opllic:hasProductLicense ,
opllic:hasServiceProvider ,
opllic:hasLicenseFileName ,
opllic:ProductLicense ,
opllic:ClientAccessLicense ,
opllic:UDAMTLicenseBundle ,
opllic:SubscriptionLicense ,
opllic:RenewableMethod ,
opllic:Automatic ,
opllic:Manual ,
opllic:ServerSubscriptionLicense ,
opllic:ClientSubscriptionLicense ,
opllic:hasRenewableMethod ,
opllic:renewalInterval ,
opllic:productLicenseOf ,
opllic:hasMaximumClusterNodes ,
opllic:hasLicenseModule ,
opllic:partOf ,
opllic:ExpiringLicense,
opllic:NonExpiringLicense ,
opllic:hasDuration ,
opllic:isDurationOf ,
opllic:durationYears ,
opllic:durationMonths ,
opllic:durationDays ,
opllic:serialNumberBroadcast ,
opllic:LicenseDuration ,
opllic:hasLicenseCode ,
opllic:ClientConnectionRestriction ,
opllic:hasClientConnectionRestriction ,
opllic:SqlClientConnectionRestriction ,
opllic:ClientApplicationRestriction ,
opllic:hasClientApplicationRestriction ,
opllic:ConnectivityProtocolRestriction ,
opllic:ConnectivityProtocolRestrictionHTTP ,
opllic:ConnectivityProtocolRestrictionWebDAV ,
opllic:ConnectivityProtocolRestrictionXMLA ,
opllic:ConnectivityProtocolRestrictionSQL ,
opllic:ConnectivityProtocolRestrictionJDBC ,
opllic:ConnectivityProtocolRestrictionOLEDB ,
opllic:hasRateLimit ,
opllic:hasMaxResultRowsLimit ,
opllic:hasContentSizeLimit ,
opllic:hasSparqlMode ,
opllic:hasACLRestrictionsEndpoint ,
opllic:hasACLRulesEndpoint ,
opllic:hasCertGeneratorEndpoint ,
opllic:hasDomain ,
opllic:hasClientNetworkNameRestriction ,
opllic:hasClientNetworkAddressRestriction ,
opllic:hasClientNetworkDomainNameRestriction ,
opllic:hasConnectivityProtocolRestriction ,
opllic:hasMaximumSQLClientConnections ,
opllic:hasMaximumHttpClientConnections ,
opllic:hasServer ,
opllic:VirtuosoServer ,
opllic:BuyService ,
opllic:isBuyServiceOf ,
opllic:uriTemplate ,
opllic:uriParameter ,
opllic:uriQueryParameterName ,
opllic:exampleValue,
opllic:endpointURLString ,
opllic:endpointURL ,
opllic:Module ,
opllic:isModuleOf ,
opllic:hasModuleCode ,
opllic:hasModule ,
opllic:SubscriptionFrequency ,
opllic:hasSubscriptionFrequency ,
opllic:isSubscriptionFrequencyOf ,
opllic:BundleItem ,
opllic:isBundleItemOf ,
opllic:RequestBrokerLicense ,
opllic:DatabaseAgentLicense ,
opllic:UDAMTLicense ,
opllic:UDASTLicense ,
opllic:UDASTExpressLicense ,
opllic:UDASTLiteLicense ,
opllic:Virtuoso6License ,
opllic:Virtuoso7License ,
opllic:Virtuoso8License ,
opllic:hasAclRestriction ,
opllic:hasAclRule ,
opllic:CertificateBasedLicense ,
opllic:LicGenBasedLicense ;
schema:about
opllic:hasSessions ,
opllic:hasMaximumUsers ,
opllic:hasMaximumProcessorCores ,
opllic:hasMaximumClientConnections ,
opllic:maxNetworkInstance ,
opllic:hasBuyService ,
opllic:hasProductLicense ,
opllic:hasServiceProvider ,
opllic:hasLicenseFileName ,
opllic:ProductLicense ,
opllic:ClientAccessLicense ,
opllic:UDAMTLicenseBundle ,
opllic:SubscriptionLicense ,
opllic:RenewableMethod ,
opllic:Automatic ,
opllic:Manual ,
opllic:ServerSubscriptionLicense ,
opllic:ClientSubscriptionLicense ,
opllic:hasRenewableMethod ,
opllic:renewalInterval ,
opllic:productLicenseOf ,
opllic:hasMaximumClusterNodes ,
opllic:hasLicenseModule ,
opllic:partOf ,
opllic:ExpiringLicense,
opllic:NonExpiringLicense ,
opllic:hasDuration ,
opllic:isDurationOf ,
opllic:durationYears ,
opllic:durationMonths ,
opllic:durationDays ,
opllic:serialNumberBroadcast ,
opllic:LicenseDuration ,
opllic:hasLicenseCode ,
opllic:ClientConnectionRestriction ,
opllic:hasClientConnectionRestriction ,
opllic:SqlClientConnectionRestriction ,
opllic:ClientApplicationRestriction ,
opllic:hasClientApplicationRestriction ,
opllic:ConnectivityProtocolRestriction ,
opllic:ConnectivityProtocolRestrictionHTTP ,
opllic:ConnectivityProtocolRestrictionWebDAV ,
opllic:ConnectivityProtocolRestrictionXMLA ,
opllic:ConnectivityProtocolRestrictionSQL ,
opllic:ConnectivityProtocolRestrictionJDBC ,
opllic:ConnectivityProtocolRestrictionOLEDB ,
opllic:hasRateLimit ,
opllic:hasMaxResultRowsLimit ,
opllic:hasContentSizeLimit ,
opllic:hasSparqlMode ,
opllic:hasACLRestrictionsEndpoint ,
opllic:hasACLRulesEndpoint ,
opllic:hasCertGeneratorEndpoint ,
opllic:hasDomain ,
opllic:hasClientNetworkNameRestriction ,
opllic:hasClientNetworkAddressRestriction ,
opllic:hasClientNetworkDomainNameRestriction ,
opllic:hasConnectivityProtocolRestriction ,
opllic:hasMaximumSQLClientConnections ,
opllic:hasMaximumHttpClientConnections ,
opllic:hasServer ,
opllic:VirtuosoServer ,
opllic:BuyService ,
opllic:isBuyServiceOf ,
opllic:uriTemplate ,
opllic:uriParameter ,
opllic:uriQueryParameterName ,
opllic:exampleValue,
opllic:endpointURLString ,
opllic:endpointURL ,
opllic:Module ,
opllic:isModuleOf ,
opllic:hasModuleCode ,
opllic:hasModule ,
opllic:SubscriptionFrequency ,
opllic:hasSubscriptionFrequency ,
opllic:isSubscriptionFrequencyOf ,
opllic:BundleItem ,
opllic:isBundleItemOf ,
opllic:RequestBrokerLicense ,
opllic:DatabaseAgentLicense ,
opllic:UDAMTLicense ,
opllic:UDASTLicense ,
opllic:UDASTExpressLicense ,
opllic:UDASTLiteLicense ,
opllic:Virtuoso6License ,
opllic:Virtuoso7License ,
opllic:Virtuoso8License ,
opllic:hasAclRestriction ,
opllic:hasAclRule ,
opllic:CertificateBasedLicense ,
opllic:LicGenBasedLicense .
<http://open.vocab.org/terms/defines> owl:inverseOf <http://www.w3.org/2007/05/powder-s#describedby> .
<http://www.openlinksw.com/DAV/data/turtle/licenses.ttl>
a foaf:Document , schema:TechArticle ;
rdfs:label """OpenLink Product Licensing Ontology Description Document (Turtle)"""^^xsd:string ;
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 Licensing"""@en ;
foaf:primaryTopic <http://www.openlinksw.com/ontology/licenses#> ;
xhv:canonical <http://www.openlinksw.com/ontology/licenses> ;
dcterms:created "2014-05-18T13:00:00-05:00"^^xsd:dateTime ;
dcterms:modified "2015-03-20T13:38:00-05:00"^^xsd:dateTime ;
xhv:describes <http://www.openlinksw.com/ontology/licenses#> ;
schema:about <http://www.openlinksw.com/ontology/licenses#> ;
dcterms:subject <http://www.openlinksw.com/ontology/licenses#> .
<http://www.openlinksw.com/data/turtle/licenses.ttl>
a foaf:Document , schema:TechArticle ;
schema:creator <http://www.openlinksw.com/#this> ;
rdfs:label """OpenLink Product Licensing Ontology Description Document (Turtle)"""^^xsd:string ;
cc:license <http://creativecommons.org/licenses/by-sa/3.0/> ;
rdfs:comment """This is a turtle document that uses Linked Data oriented content to describe OpenLink Product Licensing Ontology."""@en ;
foaf:primaryTopic <http://www.openlinksw.com/ontology/licenses#> ;
xhv:canonical <http://www.openlinksw.com/ontology/licenses> ;
xhv:describes <http://www.openlinksw.com/ontology/licenses#> ;
dcterms:created "2014-05-18T13:00:00-05:00"^^xsd:dateTime ;
dcterms:modified "2015-03-20T13:38:00-05:00"^^xsd:dateTime ;
schema:about <http://www.openlinksw.com/ontology/licenses#> ;
dcterms:subject <http://www.openlinksw.com/ontology/licenses#> .
<http://www.openlinksw.com/ontology/licenses>
a foaf:Document , schema:TechArticle ;
rdfs:label """OpenLink Product Licensing Ontology Description Document"""^^xsd:string ;
cc:license <http://creativecommons.org/licenses/by-sa/3.0/> ;
schema:creator <http://www.openlinksw.com/#this> ;
rdfs:comment """This is a document that uses Linked Data oriented content to describe OpenLink Product Licensing Ontology."""@en ;
dcterms:subject <http://www.openlinksw.com/ontology/licenses#> ;
dcterms:created "2014-05-18T13:00:00-05:00"^^xsd:dateTime ;
dcterms:modified "2015-03-20T13:38:00-05:00"^^xsd:dateTime ;
foaf:primaryTopic <http://www.openlinksw.com/ontology/licenses#> ;
foaf:topic opllic:hasSessions ,
opllic:hasMaximumUsers ,
opllic:hasMaximumProcessorCores ,
opllic:hasMaximumClientConnections ,
opllic:maxNetworkInstance ,
opllic:hasBuyService ,
opllic:hasProductLicense ,
opllic:hasServiceProvider ,
opllic:hasLicenseFileName ,
opllic:ProductLicense ,
opllic:ClientAccessLicense ,
opllic:UDAMTLicenseBundle ,
opllic:SubscriptionLicense ,
opllic:RenewableMethod ,
opllic:Automatic ,
opllic:Manual ,
opllic:ServerSubscriptionLicense ,
opllic:ClientSubscriptionLicense ,
opllic:hasRenewableMethod ,
opllic:renewalInterval ,
opllic:productLicenseOf ,
opllic:hasMaximumClusterNodes ,
opllic:hasLicenseModule ,
opllic:partOf ,
opllic:ExpiringLicense,
opllic:NonExpiringLicense ,
opllic:hasDuration ,
opllic:isDurationOf ,
opllic:durationYears ,
opllic:durationMonths ,
opllic:durationDays ,
opllic:serialNumberBroadcast ,
opllic:LicenseDuration ,
opllic:hasLicenseCode ,
opllic:ClientConnectionRestriction ,
opllic:hasClientConnectionRestriction ,
opllic:SqlClientConnectionRestriction ,
opllic:ClientApplicationRestriction ,
opllic:hasClientApplicationRestriction ,
opllic:ConnectivityProtocolRestriction ,
opllic:ConnectivityProtocolRestrictionHTTP ,
opllic:ConnectivityProtocolRestrictionWebDAV ,
opllic:ConnectivityProtocolRestrictionXMLA ,
opllic:ConnectivityProtocolRestrictionSQL ,
opllic:ConnectivityProtocolRestrictionJDBC ,
opllic:ConnectivityProtocolRestrictionOLEDB ,
opllic:hasRateLimit ,
opllic:hasMaxResultRowsLimit ,
opllic:hasContentSizeLimit ,
opllic:hasSparqlMode ,
opllic:hasACLRestrictionsEndpoint ,
opllic:hasACLRulesEndpoint ,
opllic:hasCertGeneratorEndpoint ,
opllic:hasDomain ,
opllic:hasClientNetworkNameRestriction ,
opllic:hasClientNetworkAddressRestriction ,
opllic:hasClientNetworkDomainNameRestriction ,
opllic:hasConnectivityProtocolRestriction ,
opllic:hasMaximumSQLClientConnections ,
opllic:hasMaximumHttpClientConnections ,
opllic:hasServer ,
opllic:VirtuosoServer ,
opllic:BuyService ,
opllic:isBuyServiceOf ,
opllic:uriTemplate ,
opllic:uriParameter ,
opllic:uriQueryParameterName ,
opllic:exampleValue,
opllic:endpointURLString ,
opllic:endpointURL ,
opllic:Module ,
opllic:hasModuleCode ,
opllic:hasModule ,
opllic:isModuleOf ,
opllic:SubscriptionFrequency ,
opllic:hasSubscriptionFrequency ,
opllic:isSubscriptionFrequencyOf ,
opllic:BundleItem ,
opllic:isBundleItemOf ,
opllic:RequestBrokerLicense ,
opllic:DatabaseAgentLicense ,
opllic:UDAMTLicense ,
opllic:UDASTLicense ,
opllic:UDASTExpressLicense ,
opllic:UDASTLiteLicense ,
opllic:Virtuoso6License ,
opllic:Virtuoso7License ,
opllic:Virtuoso8License ,
opllic:hasAclRestriction ,
opllic:hasAclRule .
<http://www.openlinksw.com/data/turtle/licenses.ttl>
rdfs:seeAlso <http://virtuoso.openlinksw.com/offers/> ,
<http://uda.openlinksw.com/offers/> ,
<http://www.openlinksw.com/data/turtle/shop.ttl> ,
<http://www.openlinksw.com/data/turtle/offers.ttl> ,
<http://www.openlinksw.com/data/turtle/contracts.ttl> ,
<http://www.openlinksw.com/data/turtle/products.ttl> ,
<http://www.openlinksw.com/data/turtle/software.ttl> ,
<http://www.openlinksw.com/data/turtle/machines.ttl> ,
<http://www.openlinksw.com/data/turtle/vendors.ttl> ,
<http://www.openlinksw.com/data/turtle/purchases.ttl> ,
<http://www.openlinksw.com/data/turtle/payments.ttl> ,
<http://www.openlinksw.com/data/turtle/features.ttl> .
# <.> sioc:container_of <http://www.openlinksw.com/data/turtle/licenses.ttl> .
# <http://www.openlinksw.com/data/turtle/licenses.ttl> sioc:has_container <.> .
# <-------------- Licenses --------------> #
# <-------------- Licenses Classes --------------> #
opllic:ProductLicense a owl:Class ;
rdfs:label "Product License"^^xsd:string ;
owl:equivalentClass schema:Product ;
rdfs:subClassOf schema:Product , cc:License ;
rdfs:seeAlso <http://support.openlinksw.com/supportweb/Multi-TierLicensingModels> ,
<http://support.openlinksw.com/supportweb/ProductLicensingGuide> ,
<http://support.openlinksw.com/supportweb/LicenseTerminology> ,
<http://support.openlinksw.com/supportweb/ApplyingLicenseFiles> ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:ClientAccessLicense a owl:Class ;
rdfs:label "Client Access License"^^xsd:string ;
rdfs:seeAlso <http://support.openlinksw.com/supportweb/ProductLicensingGuide> ,
<http://support.openlinksw.com/supportweb/LicenseTerminology> ,
<http://support.openlinksw.com/supportweb/ApplyingLicenseFiles> ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:subClassOf opllic:ProductLicense .
opllic:SubscriptionLicense a owl:Class ;
rdfs:subClassOf opllic:ProductLicense ;
rdfs:seeAlso <http://support.openlinksw.com/supportweb/Multi-TierLicensingModels> ,
<http://support.openlinksw.com/supportweb/ProductLicensingGuide> ,
<http://support.openlinksw.com/supportweb/LicenseTerminology> ,
<http://support.openlinksw.com/supportweb/ApplyingLicenseFiles> ;
rdfs:label "Subscription License"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
# opllic:hasRenewableMethod [ a owl:Class;
# owl:oneOf (opllic:Automatic opllic:Manual ) ] .
opllic:RenewableMethod a owl:Class ;
rdfs:label "Renewable Method"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
# is rdfs:subClassOf [ a owl:Class; owl:oneOf (opllic:Automatic opllic:Manual) ] .
opllic:Automatic a owl:Class ;
rdfs:subClassOf opllic:RenewableMethod ;
rdfs:label "Automatic Renewable Method"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:Manual a owl:Class ;
rdfs:subClassOf opllic:RenewableMethod ;
rdfs:label "Manual Renewable Method"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:ServerSubscriptionLicense a owl:Class ;
rdfs:label "Server Subscription License"^^xsd:string ;
rdfs:seeAlso <http://support.openlinksw.com/supportweb/ProductLicensingGuide> ,
<http://support.openlinksw.com/supportweb/LicenseTerminology> ,
<http://support.openlinksw.com/supportweb/ApplyingLicenseFiles> ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:subClassOf opllic:ProductLicense , opllic:SubscriptionLicense .
opllic:ClientSubscriptionLicense a owl:Class ;
rdfs:label "Client Subscription License"^^xsd:string ;
rdfs:seeAlso <http://support.openlinksw.com/supportweb/ProductLicensingGuide> ,
<http://support.openlinksw.com/supportweb/LicenseTerminology> ,
<http://support.openlinksw.com/supportweb/ApplyingLicenseFiles> ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:subClassOf opllic:ProductLicense , opllic:SubscriptionLicense .
opllic:CertificateBasedLicense a owl:Class ;
rdfs:label "CertificateBasedLicense"^^xsd:string ;
skos:altLabel "Certtificate-Based License" ;
rdfs:comment """A license which will be represented by an X.509 certificate. This class should be used
as a marker-class in combination with other license types such as ClientAccessLicense."""@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:subClassOf opllic:ProductLicense .
opllic:LicGenBasedLicense a owl:Class ;
rdfs:label "LicGenBasedLicense"^^xsd:string ;
skos:altLabel "LicGen-Based License" ;
rdfs:comment """A license which will be represented by an old-school license file as generated by the OpenLink License Generator.
This class should be used as a marker-class in combination with other license types."""@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:subClassOf opllic:ProductLicense .
opllic:UDAMTLicenseBundle a owl:Class ;
rdfs:subClassOf opllic:ProductLicense ;
rdfs:label "UDA Multi-Tier License Bundle"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:UDAMTLicense a owl:Class ;
rdfs:subClassOf opllic:ProductLicense ;
rdfs:label "UDA Multi-Tier License"^^xsd:string ;
rdfs:seeAlso <http://support.openlinksw.com/supportweb/Multi-TierLicensingModels> ,
<http://support.openlinksw.com/supportweb/ProductLicensingGuide> ,
<http://support.openlinksw.com/supportweb/LicenseTerminology> ,
<http://support.openlinksw.com/supportweb/ApplyingLicenseFiles> ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:UDASTLicense a owl:Class ;
rdfs:subClassOf opllic:ProductLicense ;
rdfs:label "UDA Single-Tier License"^^xsd:string ;
rdfs:seeAlso <http://support.openlinksw.com/supportweb/Multi-TierLicensingModels> ,
<http://support.openlinksw.com/supportweb/ProductLicensingGuide> ,
<http://support.openlinksw.com/supportweb/LicenseTerminology> ,
<http://support.openlinksw.com/supportweb/ApplyingLicenseFiles> ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:UDASTExpressLicense a owl:Class ;
rdfs:subClassOf opllic:ProductLicense ;
rdfs:label "UDA Single-Tier Expresss License"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:UDASTLiteLicense a owl:Class ;
rdfs:subClassOf opllic:ProductLicense ;
rdfs:label "UDA Single-Tier Lite License"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:Virtuoso6License a owl:Class ;
rdfs:subClassOf opllic:ProductLicense ;
rdfs:label "Virtuoso 6 License"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:Virtuoso7License a owl:Class ;
rdfs:subClassOf opllic:ProductLicense ;
rdfs:label "Virtuoso 7 License"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:Virtuoso8License a owl:Class ;
rdfs:subClassOf opllic:ProductLicense ;
rdfs:label "Virtuoso 8 License"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:RequestBrokerLicense a owl:Class ;
rdfs:subClassOf opllic:ProductLicense ;
rdfs:label "UDA Multi-Tier Request Broker License"^^xsd:string ;
skos:altName """UDA Multi-Tier Request Broker License"""^^xsd:string ;
skos:altLabel """UDA Multi-Tier Request Broker License"""^^xsd:string ;
rdfs:seeAlso <http://support.openlinksw.com/supportweb/Multi-TierLicensingModels> ,
<http://support.openlinksw.com/supportweb/ProductLicensingGuide> ,
<http://support.openlinksw.com/supportweb/LicenseTerminology> ,
<http://support.openlinksw.com/supportweb/ApplyingLicenseFiles> ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:DatabaseAgentLicense a owl:Class ;
rdfs:subClassOf opllic:ProductLicense ;
rdfs:label "UDA Multi-Tier Database Agent License"^^xsd:string ;
rdfs:seeAlso <http://support.openlinksw.com/supportweb/Multi-TierLicensingModels> ,
<http://support.openlinksw.com/supportweb/ProductLicensingGuide> ,
<http://support.openlinksw.com/supportweb/LicenseTerminology> ,
<http://support.openlinksw.com/supportweb/ApplyingLicenseFiles> ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:ExpiringLicense a owl:Class ;
rdfs:label "Expiring License"^^xsd:string ;
rdfs:subClassOf opllic:ProductLicense ;
rdfs:seeAlso <http://support.openlinksw.com/supportweb/Multi-TierLicensingModels> ,
<http://support.openlinksw.com/supportweb/ProductLicensingGuide> ,
<http://support.openlinksw.com/supportweb/LicenseTerminology> ,
<http://support.openlinksw.com/supportweb/ApplyingLicenseFiles> ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:NonExpiringLicense a owl:Class ;
rdfs:label "Non Expiring License"^^xsd:string ;
rdfs:subClassOf opllic:ProductLicense ;
rdfs:seeAlso <http://support.openlinksw.com/supportweb/Multi-TierLicensingModels> ,
<http://support.openlinksw.com/supportweb/ProductLicensingGuide> ,
<http://support.openlinksw.com/supportweb/LicenseTerminology> ,
<http://support.openlinksw.com/supportweb/ApplyingLicenseFiles> ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:LicenseDuration a owl:Class ;
rdfs:label "License Duration"^^xsd:string ;
rdfs:comment """This class defines entities that provide product license duration data in at least one of the following units: days, months, or year"""@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
# <-------------- Licenses Properties --------------> #
opllic:hasServiceProvider
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasServiceProvider"^^xsd:string ;
skos:altLabel "Service Provider"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:domain opllic:ClientAccessLicense ;
rdfs:range sioct:WebService .
opllic:hasProductLicense
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasProductLicense"^^xsd:string ;
skos:altLabel "Product License"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:subPropertyOf gr:quantitativeProductOrServiceProperty ;
rdfs:domain opllic:ProductLicense ;
owl:inverseOf opllic:productLicenseOf ;
rdfs:range
oplpro:ProductRelease,
oplpro:Product .
opllic:hasLicenseFileName
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasLicenseFileName"^^xsd:string ;
skos:altLabel "Product License File Name"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:domain opllic:ProductLicense ;
rdfs:range xsd:string .
opllic:productLicenseOf
a owl:ObjectProperty, rdf:Property ;
rdfs:label "productLicenseOf"^^xsd:string ;
skos:altLabel "Product Model Of"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:comment """Relationship property that associates a Product (e.g., UDA or Virtuoso License) with an actual Product Module (Virtuoso or UDA -- ODBC, JDBC, ADO.NET, OLE-DB Driver Model for a given RDBMS)."""@en ;
rdfs:subPropertyOf schema:model, gr:quantitativeProductOrServiceProperty ;
rdfs:domain opllic:ProductLicense ;
owl:inverseOf opllic:hasProductLicense ;
schema:rangeIncludes oplpro:Product, schema:SoftwareApplication, oplsof:ApplicationProgram,
<http://sw.opencyc.org/concept/Mx4rvcUMxZwpEbGdrcN5Y29ycA> .
opllic:hasLicenseCode
a owl:DatatypeProperty, rdf:Property ;
rdfs:label "hasLicenseCode"^^xsd:string ;
skos:altLabel "License Code"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:domain opllic:ProductLicense ;
rdfs:range xsd:string .
opllic:hasSessions
a owl:DatatypeProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:subPropertyOf gr:quantitativeProductOrServiceProperty ;
rdfs:label "hasSessions"^^xsd:string ;
skos:altLabel "Maximum Concurrent Database Sessions"^^xsd:string ;
rdfs:domain opllic:ProductLicense ;
rdfs:range xsd:integer .
opllic:hasMaximumUsers
a owl:DatatypeProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:subPropertyOf gr:quantitativeProductOrServiceProperty ;
rdfs:label "hasMaximumUsers"^^xsd:string ;
skos:altLabel "Maximum Users"^^xsd:string ;
rdfs:domain opllic:ProductLicense ;
rdfs:range xsd:string .
opllic:hasMaximumClientConnections
a owl:DatatypeProperty, rdf:Property ;
rdfs:label "hasMaximumClientConnections"^^xsd:string ;
skos:altLabel "Maximum Client Connections"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:domain opllic:ProductLicense ;
rdfs:range xsd:integer .
opllic:hasMaximumProcessorCores
a owl:DatatypeProperty, rdf:Property ;
rdfs:label "hasMaximumProcessorCores"^^xsd:string ;
skos:altLabel "Maximum Processor Cores"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:subPropertyOf gr:quantitativeProductOrServiceProperty ;
rdfs:domain opllic:ProductLicense ;
rdfs:range xsd:integer .
opllic:hasMaximumClusterNodes
a owl:DatatypeProperty, rdf:Property ;
rdfs:label "hasMaximumClusterNodes"^^xsd:string ;
skos:altLabel "Maximum Number of Cluster Nodes"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:subPropertyOf gr:quantitativeProductOrServiceProperty ;
rdfs:domain opllic:ProductLicense ;
rdfs:range xsd:integer .
opllic:maxNetworkInstance
a owl:DatatypeProperty, rdf:Property ;
rdfs:label "maxNetworkInstance"^^xsd:string ;
skos:altLabel "Maximum Network Instance Licenses"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:subPropertyOf gr:quantitativeProductOrServiceProperty ;
schema:domainIncludes
opllic:ProductLicense ,
opllic:ClientApplicationRestriction ;
rdfs:range xsd:integer .
opllic:ProductLicense owl:disjointWith opllic:ClientApplicationRestriction .
# changed opllic:BuyService to oplwebsrv:WebService
opllic:hasBuyService
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasBuyService"^^xsd:string ;
skos:altLabel "web service"^^xsd:string ;
rdfs:comment """This is the predicate/property that associates an OpenLink Web Service with an instance of purchased item."""@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:domain opllic:ProductLicense ;
rdfs:range oplwebsrv:WebService ;
rdfs:subPropertyOf oplwebsrv:hasWebService, siocs:has_service .
opllic:hasLicenseModule
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasLicenseModule"^^xsd:string ;
skos:altLabel "License Module Unit"^^xsd:string ;
rdfs:comment """License Module Unit subcomponent."""@en ;
dcterms:description """The objects of this relation provide data used for calculating add-ons units to the main license."""@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:domain opllic:ProductLicense ;
rdfs:range opllic:Module ;
owl:inverseOf opllic:isModuleOf .
opllic:partOf
a owl:ObjectProperty, rdf:Property ;
rdfs:label "partOf"^^xsd:string ;
skos:altLabel "Is Part Of"^^xsd:string ;
rdfs:comment """This is the predicate/property that associates a License with Offer."""@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:domain opllic:ProductLicense ;
rdfs:range gr:Offering .
opllic:hasDuration
a owl:ObjectProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:label "hasDuration"^^xsd:string ;
skos:altLabel "Duration"^^xsd:string ;
rdfs:comment """Duration"""@en ;
schema:domainIncludes
opllic:ProductLicense,
oplcont:Contract ;
rdfs:range opllic:LicenseDuration .
opllic:ProductLicense owl:disjointWith oplcont:Contract .
opllic:isDurationOf
a owl:ObjectProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:label "isDurationOf"^^xsd:string ;
skos:altLabel "Is Duration Of"^^xsd:string ;
rdfs:comment """Is Duration Of"""@en ;
rdfs:domain opllic:LicenseDuration ;
schema:rangeIncludes
opllic:ProductLicense ,
oplcont:Contract ,
opllic:ClientApplicationRestriction .
opllic:ProductLicense owl:disjointWith oplcont:Contract ,
opllic:ClientApplicationRestriction .
oplcont:Contract owl:disjointWith opllic:ClientApplicationRestriction .
opllic:durationYears
a owl:DatatypeProperty, rdf:Property ;
rdfs:label "durationYears"^^xsd:string ;
skos:altLabel "License Duration (years)"^^xsd:string ;
rdfs:comment """Time from License Issue to License Expiration (years)"""@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:domain
opllic:LicenseDuration ,
opllic:SubscriptionFrequency ;
rdfs:range xsd:integer .
opllic:durationMonths
a owl:DatatypeProperty, rdf:Property ;
rdfs:label "durationMonths"^^xsd:string ;
skos:altLabel "License Duration (months)"^^xsd:string ;
rdfs:comment """Time from License Issue to License Expiration (months)"""@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:domain
opllic:LicenseDuration ,
opllic:SubscriptionFrequency ;
rdfs:range xsd:integer .
opllic:durationDays
a owl:DatatypeProperty, rdf:Property ;
rdfs:label "durationDays"^^xsd:string ;
skos:altLabel "License Duration (days)"^^xsd:string ;
rdfs:comment """Time from License Issue to License Expiration (days)"""@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:domain
opllic:LicenseDuration ,
opllic:SubscriptionFrequency ;
rdfs:range xsd:integer .
opllic:serialNumberBroadcast
a owl:DatatypeProperty, rdf:Property ;
rdfs:label "serialNumberBroadcast"^^xsd:string ;
skos:altLabel "Serial Number Broadcast"^^xsd:string ;
rdfs:comment """Network License Enforcement"""@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:domain opllic:ProductLicense ;
rdfs:range xsd:boolean .
opllic:hasServer
a owl:ObjectProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:label "hasServer"^^xsd:string ;
skos:altLabel "Server"^^xsd:string ;
rdfs:comment """A server description which defines the way a server can be connected to."""@en ;
rdfs:domain opllic:ClientConnectionRestriction ;
rdfs:range opllic:VirtuosoServer .
opllic:hasAclRestriction
a owl:ObjectProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:label "hasAclRestriction"^^xsd:string ;
skos:altLabel "ACL Restriction"^^xsd:string ;
rdfs:comment """A ClientConnectionRestriction has a set of Restriction resources which define the specific limits the
ClientApplicationRestriction comes with. All details except for the agent are specified including the application realm."""@en ;
rdfs:domain opllic:ClientConnectionRestriction ;
rdfs:range oplres:Restriction .
opllic:hasAclRule
a owl:ObjectProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:label "hasAclRule"^^xsd:string ;
skos:altLabel "ACL Rule"^^xsd:string ;
rdfs:comment """A ClientConnectionRestriction has a set of Authorization resources which define the permissions the
ClientApplicationRestriction comes with. All details except for the agent are specified including the application realm."""@en ;
rdfs:domain opllic:ClientConnectionRestriction ;
rdfs:range acl:Authorization .
# <-------------- Connections --------------> #
# <-------------- Connections Classes --------------> #
opllic:ClientApplicationRestriction
a owl:Class ;
rdfs:label "Client Application Restriction"^^xsd:string ;
skos:altLabel "Client Application Restriction"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:ConnectivityProtocolRestriction
a owl:Class ;
rdfs:label "Connectivity Protocol Restriction"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:ConnectivityProtocolRestrictionHTTP
a owl:Class ;
rdfs:subClassOf opllic:ConnectivityProtocolRestriction ;
rdfs:label "HTTP Connectivity Protocol Restriction"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:ConnectivityProtocolRestrictionWebDAV
a owl:Class ;
rdfs:subClassOf opllic:ConnectivityProtocolRestrictionHTTP ;
rdfs:label "WebDAV Connectivity Protocol Restriction"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:ConnectivityProtocolRestrictionXMLA
a owl:Class ;
rdfs:subClassOf opllic:ConnectivityProtocolRestrictionHTTP ;
rdfs:label "XMLA Connectivity Protocol Restriction"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:ConnectivityProtocolRestrictionSQL
a owl:Class ;
rdfs:subClassOf opllic:ConnectivityProtocolRestriction ;
rdfs:label "SQL Connectivity Protocol Restriction"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:ConnectivityProtocolRestrictionJDBC
a owl:Class ;
rdfs:subClassOf opllic:ConnectivityProtocolRestrictionSQL ;
rdfs:label "JDBC Connectivity Protocol Restriction"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:ConnectivityProtocolRestrictionOLEDB
a owl:Class ;
rdfs:subClassOf opllic:ConnectivityProtocolRestrictionSQL ;
rdfs:label "OLE DB Connectivity Protocol Restriction"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
opllic:ClientConnectionRestriction
a owl:Class ;
rdfs:label "Client Connection Restriction"^^xsd:string ;
rdfs:comment "Client connection restriction which specifies the criteria of how a license allows a client to connect to a server."@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:subClassOf opllic:ClientConnectionRestriction .
opllic:SqlClientConnectionRestriction
a owl:Class ;
rdfs:label "SQL Client Connection Restriction"^^xsd:string ;
rdfs:comment "A client connection restriction which specifies the criteria of how a license allows a client to connect to a server through a SQL (ODBC) connection."@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:subClassOf opllic:ClientConnectionRestriction .
opllic:VirtuosoServer
a owl:Class ;
rdfs:label "Virtuoso Server" ;
rdfs:comment "A Virtuoso Server instance."@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> .
# <-------------- Connections Properties --------------> #
opllic:hasClientConnectionRestriction
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasClientConnectionRestriction"^^xsd:string ;
skos:altLabel "Client Connection Restriction"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:domain opllic:ClientAccessLicense ;
rdfs:range opllic:ClientConnectionRestriction .
opllic:hasClientApplicationRestriction
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasClientApplicationRestriction"^^xsd:string ;
skos:altLabel "Client Application Restriction"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:domain opllic:ClientAccessLicense ;
rdfs:range opllic:ClientApplicationRestriction .
opllic:hasConnectivityProtocolRestriction
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasConnectivityProtocolRestriction"^^xsd:string ;
skos:altLabel "Connectivity Protocol Restriction"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:domain opllic:ClientApplicationRestriction ;
rdfs:range opllic:ConnectivityProtocolRestriction .
opllic:hasRateLimit
a owl:DatatypeProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:label "hasRateLimit"^^xsd:string ;
skos:altLabel "Rate Limit"^^xsd:string ;
rdfs:domain opllic:ClientConnectionRestriction ;
rdfs:range xsd:integer .
opllic:hasMaxResultRowsLimit
a owl:DatatypeProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:label "hasMaxResultRowsLimit"^^xsd:string ;
skos:altLabel "Max Query Results Limit"^^xsd:string ;
rdfs:comment """Maximum Results in a Query Resultset (Solution). In the case of SPARQL DESCRIBE and CONSTRUCT, this is the maximum number of entity descriptions."""@en ;
rdfs:domain opllic:ClientConnectionRestriction ;
rdfs:range xsd:integer .
opllic:hasContentSizeLimit
a owl:DatatypeProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:label "hasContentSizeLimit"^^xsd:string ;
skos:altLabel "Content Size Limit"^^xsd:string ;
rdfs:domain opllic:ClientConnectionRestriction ;
rdfs:range xsd:integer .
opllic:hasSparqlAccessMode
a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasSparqlAccessMode"^^xsd:string ;
skos:altLabel "SPARQL Access Mode"^^xsd:string ;
rdfs:comment "Defines the SPARQL access modes of a connection, i.e. the SPARQL rights a connection scope includes. Applicable access modes are acl:Read, acl:Write, and oplacl:Sponge."@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:domain opllic:ClientConnectionRestriction ;
rdfs:range acl:Access .
opllic:hasDomain
a owl:DatatypeProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:label "hasDomain"^^xsd:string ;
skos:altLabel "Domain"^^xsd:string ;
rdfs:comment "The domain of a virtuoso server instance."@en ;
rdfs:domain opllic:VirtuosoServer ;
rdfs:range xsd:string .
opllic:hasACLRestrictionsEndpoint
a owl:ObjectProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:label "hasACLRestrictionsEndpoint"^^xsd:string ;
skos:altLabel "ACL Restrictions API Endpoint"^^xsd:string ;
rdfs:comment "The API endpoint of a server which allows the creation of ACL resources. The endpoint needs to support WebID authentication and creation of new restriction resources by POSTing turtle resources."@en ;
rdfs:domain opllic:VirtuosoServer ;
rdfs:range rdfs:Resource .
opllic:hasACLRulesEndpoint
a owl:ObjectProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:label "hasACLRulesEndpoint"^^xsd:string ;
skos:altLabel "ACL Rules API Endpoint"^^xsd:string ;
rdfs:comment "The API endpoint of a server which allows the creation of ACL rules. The endpoint needs to support WebID authentication and creation of new rules resources by POSTing turtle resources."@en ;
rdfs:domain opllic:VirtuosoServer ;
rdfs:range rdfs:Resource .
opllic:hasCertGeneratorEndpoint
a owl:ObjectProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:label "hasCertGeneratorEndpoint"^^xsd:string ;
skos:altLabel "Certificate Generator Endpoint"^^xsd:string ;
rdfs:comment "The API endpoint of a server which allows the creation of X.509 certificates. The endpoint needs to support WebID authentication and creation of new certificate resources by POSTing."@en ;
rdfs:domain opllic:VirtuosoServer ;
rdfs:range rdfs:Resource .
opllic:hasClientNetworkNameRestriction
a owl:DatatypeProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:label "hasClientNetworkNameRestriction"^^xsd:string ;
skos:altLabel "Client Network Name Restriction"^^xsd:string ;
rdfs:domain opllic:ClientApplicationRestriction ;
rdfs:range xsd:string .
opllic:hasClientNetworkAddressRestriction
a owl:DatatypeProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:label "hasClientNetworkAddressRestriction"^^xsd:string ;
skos:altLabel "Client Network Address Restriction"^^xsd:string ;
rdfs:domain opllic:ClientApplicationRestriction ;
rdfs:range xsd:string .
opllic:hasClientNetworkDomainNameRestriction
a owl:DatatypeProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:label "hasClientNetworkDomainNameRestriction"^^xsd:string ;
skos:altLabel "Client Network Domain Name Restriction"^^xsd:string ;
rdfs:domain opllic:ClientApplicationRestriction ;
rdfs:range xsd:string .
opllic:hasMaximumSQLClientConnections
a owl:DatatypeProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;
rdfs:label "hasMaximumSQLClientConnections"^^xsd:string ;
skos:altLabel "Maximum SQL Client Connections"^^xsd:string ;
rdfs:domain opllic:ConnectivityProtocolRestriction ;
rdfs:range xsd:integer .
opllic:hasMaximumHttpClientConnections
a owl:DatatypeProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/licenses#> ;