-
Notifications
You must be signed in to change notification settings - Fork 1
/
tosl.html
1864 lines (1791 loc) · 44.4 KB
/
tosl.html
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
<!-- respecter
Copyright 2022 - Swiss Data Science Center (SDSC)
A partnership between École Polytechnique Fédérale de Lausanne (EPFL) and
Eidgenössische Technische Hochschule Zürich (ETHZ).
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Terms of Service Language Ontology</title>
<link rel="icon" href="https://raw.githubusercontent.com/isa-group/tosl/refs/heads/main/img/tosl.svg" />
<script src="https://www.w3.org/Tools/respec/respec-w3c" class="remove" defer></script>
<script class="remove">
// All config options at https://respec.org/docs/
var respecConfig = {
publishDate: "2024-12-19",
modificationDate: "2024-12-26",
group: "ISA-Group",
github: "https://github.com/isa-group/tosl",
shortName: "tosl",
authors: [
{
name: "Elena Molino Peña",
url: "https://github.com/elenamolino"
},
{
name: "José María Cruz",
url: "https://github.com/cruzlorite"
},
{
name: "José María García",
url: "https://github.com/josemgarcia"
},
{
name: "Antonio Ruiz Cortés",
url: "https://github.com/antonioruizcortes"
},
],
logos: [
{
src: "https://raw.githubusercontent.com/isa-group/tosl/refs/heads/main/img/tosl_logo.svg",
url: "https://isa-group.github.io/tosl/",
alt: "TOSL Logo",
id: "tosl-logo",
height: 96,
width: 96
},
],
otherLinks: [
{
key: "Download Serialization",
data: [
{
value: 'TOSL ttl',
href: "https://raw.githubusercontent.com/isa-group/tosl/refs/heads/main/tosl.ttl",
}
],
},
{
key: "License",
data: [
{
value: "license",
href: "https://www.apache.org/licenses/LICENSE-2.0.txt",
}
],
},
],
};
</script>
</head>
<body>
<section id="abstract">
<p>This document presents an ontology designed to represent the contractual terms of Software as a Service (SaaS)
Terms of Service (ToS) using the Open Digital Rights Language (ODRL). The ontology supports the formal
representation of deontic modalities, enabling the precise definition of terms related to arbitration, applicable
law, content removal, liability and modification/termination clauses. By leveraging ODRL, it ensures structured
semantics for clear and precise interpretations of contractual obligations, permissions and prohibitions within
SaaS agreements.</p>
</section>
<section class="informative">
<h2>Introduction</h2>
<p><strong>Abusive services</strong> are characterised by the inclusion of <strong>terms in their Customer
Agreements (CAs)</strong>, resulting in a substantial imbalance between the rights and obligations of the
contracting parties, to the detriment of consumers. Legal frameworks such as the EU Directive on Unfair Contract
Terms (UCTD) seek to protect consumers from the adverse effects of unilaterally drafted contracts imposed by
service providers. However, identifying unfair terms remains a challenging task, requiring meticulous legalese
analysis. This process is often tedious, time-consuming, and error-prone, resulting in a lack of awareness among
consumers about the potential risks associated with accepting a service provider’s terms of service.</p>
<p>The <strong>ODLR Profile for Terms of Service Language (TOSL)</strong> aims to address the complexities of CAs by
providing a formal mechanism for structuring and organising
the set of responsibilities described in the ToS, in order to ultimately perform analysis operations on the
structured knowledge. Specifically, TOSL extends the ODRL by incorporating the representation of
<strong>liabilities</strong>, their
<strong>limitations</strong>, and <strong>dispute resolution</strong> mechanisms, concepts that are difficult to
represent using the existing ODRL
framework. Additionally, it introduces new terms in the base vocabulary, as well as relationships and entities
specific to this domain to represent the terms more accurately. The expanded terminology supports responses to the
defined CQs, which partially ensures transparency and fairness, contributing to the creation of more equitable and
understandable ToS, and mitigating operational risks.
</p>
<table>
<caption>Key Competency Questions and Domain Concepts</caption>
<thead>
<tr>
<th>Competency Questions</th>
<th>Domain Concepts</th>
</tr>
</thead>
<tbody>
<tr>
<td><em>A</em>. Is arbitration mandatory before taking any court action?</td>
<td>Arbitration, Litigation, Dispute</td>
</tr>
<tr>
<td><em>LAW</em>. Is the governing law fixed and different from the consumer's country of residence?</td>
<td>Law, Consumer Country</td>
</tr>
<tr>
<td><em>CR</em>. Can the service provider remove the consumer's content?</td>
<td>Remove, Consumer Content</td>
</tr>
<tr>
<td><em>USE</em>. In what ways does the consumer provide consent to the terms of a contract?</td>
<td>Consent, Implicit, Explicit</td>
</tr>
<tr>
<td><em>J</em>. Does the jurisdiction require dispute resolution outside the consumer's residence?</td>
<td>Jurisdiction, Consumer Courts, Dispute Resolution</td>
</tr>
<tr>
<td><em>LTD</em>. Does the contract state that the provider is liable for any damages or losses?</td>
<td>Liability, Any Damages, Limit</td>
</tr>
<tr>
<td><em>CH</em>. Does the contract require the provider to give notice before making changes?</td>
<td>Change, Prior Notice</td>
</tr>
<tr>
<td><em>TER</em>. Can the provider terminate the contract unilaterally?</td>
<td>Terminate, Justification</td>
</tr>
</tbody>
</table>
<h3>Profile diagram</h3>
<p>The figure below illustrates the concepts defined by the ODRL Profile for Terms of Service. These concepts
facilitate the modeling of statements outlined in cloud provider agreements and enable the evaluation of the
previously formulated questions to identify potentially abusive contractual terms.</p>
<img src="https://raw.githubusercontent.com/isa-group/tosl/refs/heads/main/img/tosl_model.svg" width="100%"
alt="tosl concepts" />
</section>
<section>
<h2>Profile specification</h2>
<p>The TOSL profile focuses on specifying Terms of Service (ToS) terms by representing obligations, rights,
prohibitions, limits of responsibilities for the parties, and conflict resolution aspects, enabling operations
such as identifying potentially unfair terms. New objects that have been added, as well as extensions to the core
ODRL vocabulary, are defined below.</p>
<!-- <h3 id="">Policy</h3>
<h3 id="">Duty</h3>
<h3 id="">Assets</h3>
<h3 id="">Actions</h3>
<h3 id="">Constraints</h3> -->
<h3 id="">Dispute Resolution</h3>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>Dispute Resolution</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>Employed to specify the mechanisms for resolving disputes among the parties involved in the agreement</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/DisputeResolution">tosl:DisputeResolution</a></p>
</td>
</tr>
<tr>
<td>
<p>Sub-classes</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/Arbitration">tosl:Arbitration</a>,
<a href="https://w3id.org/tosl/Litigation">tosl:Litigation</a>
</p>
</td>
</tr>
<tr>
<td>
<p>Property</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/takesPlaceIn">tosl:takesPlaceIn</a>,
<a href="https://w3id.org/tosl/governedBy">tosl:governedBy</a>
</p>
</td>
</tr>
</table>
<h4 id="">Governed By</h4>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>Governed By</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>Establishes the connection to the specific legal framework that governs the agreement</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/governedBy">tosl:governedBy</a></p>
</td>
</tr>
<tr>
<td>
<p>Domain</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/DisputeResolution">tosl:DisputeResolution</a></p>
</td>
</tr>
<tr>
<td>
<p>Range</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/Law">tosl:Law</a></p>
</td>
</tr>
</table>
<h4 id="">Takes Place In</h4>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>Takes Place In</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>This term describes the relationship between Dispute Resolution and Jurisdiction, specifying the location
where disputes are to be resolved</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/takesPlaceIn">tosl:takesPlaceIn</a></p>
</td>
</tr>
<tr>
<td>
<p>Domain</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/DisputeResolution">tosl:DisputeResolution</a></p>
</td>
</tr>
<tr>
<td>
<p>Range</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/Jurisdiction">tosl:Jurisdiction</a></p>
</td>
</tr>
</table>
<h4 id="">On Dispute</h4>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>On Dispute</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>Represents the relationship between a Policy and its associated Dispute Resolution mechanism, specifying
how, where, and under which law disputes arising under the Policy will be resolved</p>
</td>
</tr>
<tr>
<td>
<p>Property</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/onDispute">tosl:onDispute</a></p>
</td>
</tr>
<tr>
<td>
<p>Domain</p>
</td>
<td>
<p><a href="http://www.w3.org/ns/odrl/2/Policy">odrl:Policy</a></p>
</td>
</tr>
<tr>
<td>
<p>Range</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/DisputeResolution">tosl:DisputeResolution</a></p>
</td>
</tr>
</table>
<h4 id="">Has Condition</h4>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>Has Condition</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>This relationship enables the specification of particular restrictions that apply to the dispute</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/condition">tosl:condition</a></p>
</td>
</tr>
<tr>
<td>
<p>Domain</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/DisputeResolution">tosl:DisputeResolution</a></p>
</td>
</tr>
<tr>
<td>
<p>Range</p>
</td>
<td>
<p><a href="http://www.w3.org/ns/odrl/2/Constraint">odrl:Constraint</a></p>
</td>
</tr>
</table>
<h3 id="">Arbitration</h3>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>Arbitration</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>Arbitration is a process for resolving disputes without recourse to conventional judicial systems,
typically managed by an arbitrator</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/Arbitration">tosl:Arbitration</a></p>
</td>
</tr>
<tr>
<td>
<p>Property</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/requires">tosl:requires</a></p>
</td>
</tr>
</table>
<h3 id="">Litigation</h3>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>Litigation</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>Litigation is a legal process in which the provider or customer, acting as the plaintiff, initiates
proceedings against the other party, called the defendant, before a civil court in a settlement dispute</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/Litigation">tosl:Litigation</a></p>
</td>
</tr>
<tr>
<td>
<p>Property</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/requires">tosl:requires</a></p>
</td>
</tr>
</table>
<h4 id="">Requires</h4>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>Requires</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>This relationship specifies that all disputes must be resolved through arbitration</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/requires">tosl:requires</a></p>
</td>
</tr>
<tr>
<td>
<p>Domain</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/Litigation">tosl:Litigation</a></p>
</td>
</tr>
<tr>
<td>
<p>Range</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/Arbitration">tosl:Arbitration</a></p>
</td>
</tr>
</table>
<h3 id="">Jurisdiction</h3>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>Jurisdiction</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>Jurisdiction refers to the specific location or legal authority where a dispute must be resolved</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/Jurisdiction">tosl:Jurisdiction</a></p>
</td>
</tr>
<tr>
<td>
<p>Property</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/takesPlaceIn">tosl:takesPlaceIn</a></p>
</td>
</tr>
</table>
<h3 id="">Law</h3>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>Law</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>Law refers to the specific statutes and regulations that govern an agreement and are applicable in
resolving any disputes arising from it</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/Law">tosl:Law</a></p>
</td>
</tr>
<tr>
<td>
<p>Property</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/governedBy">tosl:governedBy</a></p>
</td>
</tr>
</table>
<h4 id="">Consumer Place Law</h4>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>Consumer Place Law</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>This provision states that the law governing the agreement is that of the consumer's country or the law
that affects the consumer</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/consumerPlaceLaw">tosl:consumerPlaceLaw</a></p>
</td>
</tr>
</table>
<h4 id="">California Law</h4>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>California Law</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>This instance denotes that the governing law applicable to the agreement is that of California</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/californiaLaw">tosl:californiaLaw</a></p>
</td>
</tr>
</table>
<h4 id="">European Law</h4>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>European Law</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>this stipulates that the law regulating the agreement is European law</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/europeanLaw">tosl:europeanLaw</a></p>
</td>
</tr>
</table>
<h3 id="">Liability</h3>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>Liability</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>Liability refers to the specific provisions that define and restrict the extent to which each party in the
agreement can be held accountable for damages or losses</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/Liability">tosl:Liability</a></p>
</td>
</tr>
<tr>
<td>
<p>Property</p>
</td>
<td>
<p> <a href="https://w3id.org/tosl/limitationOfLiability">tosl:limitationOfLiability</a>,
<a href="https://w3id.org/tosl/liability">tosl:liability</a>,
<a href="https://w3id.org/tosl/liableParty">tosl:liableParty</a>,
<a href="https://w3id.org/tosl/limitation">tosl:limitation</a>
</p>
</td>
</tr>
</table>
<h4 id="">With Liability</h4>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>With Liability</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>Establishes the relationship between a rule, policy or asset and the applicable liabilities, describing the
duties or obligations to be assumed in a specific context</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/liability">tosl:liability</a></p>
</td>
</tr>
<tr>
<td>
<p>Domain</p>
</td>
<td>
<p><a href="http://www.w3.org/ns/odrl/2/Policy">odrl:Policy</a>,
<a href="http://www.w3.org/ns/odrl/2/Rule">odrl:Rule</a>,
<a href="http://www.w3.org/ns/odrl/2/Asset">odrl:Asset</a>
</p>
</td>
</tr>
<tr>
<td>
<p>Range</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/Liability">tosl:Liability</a></p>
</td>
</tr>
</table>
<h4 id="">Liable Party</h4>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>Liable Party</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>This term establishes the connection between liability and a party to whom they apply</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/liableParty">tosl:liableParty</a></p>
</td>
</tr>
<tr>
<td>
<p>Domain</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/Liability">tosl:Liability</a></p>
</td>
</tr>
<tr>
<td>
<p>Range</p>
</td>
<td>
<p><a href="http://www.w3.org/ns/odrl/2/Party">odrl:Party</a></p>
</td>
</tr>
</table>
<h4 id="">Has Limitation</h4>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>Has Limitation</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>Defines a relationship that allows specifying particular restrictions or conditions related to the
limitation of liabilities of a party</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/limitation">tosl:limitation</a></p>
</td>
</tr>
<tr>
<td>
<p>Domain</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/Liability">tosl:Liability</a></p>
</td>
</tr>
<tr>
<td>
<p>Range</p>
</td>
<td>
<p><a href="http://www.w3.org/ns/odrl/2/Constraint">odrl:Constraint</a></p>
</td>
</tr>
</tr>
</table>
<h4 id="">With Limitation Of Liability</h4>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>With Limitation Of Liability</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>Defines the relationship that links a rule, policy or asset to the limitations of liability applicable to
one or more parties, specifying the scope and restrictions in cases of damages or breaches</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/limitationOfLiability">tosl:limitationOfLiability</a></p>
</td>
</tr>
<tr>
<td>
<p>Domain</p>
</td>
<td>
<p><a href="http://www.w3.org/ns/odrl/2/Policy">odrl:Policy</a>,
<a href="http://www.w3.org/ns/odrl/2/Rule">odrl:Rule</a>,
<a href="http://www.w3.org/ns/odrl/2/Asset">odrl:Asset</a>
</p>
</td>
</tr>
<tr>
<td>
<p>Range</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/Liability">tosl:Liability</a></p>
</td>
</tr>
</table>
<h4 id="">Any Liability</h4>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>Any Liability</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>This liability provision specifies that the designated party may or may not be held liable for damages
caused by the other party.</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/anyLiability">tosl:anyLiability</a></p>
</td>
</tr>
<tr>
<td>
<p>Class</p>
</td>
<td>
<p></p>
</td>
</tr>
</table>
<h4 id="">Physical Injuries</h4>
<table class="def">
<tr>
<td>
<p>Label</p>
</td>
<td>
<p>Physical Injuries</p>
</td>
</tr>
<tr>
<td>
<p>Definition</p>
</td>
<td>
<p>This provision outlines the liability of the party in cases of physical damages caused to the other party
</p>
</td>
</tr>
<tr>
<td>
<p>Term</p>
</td>
<td>
<p><a href="https://w3id.org/tosl/physicalInjuries">tosl:physicalInjuries</a></p>
</td>
</tr>
<tr>
<td>
<p>Class</p>
</td>
<td>
<p></p>
</td>
</tr>
</table>
<h4 id="">Harm Caused By Malware</h4>
<table class="def">
<tr>