-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathoffers.ttl
More file actions
905 lines (792 loc) · 45.6 KB
/
offers.ttl
File metadata and controls
905 lines (792 loc) · 45.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
@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 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 oplofr: <http://www.openlinksw.com/ontology/offers#> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix schema: <http://schema.org/> .
@prefix : <http://www.openlinksw.com/DAV/data/turtle/offers.ttl#> .
@prefix source: <hhttp://www.openlinksw.com/data/turtle/offers.ttl> .
@prefix sourceDAV: <http://www.openlinksw.com/DAV/data/turtle/offers.ttl> .
sourceDAV:
a schema:CreativeWork ;
schema:author <http://www.openlinksw.com/#this> ;
xhv:license <http://creativecommons.org/licenses/by/4.0/deed.en_US> ;
cc:attributionName "OpenLink Software" ;
cc:attributionURL <http://www.openlinksw.com/dataspace/organization/openlink#this> ;
schema:datePublished "2017-10-02T12:38:25-00:00"^^xsd:dateTime ;
schema:dateCreated "2017-09-26T12:38:25-00:00"^^xsd:dateTime ;
schema:dateModified "2018-11-07T17:21:00-05:00"^^xsd:dateTime;
schema:name "Virtuoso Offers Ontology Description Document -- WebDAV Hosted" ;
schema:comment """This document is a launch point for discovering routes to various information sources associated with product and services offers. """;
owl:sameAs source: .
source: a schema:CreativeWork ;
schema:name "Virtuoso Offers Ontology Description Document " ;
schema:comment """This is a turtle document that uses Linked Data oriented content to describe terms from our product and services offers ontology """^^xsd:string ;
schema:author <http://www.openlinksw.com/#this> ;
xhv:license <http://creativecommons.org/licenses/by/4.0/deed.en_US> ;
cc:attributionName "OpenLink Software" ;
cc:attributionURL <http://www.openlinksw.com/dataspace/organization/openlink#this> ;
schema:datePublished "2017-10-02T12:38:25-00:00"^^xsd:dateTime ;
schema:dateCreated "2017-09-26T12:38:25-00:00"^^xsd:dateTime ;
schema:dateModified "2018-11-07T17:21:00-05:00"^^xsd:dateTime;
schema:about <http://www.openlinksw.com/ontology/offers#> .
<http://virtuoso.openlinksw.com/offers/> xhv:related <http://uda.openlinksw.com/offers/> .
<http://uda.openlinksw.com/offers/> xhv:related <http://virtuoso.openlinksw.com/offers/> .
xhv:related owl:equivalentProperty rdfs:seeAlso .
foaf:primaryTopic owl:inverseOf xhv:describedby , wdrs:describedby .
wdrs:describedby owl:equivalentProperty xhv:describedby .
rdfs:subClassOf a owl:TransitiveProperty .
#wdrs:describedby <http://www.openlinksw.com/data/turtle/offers.ttl> , <http://www.openlinksw.com/DAV/data/turtle/offers.ttl> ;
<http://www.openlinksw.com/ontology/offers#> a owl:Ontology ;
rdfs:label """OpenLink Product Offers Ontology"""^^xsd:string ;
rdfs:comment """Ontology that defines entity and relation types used to describe product offers. Examples include offer
numbers,currency, offers types etc."""@en ;
wdrs:describedby <http://www.openlinksw.com/ontology/offers> ;
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 "3.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://open.vocab.org/terms/defines>
oplofr:offerNumber ,
oplofr:priceSpecificationOf ,
oplofr:Currency ,
oplofr:hasCurrency ,
oplofr:currencySymbol ,
oplofr:hasISOCode ,
oplofr:OfferGroup ,
oplofr:isMemberOf ,
oplofr:hasMember ,
oplofr:hasBuyAction ,
oplofr:isBuyActionOf ,
oplofr:hasMaxPurchaseCount ,
oplofr:VirtuosoOffer ,
oplofr:VirtuosoSpecialOffer ,
oplofr:VirtuosoBasicOffer ,
oplofr:Virtuoso6Offer ,
oplofr:Virtuoso6SpecialOffer ,
oplofr:Virtuoso6BasicOffer ,
oplofr:Virtuoso7Offer ,
oplofr:Virtuoso7SpecialOffer ,
oplofr:Virtuoso7ClientAccessOffer ,
oplofr:VirtuosoClientAccessOffer ,
oplofr:Virtuoso7SubscriptionOffer ,
oplofr:VirtuosoSubscriptionOffer ,
oplofr:Virtuoso7BasicOffer ,
oplofr:Virtuoso8Offer ,
oplofr:Virtuoso8BasicOffer ,
oplofr:Virtuoso8SpecialOffer ,
oplofr:Virtuoso8ClientAccessOffer ,
oplofr:Virtuoso8SubscriptionOffer ,
oplofr:Virtuoso8Pricing ,
oplofr:Virtuoso8SpecialUnitPriceSpecification ,
oplofr:Virtuoso8RetailUnitPriceSpecification ,
oplofr:VirtuosoPricing ,
oplofr:VirtuosoSpecialUnitPriceSpecification ,
oplofr:VirtuosoRetailUnitPriceSpecification ,
oplofr:Virtuoso6Pricing ,
oplofr:Virtuoso6SpecialUnitPriceSpecification ,
oplofr:Virtuoso6RetailUnitPriceSpecification ,
oplofr:Virtuoso7Pricing ,
oplofr:Virtuoso7SpecialUnitPriceSpecification ,
oplofr:Virtuoso7RetailUnitPriceSpecification ,
oplofr:retailPriceSpecificationOf ,
oplofr:hasRetailPriceSpecification ,
oplofr:UDAEnterpriseOffer ,
oplofr:UDAExpressOffer ,
oplofr:UDALiteOffer ,
oplofr:UDAPricing ,
oplofr:SingleTierPricing ,
oplofr:MultiTierPricing ,
oplofr:UDASpecialEnterpriseOffer ,
oplofr:UDABasicEnterpriseOffer ,
oplofr:UDASpecialExpressOffer ,
oplofr:UDABasicExpressOffer ,
oplofr:UDASpecialLiteOffer ,
oplofr:UDABasicLiteOffer ,
oplofr:SpecialUnitPriceSpecification ,
oplofr:UDASTSpecialUnitPriceSpecification ,
oplofr:UDAMTSpecialUnitPriceSpecification ,
oplofr:RetailUnitPriceSpecification ,
oplofr:UDASTRetailUnitPriceSpecification ,
oplofr:UDAMTRetailUnitPriceSpecification ,
oplofr:BundleOffer ,
oplofr:BundleOfferSingleTier ,
oplofr:BundleOfferSingleTierLite ,
oplofr:BundleOfferSingleTierExpress ,
oplofr:BundleOfferMultiTier ,
oplofr:SubscriptionPriceSpecification,
oplofr:SubscriptionOffer,
oplofr:DataTwinglerSpecificModuleEntryLevelOffer ,
oplofr:DataTwinglerSpecificModulePlusOffer ,
oplofr:DataTwinglerSpecificModuleProOffer ,
oplofr:DataTwinglerSpecificModuleMaxOffer ,
oplofr:SupportAssistantSpecificModuleEntryLevelOffer ,
oplofr:SupportAssistantSpecificModulePlusOffer ,
oplofr:SupportAssistantSpecificModuleProOffer ,
oplofr:SupportAssistantSpecificModuleMaxOffer ,
oplofr:BringYourOwnKeyEntryLevelOffer ,
oplofr:BringYourOwnKeyPlusOffer ,
oplofr:BringYourOwnKeyProOffer ,
oplofr:MaxOffer ,
oplofr:interval,
oplofr:intervalCount ;
schema:about
oplofr:offerNumber ,
oplofr:priceSpecificationOf ,
oplofr:Currency ,
oplofr:hasCurrency ,
oplofr:currencySymbol ,
oplofr:hasISOCode ,
oplofr:OfferGroup ,
oplofr:isMemberOf ,
oplofr:hasMember ,
oplofr:hasBuyAction ,
oplofr:isBuyActionOf ,
oplofr:hasMaxPurchaseCount ,
oplofr:VirtuosoOffer ,
oplofr:VirtuosoSpecialOffer ,
oplofr:VirtuosoBasicOffer ,
oplofr:Virtuoso6Offer ,
oplofr:Virtuoso6SpecialOffer ,
oplofr:Virtuoso6BasicOffer ,
oplofr:Virtuoso7Offer ,
oplofr:Virtuoso7SpecialOffer ,
oplofr:Virtuoso7ClientAccessOffer ,
oplofr:VirtuosoClientAccessOffer ,
oplofr:Virtuoso7SubscriptionOffer ,
oplofr:VirtuosoSubscriptionOffer ,
oplofr:Virtuoso7BasicOffer ,
oplofr:Virtuoso8Offer ,
oplofr:Virtuoso8BasicOffer ,
oplofr:Virtuoso8SpecialOffer ,
oplofr:Virtuoso8ClientAccessOffer ,
oplofr:Virtuoso8SubscriptionOffer ,
oplofr:Virtuoso8Pricing ,
oplofr:Virtuoso8SpecialUnitPriceSpecification ,
oplofr:Virtuoso8RetailUnitPriceSpecification ,
oplofr:VirtuosoPricing ,
oplofr:VirtuosoSpecialUnitPriceSpecification ,
oplofr:VirtuosoRetailUnitPriceSpecification ,
oplofr:Virtuoso6Pricing ,
oplofr:Virtuoso6SpecialUnitPriceSpecification ,
oplofr:Virtuoso6RetailUnitPriceSpecification ,
oplofr:Virtuoso7Pricing ,
oplofr:Virtuoso7SpecialUnitPriceSpecification ,
oplofr:Virtuoso7RetailUnitPriceSpecification ,
oplofr:retailPriceSpecificationOf ,
oplofr:hasRetailPriceSpecification ,
oplofr:UDAEnterpriseOffer ,
oplofr:UDAExpressOffer ,
oplofr:UDALiteOffer ,
oplofr:UDAPricing ,
oplofr:SingleTierPricing ,
oplofr:MultiTierPricing ,
oplofr:UDASpecialEnterpriseOffer ,
oplofr:UDABasicEnterpriseOffer ,
oplofr:UDASpecialExpressOffer ,
oplofr:UDABasicExpressOffer ,
oplofr:UDASpecialLiteOffer ,
oplofr:UDABasicLiteOffer ,
oplofr:SpecialUnitPriceSpecification ,
oplofr:UDASTSpecialUnitPriceSpecification ,
oplofr:UDAMTSpecialUnitPriceSpecification ,
oplofr:RetailUnitPriceSpecification ,
oplofr:UDASTRetailUnitPriceSpecification ,
oplofr:UDAMTRetailUnitPriceSpecification ,
oplofr:BundleOffer ,
oplofr:BundleOfferSingleTier ,
oplofr:BundleOfferSingleTierLite ,
oplofr:BundleOfferSingleTierExpress ,
oplofr:BundleOfferMultiTier ,
oplofr:SubscriptionPriceSpecification,
oplofr:SubscriptionOffer,
oplofr:DataTwinglerSpecificModuleEntryLevelOffer ,
oplofr:DataTwinglerSpecificModulePlusOffer ,
oplofr:DataTwinglerSpecificModuleProOffer ,
oplofr:DataTwinglerSpecificModuleMaxOffer ,
oplofr:SupportAssistantSpecificModuleEntryLevelOffer ,
oplofr:SupportAssistantSpecificModulePlusOffer ,
oplofr:SupportAssistantSpecificModuleProOffer ,
oplofr:SupportAssistantSpecificModuleMaxOffer ,
oplofr:BringYourOwnKeyEntryLevelOffer ,
oplofr:BringYourOwnKeyPlusOffer ,
oplofr:BringYourOwnKeyProOffer ,
oplofr:MaxOffer ,
oplofr:interval,
oplofr:intervalCount .
<http://open.vocab.org/terms/defines> owl:inverseOf <http://www.w3.org/2007/05/powder-s#describedby> .
<http://www.openlinksw.com/DAV/data/turtle/offers.ttl>
a foaf:Document ;
rdfs:label """OpenLink Product Offers Ontology Description Document (Turtle)"""^^xsd:string ;
cc: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 Offers."""@en ;
xhv:canonical <http://www.openlinksw.com/ontology/offers> ;
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/offers#> ;
xhv:describes <http://www.openlinksw.com/ontology/offers#> ;
schema:about <http://www.openlinksw.com/ontology/offers#> ;
dcterms:subject <http://www.openlinksw.com/ontology/offers#> .
<http://www.openlinksw.com/data/turtle/offers.ttl>
a foaf:Document ;
rdfs:label """OpenLink Product Offers Ontology Description Document (Turtle)"""^^xsd:string ;
cc: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 OpenLink Product Offers Ontology."""@en ;
foaf:primaryTopic <http://www.openlinksw.com/ontology/offers#> ;
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/offers#> ;
schema:about <http://www.openlinksw.com/ontology/offers#> ;
xhv:canonical <http://www.openlinksw.com/ontology/offers> ;
dcterms:subject <http://www.openlinksw.com/ontology/offers#> .
<http://www.openlinksw.com/ontology/offers>
a foaf:Document ;
rdfs:label """OpenLink Product Offers 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 Product Offers Ontology."""@en ;
dcterms:subject <http://www.openlinksw.com/ontology/offers#> ;
foaf:primaryTopic <http://www.openlinksw.com/ontology/offers#> ;
foaf:topic oplofr:offerNumber ,
oplofr:priceSpecificationOf ,
oplofr:Currency ,
oplofr:hasCurrency ,
oplofr:currencySymbol ,
oplofr:hasISOCode ,
oplofr:OfferGroup ,
oplofr:isMemberOf ,
oplofr:hasMember ,
oplofr:hasBuyAction ,
oplofr:isBuyActionOf ,
oplofr:hasMaxPurchaseCount ,
oplofr:VirtuosoOffer ,
oplofr:VirtuosoSpecialOffer ,
oplofr:VirtuosoBasicOffer ,
oplofr:Virtuoso6Offer ,
oplofr:Virtuoso6SpecialOffer ,
oplofr:Virtuoso6BasicOffer ,
oplofr:Virtuoso7Offer ,
oplofr:Virtuoso7SpecialOffer ,
oplofr:Virtuoso7ClientAccessOffer ,
oplofr:VirtuosoClientAccessOffer ,
oplofr:Virtuoso7SubscriptionOffer ,
oplofr:VirtuosoSubscriptionOffer ,
oplofr:Virtuoso7BasicOffer ,
oplofr:Virtuoso8Offer ,
oplofr:Virtuoso8BasicOffer ,
oplofr:Virtuoso8SpecialOffer ,
oplofr:Virtuoso8ClientAccessOffer ,
oplofr:Virtuoso8SubscriptionOffer ,
oplofr:Virtuoso8Pricing ,
oplofr:Virtuoso8SpecialUnitPriceSpecification ,
oplofr:Virtuoso8RetailUnitPriceSpecification ,
oplofr:VirtuosoPricing ,
oplofr:VirtuosoSpecialUnitPriceSpecification ,
oplofr:VirtuosoRetailUnitPriceSpecification ,
oplofr:Virtuoso6Pricing ,
oplofr:Virtuoso6SpecialUnitPriceSpecification ,
oplofr:Virtuoso6RetailUnitPriceSpecification ,
oplofr:Virtuoso7Pricing ,
oplofr:Virtuoso7SpecialUnitPriceSpecification ,
oplofr:Virtuoso7RetailUnitPriceSpecification ,
oplofr:retailPriceSpecificationOf ,
oplofr:hasRetailPriceSpecification ,
oplofr:UDAEnterpriseOffer ,
oplofr:UDAExpressOffer ,
oplofr:UDALiteOffer ,
oplofr:UDAPricing ,
oplofr:SingleTierPricing ,
oplofr:MultiTierPricing ,
oplofr:UDASpecialEnterpriseOffer ,
oplofr:UDABasicEnterpriseOffer ,
oplofr:UDASpecialExpressOffer ,
oplofr:UDABasicExpressOffer ,
oplofr:UDASpecialLiteOffer ,
oplofr:UDABasicLiteOffer ,
oplofr:SpecialUnitPriceSpecification ,
oplofr:UDASTSpecialUnitPriceSpecification ,
oplofr:UDAMTSpecialUnitPriceSpecification ,
oplofr:RetailUnitPriceSpecification ,
oplofr:UDASTRetailUnitPriceSpecification ,
oplofr:UDAMTRetailUnitPriceSpecification ,
oplofr:BundleOffer ,
oplofr:BundleOfferSingleTier ,
oplofr:BundleOfferSingleTierLite ,
oplofr:BundleOfferSingleTierExpress ,
oplofr:BundleOfferMultiTier ,
oplofr:SubscriptionPriceSpecification,
oplofr:SubscriptionOffer,
oplofr:DataTwinglerSpecificModuleEntryLevelOffer ,
oplofr:DataTwinglerSpecificModulePlusOffer ,
oplofr:DataTwinglerSpecificModuleProOffer ,
oplofr:DataTwinglerSpecificModuleMaxOffer ,
oplofr:SupportAssistantSpecificModuleEntryLevelOffer ,
oplofr:SupportAssistantSpecificModulePlusOffer ,
oplofr:SupportAssistantSpecificModuleProOffer ,
oplofr:SupportAssistantSpecificModuleMaxOffer ,
oplofr:BringYourOwnKeyEntryLevelOffer ,
oplofr:BringYourOwnKeyPlusOffer ,
oplofr:BringYourOwnKeyProOffer ,
oplofr:MaxOffer ,
oplofr:interval,
oplofr:intervalCount .
<http://www.openlinksw.com/data/turtle/offers.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/purchases.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/payments.ttl> ,
<http://www.openlinksw.com/data/turtle/features.ttl> ,
<http://www.openlinksw.com/data/turtle/licenses.ttl> .
# <-------------- Offers --------------> #
# <-------------- Offers Classes --------------> #
oplofr:VirtuosoOffer a owl:Class ;
rdfs:subClassOf schema:Offer ;
rdfs:label "Virtuoso Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:VirtuosoSpecialOffer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoOffer ;
rdfs:comment "Virtuoso Special Offer which contains two price specifications -- the Retail and Sale prices"@en ;
rdfs:label "Virtuoso Special Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:VirtuosoBasicOffer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoOffer ;
rdfs:label "Virtuoso Basic Offer"^^xsd:string ;
rdfs:comment "Virtuoso Basic Offer which contains only one price specification -- the Retail price"@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso6Offer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoOffer ;
rdfs:label "Virtuoso 6 Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso6SpecialOffer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoSpecialOffer ;
rdfs:comment "Virtuoso 6 Special Offer which contains two price specifications -- the Retail and Sale prices"@en ;
rdfs:label "Virtuoso 6 Special Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso6BasicOffer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoBasicOffer ;
rdfs:label "Virtuoso 6 Basic Offer"^^xsd:string ;
rdfs:comment "Virtuoso 6 Basic Offer which contains only one price specification -- the Retail price"@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso7Offer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoOffer ;
rdfs:label "Virtuoso 7 Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso7SpecialOffer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoSpecialOffer ;
rdfs:comment "Virtuoso 7 Special Offer which contains two price specifications -- the Retail and Sale prices"@en ;
rdfs:label "Virtuoso 7 Special Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso7ClientAccessOffer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoClientAccessOffer ;
rdfs:label "Virtuoso 7 Client Access Offer"^^xsd:string ;
rdfs:comment "Virtuoso 7 Client Access Offer which contains only one price specification -- the Retail price"@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:VirtuosoClientAccessOffer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoOffer ;
rdfs:label "Virtuoso Client Access Offer"^^xsd:string ;
rdfs:comment "Virtuoso Client Access Offer which contains only one price specification -- the Retail price"@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso7SubscriptionOffer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoSubscriptionOffer ;
rdfs:label "Virtuoso 7 Subscription Offer"^^xsd:string ;
rdfs:comment "Virtuoso 7 Subscription Offer"@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:VirtuosoSubscriptionOffer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoOffer ;
rdfs:label "Virtuoso Subscription Offer"^^xsd:string ;
rdfs:comment "Virtuoso Subscription Offer"@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso7BasicOffer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoBasicOffer ;
rdfs:label "Virtuoso 7 Basic Offer"^^xsd:string ;
rdfs:comment "Virtuoso 7 Basic Offer which contains only one price specification -- the Retail price"@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:UDAEnterpriseOffer a owl:Class ;
rdfs:subClassOf schema:Offer ;
rdfs:label "UDA (Multi-Tier Enterprise Edition) Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:UDASpecialEnterpriseOffer a owl:Class ;
rdfs:subClassOf oplofr:UDAEnterpriseOffer ;
rdfs:comment "UDA Special Enterprise Offer which contains two price specifications -- the Retail and Sale prices"@en ;
rdfs:label "UDA Special (Multi-Tier Enterprise Edition) Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:UDABasicEnterpriseOffer a owl:Class ;
rdfs:subClassOf oplofr:UDAEnterpriseOffer ;
rdfs:label "UDA Basic (Multi-Tier Enterprise Edition) Offer"^^xsd:string ;
rdfs:comment "UDA Basic Enterprise Offer which contains only one price specification -- the Retail price"@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:UDAExpressOffer a owl:Class ;
rdfs:subClassOf schema:Offer ;
rdfs:label "UDA (Single-Tier Express Edition) Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:UDASpecialExpressOffer a owl:Class ;
rdfs:subClassOf oplofr:UDAExpressOffer ;
rdfs:comment "UDA Special Express Offer which contains two price specifications -- the Retail and Sale prices"@en ;
rdfs:label "UDA Special (Single-Tier Express Edition) Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:UDABasicExpressOffer a owl:Class ;
rdfs:subClassOf oplofr:UDAExpressOffer ;
rdfs:label "UDA Basic (Single-Tier Express Edition) Offer"^^xsd:string ;
rdfs:comment "UDA Basic Express Offer which contains only one price specification -- the Retail price"@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:UDALiteOffer a owl:Class ;
rdfs:subClassOf schema:Offer ;
rdfs:label "UDA (Single-Tier Lite Edition) Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:UDASpecialLiteOffer a owl:Class ;
rdfs:subClassOf oplofr:UDALiteOffer ;
rdfs:comment "UDA Special Lite Offer which contains two price specifications -- the Retail and Sale prices"@en ;
rdfs:label "UDA Special (Single-Tier Lite Edition) Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:UDABasicLiteOffer a owl:Class ;
rdfs:subClassOf oplofr:UDALiteOffer ;
rdfs:label "UDA Basic (Single-Tier Lite Edition) Offer"^^xsd:string ;
rdfs:comment "UDA Basic Lite Offer which contains only one price specification -- the Retail price"@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:SubscriptionOffer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoOffer ;
rdfs:label "Virtuoso Subscription Offer"^^xsd:string ;
rdfs:comment "Virtuoso offer that require setting up a subscription to access a service"@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:DataTwinglerSpecificModuleEntryLevelOffer a owl:Class ;
rdfs:subClassOf oplofr:SubscriptionOffer ;
rdfs:label "Data Twingler Module Entry Level Offer"^^xsd:string ;
rdfs:comment "Entry level access to the OPAL Chat Service allowing use of Data Twingler module only. Requires your own API key."@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:DataTwinglerSpecificModulePlusOffer a owl:Class ;
rdfs:subClassOf oplofr:SubscriptionOffer ;
rdfs:label "Data Twingler Module Plus Offer"^^xsd:string ;
rdfs:comment "Plus level access to the OPAL Chat Service allowing use of Data Twingler module only. Requires your own API key."@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:DataTwinglerSpecificModuleProOffer a owl:Class ;
rdfs:subClassOf oplofr:SubscriptionOffer ;
rdfs:label "Data Twingler Module Pro Offer"^^xsd:string ;
rdfs:comment "Pro level access to the OPAL Chat Service allowing use of Data Twingler module only. Requires your own API key."@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:DataTwinglerSpecificModuleMaxOffer a owl:Class ;
rdfs:subClassOf oplofr:SubscriptionOffer ;
rdfs:label "Data Twingler Module Max Offer"^^xsd:string ;
rdfs:comment "Max level access to the OPAL Chat Service allowing use of Data Twingler module only. Uses the system wide API key."@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:SupportAssistantSpecificModuleEntryLevelOffer a owl:Class ;
rdfs:subClassOf oplofr:SubscriptionOffer ;
rdfs:label "Support Assistant Module Entry Level Offer"^^xsd:string ;
rdfs:comment "Entry level access to the OPAL Chat Service allowing use of the Support Assistant only. Requires your own API key."@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:SupportAssistantSpecificModulePlusOffer a owl:Class ;
rdfs:subClassOf oplofr:SubscriptionOffer ;
rdfs:label "Support Assistant Module Plus Offer"^^xsd:string ;
rdfs:comment "Plus level access to the OPAL Chat Service allowing use of the Support Assistant only. Requires your own API key."@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:SupportAssistantSpecificModuleProOffer a owl:Class ;
rdfs:subClassOf oplofr:SubscriptionOffer ;
rdfs:label "Support Assistant Module Pro Offer"^^xsd:string ;
rdfs:comment "Pro level access to the OPAL Chat Service allowing use of the Support Assistant only. Requires your own API key."@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:SupportAssistantSpecificModuleMaxOffer a owl:Class ;
rdfs:subClassOf oplofr:SubscriptionOffer ;
rdfs:label "Support Assistant Module Max Offer"^^xsd:string ;
rdfs:comment "Max level access to the OPAL Chat Service allowing use of the Support Assistant only. Uses the system wide API key."@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:BringYourOwnKeyEntryLevelOffer a owl:Class ;
rdfs:subClassOf oplofr:SubscriptionOffer ;
rdfs:label "Bring Your Own Key Chat Entry Level Offer"^^xsd:string ;
rdfs:comment "Entry level access to the OPAL Chat Service using your own API key"@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:BringYourOwnKeyPlusOffer a owl:Class ;
rdfs:subClassOf oplofr:SubscriptionOffer ;
rdfs:label "Bring Your Own Key Chat Plus Offer"^^xsd:string ;
rdfs:comment "Plus level access to the OPAL Chat Service using your own API key"@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:BringYourOwnKeyProOffer a owl:Class ;
rdfs:subClassOf oplofr:SubscriptionOffer ;
rdfs:label "Bring Your Own Key Chat Pro Offer"^^xsd:string ;
rdfs:comment "Pro level access to the OPAL Chat Service using your own API key"@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:MaxOffer a owl:Class ;
rdfs:subClassOf oplofr:SubscriptionOffer ;
rdfs:label "Max Chat Tier Offer"^^xsd:string ;
rdfs:comment "Max level access to the OPAL Chat Service using the system wide API keys with no restriction on module used."@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:OfferGroup a owl:Class ;
rdfs:label "Offer Group" ;
rdfs:comment "A set of Offers for better overview usage."@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
# <-------------- Offers Properties --------------> #
oplofr:offerNumber
a owl:DatatypeProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> ;
rdfs:label "offerNumber"^^xsd:string ;
skos:altLabel "Offer Code"^^xsd:string ;
rdfs:domain schema:Offer ;
rdfs:range xsd:string .
oplofr:priceSpecificationOf
a owl:ObjectProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> ;
rdfs:label "priceSpecificationOf"^^xsd:string ;
skos:altLabel "Price Specification Of"^^xsd:string ;
rdfs:domain gr:UnitPriceSpecification ;
rdfs:range schema:Offer ;
owl:inverseOf gr:hasPriceSpecification .
oplofr:isMemberOf a owl:ObjectProperty, rdf:Property ;
rdfs:label "isMemberof"^^xsd:string ;
skos:altLabel "Is Member of"^^xsd:string ;
rdfs:comment """Associates an Offer with a Group."""@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> ;
rdfs:domain schema:Offer ;
rdfs:range oplofr:OfferGroup ;
owl:inverseOf oplofr:hasMember .
oplofr:hasBuyAction a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasBuyAction"^^xsd:string ;
skos:altLabel "Offer Buy Action"^^xsd:string ;
rdfs:comment """Associates a Buy Action with an Offer."""@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> ;
rdfs:domain gr:Offering , schema:Offer;
rdfs:range schema:Action ;
owl:inverseOf oplofr:isBuyActionOf .
oplofr:isBuyActionOf a owl:ObjectProperty, rdf:Property ;
rdfs:label "isBuyActionOf"^^xsd:string ;
skos:altLabel "Is Buy Action of"^^xsd:string ;
rdfs:comment """Associates an Offer with a Buy Action."""@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> ;
rdfs:domain schema:Action ;
rdfs:range gr:Offering , schema:Offer ;
owl:inverseOf oplofr:hasBuyAction .
oplofr:hasMember a owl:ObjectProperty, rdf:Property ;
rdfs:label "hasMember"^^xsd:string ;
skos:altLabel "Member"^^xsd:string ;
rdfs:comment """Associates a Group with an Offer."""@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> ;
rdfs:domain oplofr:OfferGroup ;
rdfs:range schema:Offer ;
owl:inverseOf oplofr:isMemberOf .
oplofr:hasMaxPurchaseCount
a owl:DatatypeProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> ;
rdfs:label "maxPurchaseCount"^^xsd:string ;
skos:altLabel "Max Purchase Count"^^xsd:string ;
rdfs:comment "The maximum number of times a single customer is allowed to purchase one offer. This is typically used for free offers."@en ;
rdfs:domain schema:Offer ;
rdfs:range xsd:integer .
# <-------------- Currency --------------> #
# <-------------- Currency Classes --------------> #
oplofr:Currency a owl:Class ;
rdfs:label "Currency"^^xsd:string ;
rdfs:comment """Currency Class for handling composite of Currency, Country Codes, Currency Symbols."""@en ;
owl:equivalentClass <http://sw.opencyc.org/concept/Mx4rvVjMQpwpEbGdrcN5Y29ycA> ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
# <-------------- Currency Properties --------------> #
oplofr:hasCurrency a owl:ObjectProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> ;
rdfs:label "hasCurrency"^^xsd:string ;
skos:altLabel "Currency"^^xsd:string ;
rdfs:domain gr:UnitPriceSpecification ;
rdfs:range oplofr:Currency .
# e.g., $
oplofr:currencySymbol a owl:DatatypeProperty , rdf:Property ;
rdfs:label "currencySymbol"^^xsd:string ;
skos:altLabel "Currency Symbol"^^xsd:string ;
rdfs:comment """This relation has a currency symbol character as its object"""@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> ;
rdfs:domain oplofr:Currency ;
rdfs:range xsd:string .
oplofr:hasISOCode a owl:ObjectProperty , rdf:Property ;
rdfs:label "ISO Code"^^xsd:string ;
skos:altLabel "hasISOCode"^^xsd:string ;
rdfs:comment """The object of this relation is an ISO country code"""@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> ;
rdfs:domain oplofr:Currency ;
rdfs:range xsd:string .
# <-------------- Subscription Price Properties --------------> #
oplofr:interval a owl:ObjectProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> ;
rdfs:label "interval"^^xsd:string ;
skos:altLabel "Billing interval unit"^^xsd:string ;
rdfs:comment "Billing interval unit (e.g. day, month, year)"^^xsd:string ;
rdfs:domain oplofr:SubscriptionPriceSpecification ;
rdfs:range xsd:string .
oplofr:intervalCount a owl:ObjectProperty, rdf:Property ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> ;
rdfs:label "interval count"^^xsd:string ;
skos:altLabel "Billing interval count"^^xsd:string ;
rdfs:comment "Billing interval count (e.g. if billing is every 2 months then the interval count is 2)"^^xsd:string ;
rdfs:domain oplofr:SubscriptionPriceSpecification ;
rdfs:range xsd:integer .
# <-------------- Offers Prices --------------> #
# <-------------- Offers Prices Classes --------------> #
oplofr:UDAPricing a owl:Class ;
rdfs:subClassOf gr:UnitPriceSpecification ;
rdfs:label "UDA Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:SingleTierPricing a owl:Class ;
rdfs:subClassOf oplofr:UDAPricing ;
rdfs:label "UDA Single Tier Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:MultiTierPricing a owl:Class ;
rdfs:subClassOf oplofr:UDAPricing ;
rdfs:label "UDA Multi Tier Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:SpecialUnitPriceSpecification a owl:Class ;
rdfs:subClassOf gr:UnitPriceSpecification ;
rdfs:label "Special Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:UDASTSpecialUnitPriceSpecification a owl:Class ;
rdfs:subClassOf oplofr:SpecialUnitPriceSpecification ;
rdfs:label "UDA Single-Tier Special Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:UDAMTSpecialUnitPriceSpecification a owl:Class ;
rdfs:subClassOf oplofr:SpecialUnitPriceSpecification ;
rdfs:label "UDA Multi-Tier Special Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:RetailUnitPriceSpecification a owl:Class ;
rdfs:subClassOf gr:UnitPriceSpecification ;
rdfs:label "Retail Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:UDASTRetailUnitPriceSpecification a owl:Class ;
rdfs:subClassOf oplofr:RetailUnitPriceSpecification ;
rdfs:label "UDA Single-Tier Retail Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:UDAMTRetailUnitPriceSpecification a owl:Class ;
rdfs:subClassOf oplofr:RetailUnitPriceSpecification ;
rdfs:label "UDA Multi-Tier Retail Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:VirtuosoPricing a owl:Class ;
rdfs:subClassOf gr:UnitPriceSpecification ;
rdfs:label "Virtuoso Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:VirtuosoRetailUnitPriceSpecification a owl:Class ;
rdfs:subClassOf oplofr:RetailUnitPriceSpecification ;
rdfs:label "Virtuoso Retail Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:VirtuosoSpecialUnitPriceSpecification a owl:Class ;
rdfs:subClassOf oplofr:SpecialUnitPriceSpecification ;
rdfs:label "Virtuoso Special Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso6Pricing a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoPricing ;
rdfs:label "Virtuoso 6 Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso6RetailUnitPriceSpecification a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoRetailUnitPriceSpecification ;
rdfs:label "Virtuoso 6 Retail Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso6SpecialUnitPriceSpecification a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoSpecialUnitPriceSpecification ;
rdfs:label "Virtuoso 6 Special Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso7Pricing a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoPricing ;
rdfs:label "Virtuoso 7 Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso7RetailUnitPriceSpecification a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoRetailUnitPriceSpecification ;
rdfs:label "Virtuoso 7 Retail Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso7SpecialUnitPriceSpecification a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoSpecialUnitPriceSpecification ;
rdfs:label "Virtuoso 7 Special Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:SubscriptionPriceSpecification a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoRetailUnitPriceSpecification ;
rdfs:label "Supbscription Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:retailPriceSpecificationOf
a rdf:Property, owl:ObjectProperty ;
skos:altLabel "Retail Price Specification Of"^^xsd:string ;
rdfs:label "retailPriceSpecificationOf"^^xsd:string ;
rdfs:comment """Relation that associates a special price with its retail price counterpart. This is typically used for situations where retail and special pricing need to be placed side by side for easy comparison. """@en ;
owl:inverseOf oplofr:hasRetailPriceSpecification ;
rdfs:domain gr:UnitPriceSpecification ;
rdfs:range gr:UnitPriceSpecification .
oplofr:hasRetailPriceSpecification
a rdf:Property, owl:ObjectProperty ;
rdfs:label "hasRetailPriceSpecification"^^xsd:string ;
skos:altLabel "Retail Price Specification"^^xsd:string ;
rdfs:comment """Relation that associates a retail price with its special price counterpart. This is typically used for situations where retail and special pricing need to be placed side by side for easy comparison. """@en ;
owl:inverseOf oplofr:retailPriceSpecificationOf ;
rdfs:range gr:UnitPriceSpecification ;
rdfs:domain gr:UnitPriceSpecification .
# <-------------- Bundle Offers --------------> #
oplofr:BundleOffer a owl:Class ;
rdfs:subClassOf schema:Offer, schema:AggregateOffer;
rdfs:label "Bundle Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:BundleOfferSingleTier a owl:Class ;
rdfs:subClassOf oplofr:BundleOffer;
rdfs:label "UDA (Single-Tier Edition) Bundle Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:BundleOfferSingleTierLite a owl:Class ;
rdfs:subClassOf oplofr:BundleOffer;
rdfs:label "UDA (Single-Tier Lite Edition) Bundle Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:BundleOfferSingleTierExpress a owl:Class ;
rdfs:subClassOf oplofr:BundleOffer;
rdfs:label "UDA (Single-Tier Express Edition) Bundle Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:BundleOfferMultiTier a owl:Class ;
rdfs:subClassOf oplofr:BundleOffer;
rdfs:label "UDA (Multi-Tier Edition) Bundle Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso8Offer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoOffer ;
rdfs:label "Virtuoso 8 Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso8SpecialOffer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoSpecialOffer ;
rdfs:comment "Virtuoso 8 Special Offer which contains two price specifications -- the Retail and Sale prices"@en ;
rdfs:label "Virtuoso 8 Special Offer"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso8ClientAccessOffer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoClientAccessOffer ;
rdfs:label "Virtuoso 8 Client Access Offer"^^xsd:string ;
rdfs:comment "Virtuoso 8 Client Access Offer which contains only one price specification -- the Retail price"@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso8SubscriptionOffer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoSubscriptionOffer ;
rdfs:label "Virtuoso 8 Subscription Offer"^^xsd:string ;
rdfs:comment "Virtuoso 8 Subscription Offer"@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso8BasicOffer a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoBasicOffer ;
rdfs:label "Virtuoso 8 Basic Offer"^^xsd:string ;
rdfs:comment "Virtuoso 8 Basic Offer which contains only one price specification -- the Retail price"@en ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso8Pricing a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoPricing ;
rdfs:label "Virtuoso 8 Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso8RetailUnitPriceSpecification a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoRetailUnitPriceSpecification ;
rdfs:label "Virtuoso 8 Retail Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .
oplofr:Virtuoso8SpecialUnitPriceSpecification a owl:Class ;
rdfs:subClassOf oplofr:VirtuosoSpecialUnitPriceSpecification ;
rdfs:label "Virtuoso 8 Special Unit Price Specification"^^xsd:string ;
rdfs:isDefinedBy <http://www.openlinksw.com/ontology/offers#> .