forked from spdx/spdx-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSPDX-2.2-ontology.html
3399 lines (3399 loc) · 299 KB
/
SPDX-2.2-ontology.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
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>SPDX 2.2</title>
<style>
dl{background:#FFF;width:100%;border:none;margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0;}
body{font-family:sans-serif;color:#000;background:#FFF;background-position:top left;background-attachment:fixed;background-repeat:no-repeat;text-align:justify;margin:0;padding:2em 1em 2em 70px;}
:link{color:#00C;background:transparent;}
:visited{color:#609;background:transparent;}
a:active{color:#C00;background:transparent;}
th,td{font-family:sans-serif;}
h1,h2,h3{text-align:left;color:#005A9C;background:#FFF;}
h1{font:170% sans-serif;line-height:110%;}
h2{font:140% sans-serif;margin-top:40px;}
h3{font:120% sans-serif;margin-top:3px;padding-bottom:5px;border-bottom:1px solid navy;}
div.head{margin-bottom:1em;}
div.head h1{margin-top:2em;clear:both;}
dt{font-weight:700;margin-top:5px;}
ul.toc,ol.toc{list-style:none;}
.hlist{border:1px solid navy;background-color:#F4FFFF;padding:5px;}
.hlist li{display:inline-table;list-style-type:none;padding-right:20px;}
.entity{border:1px solid navy;margin:5px 0;padding:5px;}
.type-c{cursor:help;color:orange;}
.type-op{cursor:help;color:navy;}
.type-dp{cursor:help;color:green;}
.type-ap{cursor:help;color:maroon;}
.type-ni{cursor:help;color:#A52A2A;}
.logic{color:purple;font-weight:700;}
.dotted{border-bottom:1px dotted gray;}
.description{border-top:1px dashed gray;border-bottom:1px dashed gray;background-color:#f2f3f4;margin-top:5px;padding-bottom:5px;}
.description dl{background-color:#f2f3f4;}
.description ul{padding-left:12px;margin-top:0;}
.backlink{font-size:10pt;text-align:right;float:right;color:#000;border:1px dotted navy;background-color:#F4FFFF;padding:2px;}
.endnote{margin-top:40px;border-top:1px solid gray;padding-top:10px;text-align:center;color:gray;font-size:70%;}
.literal{color:green;font-style:italic;}
.name,code{font-family:monospace;}
div,dt,dd{margin-top:0;margin-bottom:0;}
.xml{color:red;}
@media screen { a[href]:hover{background:#ffa;} }
@media aural { h1,h2,h3{stress:20;richness:90;} dt{pause-before:20%;} }
</style>
</head>
<body>
<div class="head">
<h1>SPDX 2.2</h1>
<dl>
<dt>IRI:</dt>
<dd>http://spdx.org/rdf/terms</dd>
<dt>Version IRI:</dt>
<dd>http://spdx.org/rdf/terms/2.2</dd>
</dl>
<dl>
<dt>Current version:</dt>
<dd>2.2</dd>
</dl>
<dl>
<dt>Other visualisation:</dt>
<dd><a href="https://raw.githubusercontent.com/spdx/spdx-spec/updaterdfschema/ontology/spdx-ontology.owl.xml">Ontology source</a></dd>
</dl>
</div>
<hr>
<h2>Abstract</h2>
<p>This specification describes the SPDX® language, defined as a dictionary of named properties and classes using W3C's RDF Technology.</p>
<p>SPDX® is a designed to allow the exchange of data about software packages. This information includes general information about the package, licensing information about the package as a whole, a manifest of files contained in the package and licensing information related to the contained files.</p>
<p>Known issues:</p>
<div id="toc">
<h2>Table of Content</h2>
<ol>
<li><a href="#classes">Classes</a></li>
<li><a href="#objectproperties">Object Properties</a></li>
<li><a href="#dataproperties">Data Properties</a></li>
<li><a href="#namedindividuals">Named Individuals</a></li>
<li><a href="#annotationproperties">Annotation Properties</a></li>
<li><a href="#generalaxioms">General Axioms</a></li>
<li><a href="#namespacedeclarations">Namespace Declarations</a></li>
</ol>
</div>
<div id="classes">
<h2>Classes</h2>
<ul class="hlist">
<li><a href="#d4e1840" title="http://spdx.org/rdf/terms#Annotation"><span>annotation</span></a></li>
<li><a href="#d4e1905" title="http://spdx.org/rdf/terms#AnnotationType"><span>annotation type</span></a></li>
<li><a href="#d4e1916" title="http://spdx.org/rdf/terms#AnyLicenseInfo"><span>any license info</span></a></li>
<li><a href="#d4e3511" title="http://www.w3.org/2009/pointers#ByteOffsetPointer"><span>byte offset pointer</span></a></li>
<li><a href="#d4e1930" title="http://spdx.org/rdf/terms#Checksum"><span>checksum</span></a></li>
<li><a href="#d4e1968" title="http://spdx.org/rdf/terms#ChecksumAlgorithm"><span>checksum algorithm</span></a></li>
<li><a href="#d4e3534" title="http://www.w3.org/2009/pointers#CompoundPointer"><span>compound pointer</span></a></li>
<li><a href="#d4e1979" title="http://spdx.org/rdf/terms#ConjunctiveLicenseSet"><span>conjunctive license set</span></a></li>
<li><a href="#d4e2007" title="http://spdx.org/rdf/terms#CreationInfo"><span>creation info</span></a></li>
<li><a href="#d4e2072" title="http://spdx.org/rdf/terms#DisjunctiveLicenseSet"><span>disjunctive license set</span></a></li>
<li><a href="#d4e2100" title="http://spdx.org/rdf/terms#ExternalDocumentRef"><span>external document ref</span></a></li>
<li><a href="#d4e2150" title="http://spdx.org/rdf/terms#ExternalRef"><span>external ref</span></a></li>
<li><a href="#d4e2215" title="http://spdx.org/rdf/terms#ExtractedLicensingInfo"><span>extracted licensing info</span></a></li>
<li><a href="#d4e2241" title="http://spdx.org/rdf/terms#File"><span>file</span></a></li>
<li><a href="#d4e2362" title="http://spdx.org/rdf/terms#FileType"><span>file type</span></a></li>
<li><a href="#d4e2374" title="http://spdx.org/rdf/terms#License"><span>license</span></a></li>
<li><a href="#d4e2479" title="http://spdx.org/rdf/terms#LicenseException"><span>license exception</span></a></li>
<li><a href="#d4e3545" title="http://www.w3.org/2009/pointers#LineCharPointer"><span>line char pointer</span></a></li>
<li><a href="#d4e2569" title="http://spdx.org/rdf/terms#ListedLicense"><span>listed license</span></a></li>
<li><a href="#d4e3568" title="http://www.w3.org/2009/pointers#OffsetPointer"><span>offset pointer</span></a></li>
<li><a href="#d4e2596" title="http://spdx.org/rdf/terms#OrLaterOperator"><span>or later operator</span></a></li>
<li><a href="#d4e2622" title="http://spdx.org/rdf/terms#Package"><span>package</span></a></li>
<li><a href="#d4e2853" title="http://spdx.org/rdf/terms#PackageVerificationCode"><span>package verification code</span></a></li>
<li><a href="#d4e3578" title="http://www.w3.org/2009/pointers#Pointer"><span>pointer</span></a></li>
<li><a href="#d4e2891" title="http://spdx.org/rdf/terms#ReferenceCategory"><span>reference category</span></a></li>
<li><a href="#d4e2902" title="http://spdx.org/rdf/terms#ReferenceType"><span>reference type</span></a></li>
<li><a href="#d4e2952" title="http://spdx.org/rdf/terms#Relationship"><span>relationship</span></a></li>
<li><a href="#d4e3003" title="http://spdx.org/rdf/terms#RelationshipType"><span>relationship type</span></a></li>
<li><a href="#d4e3014" title="http://spdx.org/rdf/terms#Review"><span>review</span></a></li>
<li><a href="#d4e3064" title="http://spdx.org/rdf/terms#SimpleLicensingInfo"><span>simple licensing info</span></a></li>
<li><a href="#d4e3587" title="http://www.w3.org/2009/pointers#SinglePointer"><span>single pointer</span></a></li>
<li><a href="#d4e3131" title="http://spdx.org/rdf/terms#Snippet"><span>snippet</span></a></li>
<li><a href="#d4e3184" title="http://spdx.org/rdf/terms#SpdxDocument"><span>spdx document</span></a></li>
<li><a href="#d4e3299" title="http://spdx.org/rdf/terms#SpdxElement"><span>spdx element</span></a></li>
<li><a href="#d4e3364" title="http://spdx.org/rdf/terms#SpdxItem"><span>spdx item</span></a></li>
<li><a href="#d4e3610" title="http://www.w3.org/2009/pointers#StartEndPointer"><span>start end pointer</span></a></li>
<li><a href="#d4e3463" title="http://spdx.org/rdf/terms#WithExceptionOperator"><span>with exception operator</span></a></li>
</ul>
<div id="d4e1840" class="entity">
<a name="http://spdx.org/rdf/terms#Annotation"></a>
<h3>annotation<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#Annotation</p>
<div class="comment">
<p>An Annotation is a comment on an SpdxItem by an agent.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e111" title="http://spdx.org/rdf/terms#annotationType">annotation type</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e1905" title="http://spdx.org/rdf/terms#AnnotationType">annotation type</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1063" title="http://spdx.org/rdf/terms#annotationDate">annotation date</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><a href="#d4e1802" title="http://www.w3.org/2000/01/rdf-schema#comment">comment</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><a href="#d4e1080" title="http://spdx.org/rdf/terms#annotator">annotator</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1063" title="http://spdx.org/rdf/terms#annotationDate">annotation date</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e111" title="http://spdx.org/rdf/terms#annotationType">annotation type</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e1080" title="http://spdx.org/rdf/terms#annotator">annotator</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1194" title="http://spdx.org/rdf/terms#date">date</a><sup title="data property" class="type-dp">dp</sup></dd>
<dt>is in range of</dt>
<dd><a href="#d4e95" title="http://spdx.org/rdf/terms#annotation">annotation</a><sup title="object property" class="type-op">op</sup></dd>
<dt>is disjoint with</dt>
<dd><a href="#d4e2952" title="http://spdx.org/rdf/terms#Relationship">relationship</a><sup title="class" class="type-c">c</sup>, <a href="#d4e3299" title="http://spdx.org/rdf/terms#SpdxElement">spdx element</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
<div id="d4e1905" class="entity">
<a name="http://spdx.org/rdf/terms#AnnotationType"></a>
<h3>annotation type<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#AnnotationType</p>
<div class="comment">
<p>This type describes the type of annotation. Annotations are usually created when someone reviews the file, and if this is the case the annotation type should be REVIEW.</p>
</div>
<dl class="description">
<dt>has members</dt>
<dd><a href="#d4e3653" title="http://spdx.org/rdf/terms#annotationType_other">annotation type other</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3666" title="http://spdx.org/rdf/terms#annotationType_review">annotation type review</a><sup title="named individual" class="type-ni">ni</sup></dd>
</dl>
</div>
<div id="d4e1916" class="entity">
<a name="http://spdx.org/rdf/terms#AnyLicenseInfo"></a>
<h3>any license info<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#AnyLicenseInfo</p>
<dl class="definedBy">
<dt>is defined by</dt>
<dd>https://raw.githubusercontent.com/spdx/spdx-spec/updaterdfschema/ontology/spdx-ontology.owl.xml</dd>
</dl>
<div class="comment">
<p>The AnyLicenseInfo class includes all resources that represent licensing information.</p>
</div>
<dl class="description">
<dt>has sub-classes</dt>
<dd><a href="#d4e1979" title="http://spdx.org/rdf/terms#ConjunctiveLicenseSet">conjunctive license set</a><sup title="class" class="type-c">c</sup>, <a href="#d4e2072" title="http://spdx.org/rdf/terms#DisjunctiveLicenseSet">disjunctive license set</a><sup title="class" class="type-c">c</sup>, <a href="#d4e2596" title="http://spdx.org/rdf/terms#OrLaterOperator">or later operator</a><sup title="class" class="type-c">c</sup>, <a href="#d4e3064" title="http://spdx.org/rdf/terms#SimpleLicensingInfo">simple licensing info</a><sup title="class" class="type-c">c</sup>, <a href="#d4e3463" title="http://spdx.org/rdf/terms#WithExceptionOperator">with exception operator</a><sup title="class" class="type-c">c</sup></dd>
<dt>is in range of</dt>
<dd><a href="#d4e412" title="http://spdx.org/rdf/terms#licenseDeclared">license declared</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e562" title="http://spdx.org/rdf/terms#member">member</a><sup title="object property" class="type-op">op</sup></dd>
</dl>
</div>
<div id="d4e3511" class="entity">
<a name="http://www.w3.org/2009/pointers#ByteOffsetPointer"></a>
<h3>byte offset pointer<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://www.w3.org/2009/pointers#ByteOffsetPointer</p>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e3568" title="http://www.w3.org/2009/pointers#OffsetPointer">offset pointer</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1826" title="http://www.w3.org/2009/pointers#offset">offset</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
</dl>
</div>
<div id="d4e1930" class="entity">
<a name="http://spdx.org/rdf/terms#Checksum"></a>
<h3>checksum<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#Checksum</p>
<div class="comment">
<p>A Checksum is value that allows the contents of a file to be authenticated. Even small changes to the content of the file will change its checksum. This class allows the results of a variety of checksum and cryptographic message digest algorithms to be represented.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e1111" title="http://spdx.org/rdf/terms#checksumValue">checksum value</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><a href="#d4e52" title="http://spdx.org/rdf/terms#algorithm">algorithm</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e1968" title="http://spdx.org/rdf/terms#ChecksumAlgorithm">checksum algorithm</a><sup title="class" class="type-c">c</sup></dd>
<dt>is in domain of</dt>
<dd><a href="#d4e52" title="http://spdx.org/rdf/terms#algorithm">algorithm</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e1111" title="http://spdx.org/rdf/terms#checksumValue">checksum value</a><sup title="data property" class="type-dp">dp</sup></dd>
<dt>is in range of</dt>
<dd><a href="#d4e165" title="http://spdx.org/rdf/terms#checksum">checksum</a><sup title="object property" class="type-op">op</sup></dd>
</dl>
</div>
<div id="d4e1968" class="entity">
<a name="http://spdx.org/rdf/terms#ChecksumAlgorithm"></a>
<h3>checksum algorithm<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#ChecksumAlgorithm</p>
<div class="comment">
<p>Algorighm for Checksums.</p>
</div>
<dl class="description">
<dt>has members</dt>
<dd><a href="#d4e3691" title="http://spdx.org/rdf/terms#checksumAlgorithm_md2">checksum algorithm md2</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3704" title="http://spdx.org/rdf/terms#checksumAlgorithm_md4">checksum algorithm md4</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3717" title="http://spdx.org/rdf/terms#checksumAlgorithm_md5">checksum algorithm md5</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3731" title="http://spdx.org/rdf/terms#checksumAlgorithm_md6">checksum algorithm md6</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3744" title="http://spdx.org/rdf/terms#checksumAlgorithm_sha1">checksum algorithm sha1</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3757" title="http://spdx.org/rdf/terms#checksumAlgorithm_sha224">checksum algorithm sha224</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3771" title="http://spdx.org/rdf/terms#checksumAlgorithm_sha256">checksum algorithm sha256</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3784" title="http://spdx.org/rdf/terms#checksumAlgorithm_sha384">checksum algorithm sha384</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3797" title="http://spdx.org/rdf/terms#checksumAlgorithm_sha512">checksum algorithm sha512</a><sup title="named individual" class="type-ni">ni</sup></dd>
</dl>
</div>
<div id="d4e3534" class="entity">
<a name="http://www.w3.org/2009/pointers#CompoundPointer"></a>
<h3>compound pointer<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://www.w3.org/2009/pointers#CompoundPointer</p>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e3578" title="http://www.w3.org/2009/pointers#Pointer">pointer</a><sup title="class" class="type-c">c</sup></dd>
<dt>has sub-classes</dt>
<dd><a href="#d4e3610" title="http://www.w3.org/2009/pointers#StartEndPointer">start end pointer</a><sup title="class" class="type-c">c</sup></dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1026" title="http://www.w3.org/2009/pointers#endPointer">end pointer</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e1049" title="http://www.w3.org/2009/pointers#startPointer">start pointer</a><sup title="object property" class="type-op">op</sup></dd>
<dt>is in range of</dt>
<dd><a href="#d4e605" title="http://spdx.org/rdf/terms#range">range</a><sup title="object property" class="type-op">op</sup></dd>
</dl>
</div>
<div id="d4e1979" class="entity">
<a name="http://spdx.org/rdf/terms#ConjunctiveLicenseSet"></a>
<h3>conjunctive license set<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#ConjunctiveLicenseSet</p>
<div class="comment">
<p>A ConjunctiveLicenseSet represents a set of licensing information all of which apply.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e1916" title="http://spdx.org/rdf/terms#AnyLicenseInfo">any license info</a><sup title="class" class="type-c">c</sup></dd>
<dd><span class="dotted" title="http://www.w3.org/2000/01/rdf-schema#Container">container</span><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e562" title="http://spdx.org/rdf/terms#member">member</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 2 <a href="#d4e1916" title="http://spdx.org/rdf/terms#AnyLicenseInfo">any license info</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
<div id="d4e2007" class="entity">
<a name="http://spdx.org/rdf/terms#CreationInfo"></a>
<h3>creation info<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#CreationInfo</p>
<div class="comment">
<p>One instance is required for each SPDX file produced. It provides the necessary information for forward and backward compatibility for processing tools.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e1178" title="http://spdx.org/rdf/terms#creator">creator</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">min</span> 1</dd>
<dd><a href="#d4e1802" title="http://www.w3.org/2000/01/rdf-schema#comment">comment</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e1161" title="http://spdx.org/rdf/terms#created">created</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><a href="#d4e1462" title="http://spdx.org/rdf/terms#licenseListVersion">license list version</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1161" title="http://spdx.org/rdf/terms#created">created</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1178" title="http://spdx.org/rdf/terms#creator">creator</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1194" title="http://spdx.org/rdf/terms#date">date</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1462" title="http://spdx.org/rdf/terms#licenseListVersion">license list version</a><sup title="data property" class="type-dp">dp</sup></dd>
<dt>is in range of</dt>
<dd><a href="#d4e192" title="http://spdx.org/rdf/terms#creationInfo">creation info</a><sup title="object property" class="type-op">op</sup></dd>
</dl>
</div>
<div id="d4e2072" class="entity">
<a name="http://spdx.org/rdf/terms#DisjunctiveLicenseSet"></a>
<h3>disjunctive license set<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#DisjunctiveLicenseSet</p>
<div class="comment">
<p>A DisjunctiveLicenseSet represents a set of licensing information where only one license applies at a time. This class implies that the recipient gets to choose one of these licenses they would prefer to use.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e1916" title="http://spdx.org/rdf/terms#AnyLicenseInfo">any license info</a><sup title="class" class="type-c">c</sup></dd>
<dd><span class="dotted" title="http://www.w3.org/2000/01/rdf-schema#Container">container</span><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e562" title="http://spdx.org/rdf/terms#member">member</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 2 <a href="#d4e1916" title="http://spdx.org/rdf/terms#AnyLicenseInfo">any license info</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
<div id="d4e2100" class="entity">
<a name="http://spdx.org/rdf/terms#ExternalDocumentRef"></a>
<h3>external document ref<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#ExternalDocumentRef</p>
<div class="comment">
<p>Information about an external SPDX document reference including the checksum. This allows for verification of the external references.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e1006" title="http://spdx.org/rdf/terms#spdxDocument">spdx document</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e3184" title="http://spdx.org/rdf/terms#SpdxDocument">spdx document</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1272" title="http://spdx.org/rdf/terms#externalDocumentId">external document id</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><a href="#d4e165" title="http://spdx.org/rdf/terms#checksum">checksum</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e1930" title="http://spdx.org/rdf/terms#Checksum">checksum</a><sup title="class" class="type-c">c</sup></dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1272" title="http://spdx.org/rdf/terms#externalDocumentId">external document id</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1006" title="http://spdx.org/rdf/terms#spdxDocument">spdx document</a><sup title="object property" class="type-op">op</sup></dd>
</dl>
</div>
<div id="d4e2150" class="entity">
<a name="http://spdx.org/rdf/terms#ExternalRef"></a>
<h3>external ref<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#ExternalRef</p>
<div class="comment">
<p>An External Reference allows a Package to reference an external source of additional information, metadata, enumerations, asset identifiers, or downloadable content believed to be relevant to the Package.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e1802" title="http://www.w3.org/2000/01/rdf-schema#comment">comment</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e1601" title="http://spdx.org/rdf/terms#referenceLocator">reference locator</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><a href="#d4e621" title="http://spdx.org/rdf/terms#referenceCategory">reference category</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e2891" title="http://spdx.org/rdf/terms#ReferenceCategory">reference category</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e664" title="http://spdx.org/rdf/terms#referenceType">reference type</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e2902" title="http://spdx.org/rdf/terms#ReferenceType">reference type</a><sup title="class" class="type-c">c</sup></dd>
<dt>is in domain of</dt>
<dd><a href="#d4e621" title="http://spdx.org/rdf/terms#referenceCategory">reference category</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e1601" title="http://spdx.org/rdf/terms#referenceLocator">reference locator</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e664" title="http://spdx.org/rdf/terms#referenceType">reference type</a><sup title="object property" class="type-op">op</sup></dd>
<dt>is in range of</dt>
<dd><a href="#d4e263" title="http://spdx.org/rdf/terms#externalRef">external ref</a><sup title="object property" class="type-op">op</sup></dd>
</dl>
</div>
<div id="d4e2215" class="entity">
<a name="http://spdx.org/rdf/terms#ExtractedLicensingInfo"></a>
<h3>extracted licensing info<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#ExtractedLicensingInfo</p>
<div class="comment">
<p>An ExtractedLicensingInfo represents a license or licensing notice that was found in the package. Any license text that is recognized as a license may be represented as a License rather than an ExtractedLicensingInfo.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e3064" title="http://spdx.org/rdf/terms#SimpleLicensingInfo">simple licensing info</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1303" title="http://spdx.org/rdf/terms#extractedText">extracted text</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1303" title="http://spdx.org/rdf/terms#extractedText">extracted text</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e341" title="http://spdx.org/rdf/terms#hasExtractedLicensingInfo">has extracted licensing info</a><sup title="object property" class="type-op">op</sup></dd>
</dl>
</div>
<div id="d4e2241" class="entity">
<a name="http://spdx.org/rdf/terms#File"></a>
<h3>file<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#File</p>
<div class="comment">
<p>A File represents a named sequence of information that is contained in a software package.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e3364" title="http://spdx.org/rdf/terms#SpdxItem">spdx item</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e165" title="http://spdx.org/rdf/terms#checksum">checksum</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 1 <a href="#d4e1930" title="http://spdx.org/rdf/terms#Checksum">checksum</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1510" title="http://spdx.org/rdf/terms#noticeText">notice text</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e1334" title="http://spdx.org/rdf/terms#fileName">file name</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><a href="#d4e278" title="http://spdx.org/rdf/terms#fileDependency">file dependency</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 0 <a href="#d4e2241" title="http://spdx.org/rdf/terms#File">file</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1318" title="http://spdx.org/rdf/terms#fileContributor">file contributor</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">min</span> 0</dd>
<dd><a href="#d4e291" title="http://spdx.org/rdf/terms#fileType">file type</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 0 <a href="#d4e2362" title="http://spdx.org/rdf/terms#FileType">file type</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e147" title="http://spdx.org/rdf/terms#artifactOf">artifact of</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 0 <span class="dotted" title="http://usefulinc.com/ns/doap#Project">project</span><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e481" title="http://spdx.org/rdf/terms#licenseInfoInFile">license info in file</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 1 <a href="#d4e1916" title="http://spdx.org/rdf/terms#AnyLicenseInfo">any license info</a><sup title="class" class="type-c">c</sup></dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1318" title="http://spdx.org/rdf/terms#fileContributor">file contributor</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e278" title="http://spdx.org/rdf/terms#fileDependency">file dependency</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e1334" title="http://spdx.org/rdf/terms#fileName">file name</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e291" title="http://spdx.org/rdf/terms#fileType">file type</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e481" title="http://spdx.org/rdf/terms#licenseInfoInFile">license info in file</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e1510" title="http://spdx.org/rdf/terms#noticeText">notice text</a><sup title="data property" class="type-dp">dp</sup></dd>
<dt>is in range of</dt>
<dd><a href="#d4e278" title="http://spdx.org/rdf/terms#fileDependency">file dependency</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e356" title="http://spdx.org/rdf/terms#hasFile">has file</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e679" title="http://spdx.org/rdf/terms#referencesFile">references file</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e991" title="http://spdx.org/rdf/terms#snippetFromFile">snippet from file</a><sup title="object property" class="type-op">op</sup></dd>
<dt>is disjoint with</dt>
<dd><a href="#d4e3131" title="http://spdx.org/rdf/terms#Snippet">snippet</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
<div id="d4e2362" class="entity">
<a name="http://spdx.org/rdf/terms#FileType"></a>
<h3>file type<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#FileType</p>
<div class="comment">
<p>Type of file.</p>
</div>
<dl class="description">
<dt>has members</dt>
<dd><a href="#d4e3811" title="http://spdx.org/rdf/terms#fileType_application">file type application</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3824" title="http://spdx.org/rdf/terms#fileType_archive">file type archive</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3837" title="http://spdx.org/rdf/terms#fileType_audio">file type audio</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3851" title="http://spdx.org/rdf/terms#fileType_binary">file type binary</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3864" title="http://spdx.org/rdf/terms#fileType_documentation">file type documentation</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3877" title="http://spdx.org/rdf/terms#fileType_image">file type image</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3891" title="http://spdx.org/rdf/terms#fileType_other">file type other</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3904" title="http://spdx.org/rdf/terms#fileType_source">file type source</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3917" title="http://spdx.org/rdf/terms#fileType_spdx">file type spdx</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3931" title="http://spdx.org/rdf/terms#fileType_text">file type text</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3944" title="http://spdx.org/rdf/terms#fileType_video">file type video</a><sup title="named individual" class="type-ni">ni</sup></dd>
</dl>
</div>
<div id="d4e2374" class="entity">
<a name="http://spdx.org/rdf/terms#License"></a>
<h3>license<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#License</p>
<div class="comment">
<p>A License represents a copyright license. The SPDX license list website is annotated with these properties (using RDFa) to allow license data published there to be easily processed. The license list is populated in accordance with the License List fields guidelines. These guidelines are not normative and may change over time. SPDX tooling should not rely on values in the license list conforming to the current guidelines.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e3064" title="http://spdx.org/rdf/terms#SimpleLicensingInfo">simple licensing info</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1376" title="http://spdx.org/rdf/terms#isFsfLibre">is fsf libre</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e1713" title="http://spdx.org/rdf/terms#standardLicenseHeaderTemplate">standard license header template</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e1479" title="http://spdx.org/rdf/terms#licenseText">license text</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><a href="#d4e1366" title="http://spdx.org/rdf/terms#isDeprecatedLicenseId">is deprecated license id</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e1698" title="http://spdx.org/rdf/terms#standardLicenseHeader">standard license header</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e1728" title="http://spdx.org/rdf/terms#standardLicenseTemplate">standard license template</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e1385" title="http://spdx.org/rdf/terms#isOsiApproved">is osi approved</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dt>has sub-classes</dt>
<dd><a href="#d4e2569" title="http://spdx.org/rdf/terms#ListedLicense">listed license</a><sup title="class" class="type-c">c</sup></dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1376" title="http://spdx.org/rdf/terms#isFsfLibre">is fsf libre</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1385" title="http://spdx.org/rdf/terms#isOsiApproved">is osi approved</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1479" title="http://spdx.org/rdf/terms#licenseText">license text</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1698" title="http://spdx.org/rdf/terms#standardLicenseHeader">standard license header</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1728" title="http://spdx.org/rdf/terms#standardLicenseTemplate">standard license template</a><sup title="data property" class="type-dp">dp</sup></dd>
</dl>
</div>
<div id="d4e2479" class="entity">
<a name="http://spdx.org/rdf/terms#LicenseException"></a>
<h3>license exception<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#LicenseException</p>
<div class="comment">
<p>An exception to a license.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e1257" title="http://spdx.org/rdf/terms#example">example</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><span class="dotted" title="http://www.w3.org/2000/01/rdf-schema#seeAlso">see also</span><sup title="data property" class="type-dp">dp</sup> <span class="logic">min</span> 0</dd>
<dd><a href="#d4e1802" title="http://www.w3.org/2000/01/rdf-schema#comment">comment</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><a href="#d4e1431" title="http://spdx.org/rdf/terms#licenseExceptionText">license exception text</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><a href="#d4e1494" title="http://spdx.org/rdf/terms#name">name</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><a href="#d4e1416" title="http://spdx.org/rdf/terms#licenseExceptionId">license exception id</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1257" title="http://spdx.org/rdf/terms#example">example</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1416" title="http://spdx.org/rdf/terms#licenseExceptionId">license exception id</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1431" title="http://spdx.org/rdf/terms#licenseExceptionText">license exception text</a><sup title="data property" class="type-dp">dp</sup></dd>
<dt>is in range of</dt>
<dd><a href="#d4e427" title="http://spdx.org/rdf/terms#licenseException">license exception</a><sup title="object property" class="type-op">op</sup></dd>
</dl>
</div>
<div id="d4e3545" class="entity">
<a name="http://www.w3.org/2009/pointers#LineCharPointer"></a>
<h3>line char pointer<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://www.w3.org/2009/pointers#LineCharPointer</p>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e3568" title="http://www.w3.org/2009/pointers#OffsetPointer">offset pointer</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1814" title="http://www.w3.org/2009/pointers#lineNumber">line number</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1814" title="http://www.w3.org/2009/pointers#lineNumber">line number</a><sup title="data property" class="type-dp">dp</sup></dd>
</dl>
</div>
<div id="d4e2569" class="entity">
<a name="http://spdx.org/rdf/terms#ListedLicense"></a>
<h3>listed license<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#ListedLicense</p>
<div class="comment">
<p>A license which is included in the SPDX License List (<a href="http://spdx.org/licenses">http://spdx.org/licenses</a>).</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e2374" title="http://spdx.org/rdf/terms#License">license</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1366" title="http://spdx.org/rdf/terms#isDeprecatedLicenseId">is deprecated license id</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1366" title="http://spdx.org/rdf/terms#isDeprecatedLicenseId">is deprecated license id</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1713" title="http://spdx.org/rdf/terms#standardLicenseHeaderTemplate">standard license header template</a><sup title="data property" class="type-dp">dp</sup></dd>
</dl>
</div>
<div id="d4e3568" class="entity">
<a name="http://www.w3.org/2009/pointers#OffsetPointer"></a>
<h3>offset pointer<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://www.w3.org/2009/pointers#OffsetPointer</p>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e3587" title="http://www.w3.org/2009/pointers#SinglePointer">single pointer</a><sup title="class" class="type-c">c</sup></dd>
<dt>has sub-classes</dt>
<dd><a href="#d4e3511" title="http://www.w3.org/2009/pointers#ByteOffsetPointer">byte offset pointer</a><sup title="class" class="type-c">c</sup>, <a href="#d4e3545" title="http://www.w3.org/2009/pointers#LineCharPointer">line char pointer</a><sup title="class" class="type-c">c</sup></dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1826" title="http://www.w3.org/2009/pointers#offset">offset</a><sup title="data property" class="type-dp">dp</sup></dd>
</dl>
</div>
<div id="d4e2596" class="entity">
<a name="http://spdx.org/rdf/terms#OrLaterOperator"></a>
<h3>or later operator<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#OrLaterOperator</p>
<div class="comment">
<p>A license with an or later operator indicating this license version or any later version of the license</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e1916" title="http://spdx.org/rdf/terms#AnyLicenseInfo">any license info</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e562" title="http://spdx.org/rdf/terms#member">member</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e3064" title="http://spdx.org/rdf/terms#SimpleLicensingInfo">simple licensing info</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
<div id="d4e2622" class="entity">
<a name="http://spdx.org/rdf/terms#Package"></a>
<h3>package<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#Package</p>
<div class="comment">
<p>A Package represents a collection of software files that are delivered as a single functional component.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e3364" title="http://spdx.org/rdf/terms#SpdxItem">spdx item</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1211" title="http://spdx.org/rdf/terms#description">description</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e1790" title="http://usefulinc.com/ns/doap#homepage">homepage</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e590" title="http://spdx.org/rdf/terms#packageVerificationCode">package verification code</a><sup title="object property" class="type-op">op</sup> <span class="logic">max</span> 1 <a href="#d4e2853" title="http://spdx.org/rdf/terms#PackageVerificationCode">package verification code</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1537" title="http://spdx.org/rdf/terms#packageFileName">package file name</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e165" title="http://spdx.org/rdf/terms#checksum">checksum</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 0 <a href="#d4e1930" title="http://spdx.org/rdf/terms#Checksum">checksum</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e263" title="http://spdx.org/rdf/terms#externalRef">external ref</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 0 <a href="#d4e2150" title="http://spdx.org/rdf/terms#ExternalRef">external ref</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1759" title="http://spdx.org/rdf/terms#supplier">supplier</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e356" title="http://spdx.org/rdf/terms#hasFile">has file</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 0 <a href="#d4e2241" title="http://spdx.org/rdf/terms#File">file</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1525" title="http://spdx.org/rdf/terms#originator">originator</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e1351" title="http://spdx.org/rdf/terms#filesAnalyzed">files analyzed</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e1774" title="http://spdx.org/rdf/terms#versionInfo">version info</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e1242" title="http://spdx.org/rdf/terms#downloadLocation">download location</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><a href="#d4e1670" title="http://spdx.org/rdf/terms#sourceInfo">source info</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e1744" title="http://spdx.org/rdf/terms#summary">summary</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd>(<a href="#d4e412" title="http://spdx.org/rdf/terms#licenseDeclared">license declared</a><sup title="object property" class="type-op">op</sup> <span class="logic">value</span> <a href="#d4e3957" title="http://spdx.org/rdf/terms#noassertion">noassertion</a>) <span class="logic">or</span> (<a href="#d4e412" title="http://spdx.org/rdf/terms#licenseDeclared">license declared</a><sup title="object property" class="type-op">op</sup> <span class="logic">value</span> <a href="#d4e3966" title="http://spdx.org/rdf/terms#none">none</a>) <span class="logic">or</span> (<a href="#d4e412" title="http://spdx.org/rdf/terms#licenseDeclared">license declared</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e1916" title="http://spdx.org/rdf/terms#AnyLicenseInfo">any license info</a><sup title="class" class="type-c">c</sup>)</dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1211" title="http://spdx.org/rdf/terms#description">description</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1242" title="http://spdx.org/rdf/terms#downloadLocation">download location</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e263" title="http://spdx.org/rdf/terms#externalRef">external ref</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e1351" title="http://spdx.org/rdf/terms#filesAnalyzed">files analyzed</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e356" title="http://spdx.org/rdf/terms#hasFile">has file</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e1790" title="http://usefulinc.com/ns/doap#homepage">homepage</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e443" title="http://spdx.org/rdf/terms#licenseInfoFromFiles">license info from files</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e1525" title="http://spdx.org/rdf/terms#originator">originator</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1537" title="http://spdx.org/rdf/terms#packageFileName">package file name</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1553" title="http://spdx.org/rdf/terms#packageName">package name</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e590" title="http://spdx.org/rdf/terms#packageVerificationCode">package verification code</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e1670" title="http://spdx.org/rdf/terms#sourceInfo">source info</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1744" title="http://spdx.org/rdf/terms#summary">summary</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1759" title="http://spdx.org/rdf/terms#supplier">supplier</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1774" title="http://spdx.org/rdf/terms#versionInfo">version info</a><sup title="data property" class="type-dp">dp</sup></dd>
<dt>is in range of</dt>
<dd><a href="#d4e232" title="http://spdx.org/rdf/terms#describesPackage">describes package</a><sup title="object property" class="type-op">op</sup></dd>
</dl>
</div>
<div id="d4e2853" class="entity">
<a name="http://spdx.org/rdf/terms#PackageVerificationCode"></a>
<h3>package verification code<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#PackageVerificationCode</p>
<div class="comment">
<p>A manifest based verification code (the algorithm is defined in section 4.7 of the full specification) of the SPDX Item. This allows consumers of this data and/or database to determine if an SPDX item they have in hand is identical to the SPDX item from which the data was produced. This algorithm works even if the SPDX document is included in the SPDX item.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e1570" title="http://spdx.org/rdf/terms#packageVerificationCodeExcludedFile">package verification code excluded file</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">min</span> 0</dd>
<dd><a href="#d4e1585" title="http://spdx.org/rdf/terms#packageVerificationCodeValue">package verification code value</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1570" title="http://spdx.org/rdf/terms#packageVerificationCodeExcludedFile">package verification code excluded file</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1585" title="http://spdx.org/rdf/terms#packageVerificationCodeValue">package verification code value</a><sup title="data property" class="type-dp">dp</sup></dd>
<dt>is in range of</dt>
<dd><a href="#d4e590" title="http://spdx.org/rdf/terms#packageVerificationCode">package verification code</a><sup title="object property" class="type-op">op</sup></dd>
</dl>
</div>
<div id="d4e3578" class="entity">
<a name="http://www.w3.org/2009/pointers#Pointer"></a>
<h3>pointer<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://www.w3.org/2009/pointers#Pointer</p>
<dl class="description">
<dt>has sub-classes</dt>
<dd><a href="#d4e3534" title="http://www.w3.org/2009/pointers#CompoundPointer">compound pointer</a><sup title="class" class="type-c">c</sup>, <a href="#d4e3587" title="http://www.w3.org/2009/pointers#SinglePointer">single pointer</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
<div id="d4e2891" class="entity">
<a name="http://spdx.org/rdf/terms#ReferenceCategory"></a>
<h3>reference category<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#ReferenceCategory</p>
<div class="comment">
<p>Category used for ExternalRef</p>
</div>
<dl class="description">
<dt>has members</dt>
<dd><a href="#d4e3974" title="http://spdx.org/rdf/terms#referenceCategory_other">reference category other</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3984" title="http://spdx.org/rdf/terms#referenceCategory_packageManager">reference category package manager</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e3995" title="http://spdx.org/rdf/terms#referenceCategory_persistentId">reference category persistent id</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4008" title="http://spdx.org/rdf/terms#referenceCategory_security">reference category security</a><sup title="named individual" class="type-ni">ni</sup></dd>
</dl>
</div>
<div id="d4e2902" class="entity">
<a name="http://spdx.org/rdf/terms#ReferenceType"></a>
<h3>reference type<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#ReferenceType</p>
<div class="comment">
<p>Types used to external reference identifiers.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e1128" title="http://spdx.org/rdf/terms#contextualExample">contextual example</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><a href="#d4e1226" title="http://spdx.org/rdf/terms#documentation">documentation</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><a href="#d4e1288" title="http://spdx.org/rdf/terms#externalReferenceSite">external reference site</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1128" title="http://spdx.org/rdf/terms#contextualExample">contextual example</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1226" title="http://spdx.org/rdf/terms#documentation">documentation</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1288" title="http://spdx.org/rdf/terms#externalReferenceSite">external reference site</a><sup title="data property" class="type-dp">dp</sup></dd>
<dt>is in range of</dt>
<dd><a href="#d4e664" title="http://spdx.org/rdf/terms#referenceType">reference type</a><sup title="object property" class="type-op">op</sup></dd>
</dl>
</div>
<div id="d4e2952" class="entity">
<a name="http://spdx.org/rdf/terms#Relationship"></a>
<h3>relationship<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#Relationship</p>
<div class="comment">
<p>A Relationship represents a relationship between two SpdxElements.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e1802" title="http://www.w3.org/2000/01/rdf-schema#comment">comment</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e698" title="http://spdx.org/rdf/terms#relatedSpdxElement">related spdx element</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e3299" title="http://spdx.org/rdf/terms#SpdxElement">spdx element</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e728" title="http://spdx.org/rdf/terms#relationshipType">relationship type</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e3003" title="http://spdx.org/rdf/terms#RelationshipType">relationship type</a><sup title="class" class="type-c">c</sup></dd>
<dt>is in domain of</dt>
<dd><a href="#d4e698" title="http://spdx.org/rdf/terms#relatedSpdxElement">related spdx element</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e728" title="http://spdx.org/rdf/terms#relationshipType">relationship type</a><sup title="object property" class="type-op">op</sup></dd>
<dt>is in range of</dt>
<dd><a href="#d4e713" title="http://spdx.org/rdf/terms#relationship">relationship</a><sup title="object property" class="type-op">op</sup></dd>
<dt>is disjoint with</dt>
<dd><a href="#d4e1840" title="http://spdx.org/rdf/terms#Annotation">annotation</a><sup title="class" class="type-c">c</sup>, <a href="#d4e3299" title="http://spdx.org/rdf/terms#SpdxElement">spdx element</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
<div id="d4e3003" class="entity">
<a name="http://spdx.org/rdf/terms#RelationshipType"></a>
<h3>relationship type<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#RelationshipType</p>
<div class="comment">
<p>Type of relationship.</p>
</div>
<dl class="description">
<dt>has members</dt>
<dd><a href="#d4e4018" title="http://spdx.org/rdf/terms#relationshipType_amendment">relationship type amendment</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4032" title="http://spdx.org/rdf/terms#relationshipType_ancestorOf">relationship type ancestor of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4045" title="http://spdx.org/rdf/terms#relationshipType_buildDependencyOf">relationship type build dependency of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4058" title="http://spdx.org/rdf/terms#relationshipType_buildToolOf">relationship type build tool of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4072" title="http://spdx.org/rdf/terms#relationshipType_containedBy">relationship type contained by</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4085" title="http://spdx.org/rdf/terms#relationshipType_contains">relationship type contains</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4098" title="http://spdx.org/rdf/terms#relationshipType_copyOf">relationship type copy of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4112" title="http://spdx.org/rdf/terms#relationshipType_dataFile">relationship type data file</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4125" title="http://spdx.org/rdf/terms#relationshipType_dataFileOf">relationship type data file of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4138" title="http://spdx.org/rdf/terms#relationshipType_dependencyManifestOf">relationship type dependency manifest of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4152" title="http://spdx.org/rdf/terms#relationshipType_dependencyOf">relationship type dependency of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4165" title="http://spdx.org/rdf/terms#relationshipType_dependsOn">relationship type depends on</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4178" title="http://spdx.org/rdf/terms#relationshipType_descendantOf">relationship type descendant of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4192" title="http://spdx.org/rdf/terms#relationshipType_describedBy">relationship type described by</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4205" title="http://spdx.org/rdf/terms#relationshipType_describes">relationship type describes</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4218" title="http://spdx.org/rdf/terms#relationshipType_devDependencyOf">relationship type dev dependency of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4232" title="http://spdx.org/rdf/terms#relationshipType_devToolOf">relationship type dev tool of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4245" title="http://spdx.org/rdf/terms#relationshipType_distributionArtifact">relationship type distribution artifact</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4258" title="http://spdx.org/rdf/terms#relationshipType_documentation">relationship type documentation</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4272" title="http://spdx.org/rdf/terms#relationshipType_dynamicLink">relationship type dynamic link</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4285" title="http://spdx.org/rdf/terms#relationshipType_exampleOf">relationship type example of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4298" title="http://spdx.org/rdf/terms#relationshipType_expandedFromArchive">relationship type expanded from archive</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4312" title="http://spdx.org/rdf/terms#relationshipType_fileAdded">relationship type file added</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4325" title="http://spdx.org/rdf/terms#relationshipType_fileDeleted">relationship type file deleted</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4338" title="http://spdx.org/rdf/terms#relationshipType_fileModified">relationship type file modified</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4352" title="http://spdx.org/rdf/terms#relationshipType_generatedFrom">relationship type generated from</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4365" title="http://spdx.org/rdf/terms#relationshipType_generates">relationship type generates</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4378" title="http://spdx.org/rdf/terms#relationshipType_hasPrerequisite">relationship type has prerequisite</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4392" title="http://spdx.org/rdf/terms#relationshipType_metafileOf">relationship type metafile of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4405" title="http://spdx.org/rdf/terms#relationshipType_optionalComponentOf">relationship type optional component of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4418" title="http://spdx.org/rdf/terms#relationshipType_optionalDependencyOf">relationship type optional dependency of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4432" title="http://spdx.org/rdf/terms#relationshipType_other">relationship type other</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4445" title="http://spdx.org/rdf/terms#relationshipType_packageOf">relationship type package of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4458" title="http://spdx.org/rdf/terms#relationshipType_patchApplied">relationship type patch applied</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4472" title="http://spdx.org/rdf/terms#relationshipType_patchFor">relationship type patch for</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4485" title="http://spdx.org/rdf/terms#relationshipType_prerequisiteFor">relationship type prerequisite for</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4498" title="http://spdx.org/rdf/terms#relationshipType_providedDependencyOf">relationship type provided dependency of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4512" title="http://spdx.org/rdf/terms#relationshipType_runtimeDependencyOf">relationship type runtime dependency of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4525" title="http://spdx.org/rdf/terms#relationshipType_staticLink">relationship type static link</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4538" title="http://spdx.org/rdf/terms#relationshipType_testDependencyOf">relationship type test dependency of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4552" title="http://spdx.org/rdf/terms#relationshipType_testOf">relationship type test of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4565" title="http://spdx.org/rdf/terms#relationshipType_testToolOf">relationship type test tool of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4578" title="http://spdx.org/rdf/terms#relationshipType_testcaseOf">relationship type testcase of</a><sup title="named individual" class="type-ni">ni</sup>, <a href="#d4e4592" title="http://spdx.org/rdf/terms#relationshipType_variantOf">relationship type variant of</a><sup title="named individual" class="type-ni">ni</sup></dd>
</dl>
</div>
<div id="d4e3014" class="entity">
<a name="http://spdx.org/rdf/terms#Review"></a>
<h3>review<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#Review</p>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e1616" title="http://spdx.org/rdf/terms#reviewDate">review date</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><a href="#d4e1802" title="http://www.w3.org/2000/01/rdf-schema#comment">comment</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e1634" title="http://spdx.org/rdf/terms#reviewer">reviewer</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1616" title="http://spdx.org/rdf/terms#reviewDate">review date</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1634" title="http://spdx.org/rdf/terms#reviewer">reviewer</a><sup title="data property" class="type-dp">dp</sup></dd>
<dt>is in range of</dt>
<dd><a href="#d4e973" title="http://spdx.org/rdf/terms#reviewed">reviewed</a><sup title="object property" class="type-op">op</sup></dd>
</dl>
</div>
<div id="d4e3064" class="entity">
<a name="http://spdx.org/rdf/terms#SimpleLicensingInfo"></a>
<h3>simple licensing info<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#SimpleLicensingInfo</p>
<div class="comment">
<p>The SimpleLicenseInfo class includes all resources that represent simple, atomic, licensing information.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e1916" title="http://spdx.org/rdf/terms#AnyLicenseInfo">any license info</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1446" title="http://spdx.org/rdf/terms#licenseId">license id</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><span class="dotted" title="http://www.w3.org/2000/01/rdf-schema#seeAlso">see also</span><sup title="data property" class="type-dp">dp</sup> <span class="logic">min</span> 0</dd>
<dd><a href="#d4e1802" title="http://www.w3.org/2000/01/rdf-schema#comment">comment</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e1494" title="http://spdx.org/rdf/terms#name">name</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dt>has sub-classes</dt>
<dd><a href="#d4e2215" title="http://spdx.org/rdf/terms#ExtractedLicensingInfo">extracted licensing info</a><sup title="class" class="type-c">c</sup>, <a href="#d4e2374" title="http://spdx.org/rdf/terms#License">license</a><sup title="class" class="type-c">c</sup></dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1446" title="http://spdx.org/rdf/terms#licenseId">license id</a><sup title="data property" class="type-dp">dp</sup></dd>
</dl>
</div>
<div id="d4e3587" class="entity">
<a name="http://www.w3.org/2009/pointers#SinglePointer"></a>
<h3>single pointer<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://www.w3.org/2009/pointers#SinglePointer</p>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e3578" title="http://www.w3.org/2009/pointers#Pointer">pointer</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1038" title="http://www.w3.org/2009/pointers#reference">reference</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e2241" title="http://spdx.org/rdf/terms#File">file</a><sup title="class" class="type-c">c</sup></dd>
<dt>has sub-classes</dt>
<dd><a href="#d4e3568" title="http://www.w3.org/2009/pointers#OffsetPointer">offset pointer</a><sup title="class" class="type-c">c</sup></dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1038" title="http://www.w3.org/2009/pointers#reference">reference</a><sup title="object property" class="type-op">op</sup></dd>
<dt>is in range of</dt>
<dd><a href="#d4e1026" title="http://www.w3.org/2009/pointers#endPointer">end pointer</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e1049" title="http://www.w3.org/2009/pointers#startPointer">start pointer</a><sup title="object property" class="type-op">op</sup></dd>
</dl>
</div>
<div id="d4e3131" class="entity">
<a name="http://spdx.org/rdf/terms#Snippet"></a>
<h3>snippet<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#Snippet</p>
<div class="comment">
<p>The set of bytes in a file. The name of the snippet is the name of the file appended with the byte range in parenthesis (ie: "./file/name(2145:5532)")</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e3364" title="http://spdx.org/rdf/terms#SpdxItem">spdx item</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e991" title="http://spdx.org/rdf/terms#snippetFromFile">snippet from file</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e2241" title="http://spdx.org/rdf/terms#File">file</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e605" title="http://spdx.org/rdf/terms#range">range</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 1 <a href="#d4e3610" title="http://www.w3.org/2009/pointers#StartEndPointer">start end pointer</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e521" title="http://spdx.org/rdf/terms#licenseInfoInSnippet">license info in snippet</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 0 <a href="#d4e1916" title="http://spdx.org/rdf/terms#AnyLicenseInfo">any license info</a><sup title="class" class="type-c">c</sup></dd>
<dt>is in domain of</dt>
<dd><a href="#d4e521" title="http://spdx.org/rdf/terms#licenseInfoInSnippet">license info in snippet</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e605" title="http://spdx.org/rdf/terms#range">range</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e991" title="http://spdx.org/rdf/terms#snippetFromFile">snippet from file</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e1653" title="http://spdx.org/rdf/terms#snippetName">snippet name</a><sup title="data property" class="type-dp">dp</sup></dd>
<dt>is disjoint with</dt>
<dd><a href="#d4e2241" title="http://spdx.org/rdf/terms#File">file</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
<div id="d4e3184" class="entity">
<a name="http://spdx.org/rdf/terms#SpdxDocument"></a>
<h3>spdx document<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#SpdxDocument</p>
<div class="comment">
<p>An SpdxDocument is a summary of the contents, provenance, ownership and licensing analysis of a specific software package. This is, effectively, the top level of SPDX information.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e3299" title="http://spdx.org/rdf/terms#SpdxElement">spdx element</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e250" title="http://spdx.org/rdf/terms#externalDocumentRef">external document ref</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 0 <a href="#d4e2100" title="http://spdx.org/rdf/terms#ExternalDocumentRef">external document ref</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e341" title="http://spdx.org/rdf/terms#hasExtractedLicensingInfo">has extracted licensing info</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 0 <a href="#d4e2215" title="http://spdx.org/rdf/terms#ExtractedLicensingInfo">extracted licensing info</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1685" title="http://spdx.org/rdf/terms#specVersion">spec version</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><a href="#d4e207" title="http://spdx.org/rdf/terms#dataLicense">data license</a><sup title="object property" class="type-op">op</sup> <span class="logic">value</span> <span class="dotted" title="http://spdx.org/licenses/CC0-1.0">c c0 1.0</span></dd>
<dd><a href="#d4e207" title="http://spdx.org/rdf/terms#dataLicense">data license</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e1916" title="http://spdx.org/rdf/terms#AnyLicenseInfo">any license info</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e192" title="http://spdx.org/rdf/terms#creationInfo">creation info</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e2007" title="http://spdx.org/rdf/terms#CreationInfo">creation info</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e232" title="http://spdx.org/rdf/terms#describesPackage">describes package</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 0 <a href="#d4e2622" title="http://spdx.org/rdf/terms#Package">package</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e973" title="http://spdx.org/rdf/terms#reviewed">reviewed</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 0 <a href="#d4e3014" title="http://spdx.org/rdf/terms#Review">review</a><sup title="class" class="type-c">c</sup></dd>
<dt>is in domain of</dt>
<dd><a href="#d4e192" title="http://spdx.org/rdf/terms#creationInfo">creation info</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e207" title="http://spdx.org/rdf/terms#dataLicense">data license</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e232" title="http://spdx.org/rdf/terms#describesPackage">describes package</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e250" title="http://spdx.org/rdf/terms#externalDocumentRef">external document ref</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e341" title="http://spdx.org/rdf/terms#hasExtractedLicensingInfo">has extracted licensing info</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e679" title="http://spdx.org/rdf/terms#referencesFile">references file</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e973" title="http://spdx.org/rdf/terms#reviewed">reviewed</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e1685" title="http://spdx.org/rdf/terms#specVersion">spec version</a><sup title="data property" class="type-dp">dp</sup></dd>
<dt>is in range of</dt>
<dd><a href="#d4e1006" title="http://spdx.org/rdf/terms#spdxDocument">spdx document</a><sup title="object property" class="type-op">op</sup></dd>
</dl>
</div>
<div id="d4e3299" class="entity">
<a name="http://spdx.org/rdf/terms#SpdxElement"></a>
<h3>spdx element<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#SpdxElement</p>
<div class="comment">
<p>An SpdxElement is any thing described in SPDX, either a document or an SpdxItem. SpdxElements can be related to other SpdxElements.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e713" title="http://spdx.org/rdf/terms#relationship">relationship</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 0 <a href="#d4e2952" title="http://spdx.org/rdf/terms#Relationship">relationship</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1494" title="http://spdx.org/rdf/terms#name">name</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd><a href="#d4e1802" title="http://www.w3.org/2000/01/rdf-schema#comment">comment</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dd><a href="#d4e95" title="http://spdx.org/rdf/terms#annotation">annotation</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 0 <a href="#d4e1840" title="http://spdx.org/rdf/terms#Annotation">annotation</a><sup title="class" class="type-c">c</sup></dd>
<dt>has sub-classes</dt>
<dd><a href="#d4e3184" title="http://spdx.org/rdf/terms#SpdxDocument">spdx document</a><sup title="class" class="type-c">c</sup>, <a href="#d4e3364" title="http://spdx.org/rdf/terms#SpdxItem">spdx item</a><sup title="class" class="type-c">c</sup></dd>
<dt>is in domain of</dt>
<dd><a href="#d4e95" title="http://spdx.org/rdf/terms#annotation">annotation</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e147" title="http://spdx.org/rdf/terms#artifactOf">artifact of</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e1494" title="http://spdx.org/rdf/terms#name">name</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e713" title="http://spdx.org/rdf/terms#relationship">relationship</a><sup title="object property" class="type-op">op</sup></dd>
<dt>is in range of</dt>
<dd><a href="#d4e698" title="http://spdx.org/rdf/terms#relatedSpdxElement">related spdx element</a><sup title="object property" class="type-op">op</sup></dd>
<dt>is disjoint with</dt>
<dd><a href="#d4e1840" title="http://spdx.org/rdf/terms#Annotation">annotation</a><sup title="class" class="type-c">c</sup>, <a href="#d4e2952" title="http://spdx.org/rdf/terms#Relationship">relationship</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
<div id="d4e3364" class="entity">
<a name="http://spdx.org/rdf/terms#SpdxItem"></a>
<h3>spdx item<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#SpdxItem</p>
<div class="comment">
<p>An SpdxItem is a potentially copyrightable work.</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e3299" title="http://spdx.org/rdf/terms#SpdxElement">spdx element</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1096" title="http://spdx.org/rdf/terms#attributionText">attribution text</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">min</span> 0</dd>
<dd><a href="#d4e443" title="http://spdx.org/rdf/terms#licenseInfoFromFiles">license info from files</a><sup title="object property" class="type-op">op</sup> <span class="logic">min</span> 0 <a href="#d4e3064" title="http://spdx.org/rdf/terms#SimpleLicensingInfo">simple licensing info</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1144" title="http://spdx.org/rdf/terms#copyrightText">copyright text</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">exactly</span> 1</dd>
<dd>(<a href="#d4e372" title="http://spdx.org/rdf/terms#licenseConcluded">license concluded</a><sup title="object property" class="type-op">op</sup> <span class="logic">value</span> <a href="#d4e3957" title="http://spdx.org/rdf/terms#noassertion">noassertion</a>) <span class="logic">or</span> (<a href="#d4e372" title="http://spdx.org/rdf/terms#licenseConcluded">license concluded</a><sup title="object property" class="type-op">op</sup> <span class="logic">value</span> <a href="#d4e3966" title="http://spdx.org/rdf/terms#none">none</a>) <span class="logic">or</span> (<a href="#d4e372" title="http://spdx.org/rdf/terms#licenseConcluded">license concluded</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e1916" title="http://spdx.org/rdf/terms#AnyLicenseInfo">any license info</a><sup title="class" class="type-c">c</sup>)</dd>
<dd><a href="#d4e1400" title="http://spdx.org/rdf/terms#licenseComments">license comments</a><sup title="data property" class="type-dp">dp</sup> <span class="logic">max</span> 1</dd>
<dt>has sub-classes</dt>
<dd><a href="#d4e2241" title="http://spdx.org/rdf/terms#File">file</a><sup title="class" class="type-c">c</sup>, <a href="#d4e2622" title="http://spdx.org/rdf/terms#Package">package</a><sup title="class" class="type-c">c</sup>, <a href="#d4e3131" title="http://spdx.org/rdf/terms#Snippet">snippet</a><sup title="class" class="type-c">c</sup></dd>
<dt>is in domain of</dt>
<dd><a href="#d4e1096" title="http://spdx.org/rdf/terms#attributionText">attribution text</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1144" title="http://spdx.org/rdf/terms#copyrightText">copyright text</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e1400" title="http://spdx.org/rdf/terms#licenseComments">license comments</a><sup title="data property" class="type-dp">dp</sup>, <a href="#d4e372" title="http://spdx.org/rdf/terms#licenseConcluded">license concluded</a><sup title="object property" class="type-op">op</sup>, <a href="#d4e412" title="http://spdx.org/rdf/terms#licenseDeclared">license declared</a><sup title="object property" class="type-op">op</sup></dd>
</dl>
</div>
<div id="d4e3610" class="entity">
<a name="http://www.w3.org/2009/pointers#StartEndPointer"></a>
<h3>start end pointer<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://www.w3.org/2009/pointers#StartEndPointer</p>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e3534" title="http://www.w3.org/2009/pointers#CompoundPointer">compound pointer</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1026" title="http://www.w3.org/2009/pointers#endPointer">end pointer</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e3587" title="http://www.w3.org/2009/pointers#SinglePointer">single pointer</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e1049" title="http://www.w3.org/2009/pointers#startPointer">start pointer</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e3587" title="http://www.w3.org/2009/pointers#SinglePointer">single pointer</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
<div id="d4e3463" class="entity">
<a name="http://spdx.org/rdf/terms#WithExceptionOperator"></a>
<h3>with exception operator<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#WithExceptionOperator</p>
<div class="comment">
<p>
Sometimes a set of license terms apply except under special circumstances. In this case, use the binary "WITH" operator to construct a new license expression to represent the special exception situation. A valid
<license-expression>
is where the left operand is a
<simple-expression>
value and the right operand is a
<license-exception-id> that represents the special exception terms.</license-exception-id>
</simple-expression>
</license-expression>
</p>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd><a href="#d4e1916" title="http://spdx.org/rdf/terms#AnyLicenseInfo">any license info</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e427" title="http://spdx.org/rdf/terms#licenseException">license exception</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e2479" title="http://spdx.org/rdf/terms#LicenseException">license exception</a><sup title="class" class="type-c">c</sup></dd>
<dd><a href="#d4e562" title="http://spdx.org/rdf/terms#member">member</a><sup title="object property" class="type-op">op</sup> <span class="logic">exactly</span> 1 <a href="#d4e3064" title="http://spdx.org/rdf/terms#SimpleLicensingInfo">simple licensing info</a><sup title="class" class="type-c">c</sup></dd>
<dt>is in domain of</dt>
<dd><a href="#d4e427" title="http://spdx.org/rdf/terms#licenseException">license exception</a><sup title="object property" class="type-op">op</sup></dd>
</dl>
</div>
</div>
<div id="objectproperties">
<h2>Object Properties</h2>
<ul class="hlist">
<li><a href="#d4e52" title="http://spdx.org/rdf/terms#algorithm"><span>algorithm</span></a></li>
<li><a href="#d4e95" title="http://spdx.org/rdf/terms#annotation"><span>annotation</span></a></li>
<li><a href="#d4e111" title="http://spdx.org/rdf/terms#annotationType"><span>annotation type</span></a></li>
<li><a href="#d4e147" title="http://spdx.org/rdf/terms#artifactOf"><span>artifact of</span></a></li>
<li><a href="#d4e165" title="http://spdx.org/rdf/terms#checksum"><span>checksum</span></a></li>
<li><a href="#d4e192" title="http://spdx.org/rdf/terms#creationInfo"><span>creation info</span></a></li>
<li><a href="#d4e207" title="http://spdx.org/rdf/terms#dataLicense"><span>data license</span></a></li>
<li><a href="#d4e232" title="http://spdx.org/rdf/terms#describesPackage"><span>describes package</span></a></li>
<li><a href="#d4e1026" title="http://www.w3.org/2009/pointers#endPointer"><span>end pointer</span></a></li>
<li><a href="#d4e250" title="http://spdx.org/rdf/terms#externalDocumentRef"><span>external document ref</span></a></li>
<li><a href="#d4e263" title="http://spdx.org/rdf/terms#externalRef"><span>external ref</span></a></li>
<li><a href="#d4e278" title="http://spdx.org/rdf/terms#fileDependency"><span>file dependency</span></a></li>
<li><a href="#d4e291" title="http://spdx.org/rdf/terms#fileType"><span>file type</span></a></li>
<li><a href="#d4e341" title="http://spdx.org/rdf/terms#hasExtractedLicensingInfo"><span>has extracted licensing info</span></a></li>
<li><a href="#d4e356" title="http://spdx.org/rdf/terms#hasFile"><span>has file</span></a></li>
<li><a href="#d4e372" title="http://spdx.org/rdf/terms#licenseConcluded"><span>license concluded</span></a></li>
<li><a href="#d4e412" title="http://spdx.org/rdf/terms#licenseDeclared"><span>license declared</span></a></li>
<li><a href="#d4e427" title="http://spdx.org/rdf/terms#licenseException"><span>license exception</span></a></li>
<li><a href="#d4e443" title="http://spdx.org/rdf/terms#licenseInfoFromFiles"><span>license info from files</span></a></li>
<li><a href="#d4e481" title="http://spdx.org/rdf/terms#licenseInfoInFile"><span>license info in file</span></a></li>
<li><a href="#d4e521" title="http://spdx.org/rdf/terms#licenseInfoInSnippet"><span>license info in snippet</span></a></li>
<li><a href="#d4e562" title="http://spdx.org/rdf/terms#member"><span>member</span></a></li>
<li><a href="#d4e590" title="http://spdx.org/rdf/terms#packageVerificationCode"><span>package verification code</span></a></li>
<li><a href="#d4e605" title="http://spdx.org/rdf/terms#range"><span>range</span></a></li>
<li><a href="#d4e1038" title="http://www.w3.org/2009/pointers#reference"><span>reference</span></a></li>
<li><a href="#d4e621" title="http://spdx.org/rdf/terms#referenceCategory"><span>reference category</span></a></li>
<li><a href="#d4e664" title="http://spdx.org/rdf/terms#referenceType"><span>reference type</span></a></li>
<li><a href="#d4e679" title="http://spdx.org/rdf/terms#referencesFile"><span>references file</span></a></li>
<li><a href="#d4e698" title="http://spdx.org/rdf/terms#relatedSpdxElement"><span>related spdx element</span></a></li>
<li><a href="#d4e713" title="http://spdx.org/rdf/terms#relationship"><span>relationship</span></a></li>
<li><a href="#d4e728" title="http://spdx.org/rdf/terms#relationshipType"><span>relationship type</span></a></li>
<li><a href="#d4e973" title="http://spdx.org/rdf/terms#reviewed"><span>reviewed</span></a></li>
<li><a href="#d4e991" title="http://spdx.org/rdf/terms#snippetFromFile"><span>snippet from file</span></a></li>
<li><a href="#d4e1006" title="http://spdx.org/rdf/terms#spdxDocument"><span>spdx document</span></a></li>
<li><a href="#d4e1049" title="http://www.w3.org/2009/pointers#startPointer"><span>start pointer</span></a></li>
</ul>
<div id="d4e52" class="entity">
<a name="http://spdx.org/rdf/terms#algorithm"></a>
<h3>algorithm<sup title="object property" class="type-op">op</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#algorithm</p>
<div class="comment">
<p>Identifies the algorithm used to produce the subject Checksum. Currently, SHA-1 is the only supported algorithm. It is anticipated that other algorithms will be supported at a later time.</p>
</div>
<div class="description">
<dl>
<dt>has domain</dt>
<dd><a href="#d4e1930" title="http://spdx.org/rdf/terms#Checksum">checksum</a><sup title="class" class="type-c">c</sup></dd>
<dt>has range</dt>
<dd>(<a href="#d4e52" title="http://spdx.org/rdf/terms#algorithm">algorithm</a><sup title="object property" class="type-op">op</sup> <span class="logic">value</span> <a href="#d4e3717" title="http://spdx.org/rdf/terms#checksumAlgorithm_md5">checksum algorithm md5</a>) <span class="logic">or</span> (<a href="#d4e52" title="http://spdx.org/rdf/terms#algorithm">algorithm</a><sup title="object property" class="type-op">op</sup> <span class="logic">value</span> <a href="#d4e3744" title="http://spdx.org/rdf/terms#checksumAlgorithm_sha1">checksum algorithm sha1</a>) <span class="logic">or</span> (<a href="#d4e52" title="http://spdx.org/rdf/terms#algorithm">algorithm</a><sup title="object property" class="type-op">op</sup> <span class="logic">value</span> <a href="#d4e3771" title="http://spdx.org/rdf/terms#checksumAlgorithm_sha256">checksum algorithm sha256</a>)</dd>
</dl>
</div>
</div>
<div id="d4e95" class="entity">
<a name="http://spdx.org/rdf/terms#annotation"></a>
<h3>annotation<sup title="object property" class="type-op">op</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#annotation</p>
<div class="comment">
<p>Provide additional information about an SpdxElement.</p>
</div>
<div class="description">
<dl>
<dt>has domain</dt>
<dd><a href="#d4e3299" title="http://spdx.org/rdf/terms#SpdxElement">spdx element</a><sup title="class" class="type-c">c</sup></dd>
<dt>has range</dt>
<dd><a href="#d4e1840" title="http://spdx.org/rdf/terms#Annotation">annotation</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
</div>
<div id="d4e111" class="entity">
<a name="http://spdx.org/rdf/terms#annotationType"></a>
<h3>annotation type<sup title="object property" class="type-op">op</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#annotationType</p>
<div class="comment">
<p>Type of the annotation.</p>
</div>
<div class="description">
<dl>
<dt>has domain</dt>
<dd><a href="#d4e1840" title="http://spdx.org/rdf/terms#Annotation">annotation</a><sup title="class" class="type-c">c</sup></dd>
<dt>has range</dt>
<dd>(<a href="#d4e111" title="http://spdx.org/rdf/terms#annotationType">annotation type</a><sup title="object property" class="type-op">op</sup> <span class="logic">value</span> <a href="#d4e3653" title="http://spdx.org/rdf/terms#annotationType_other">annotation type other</a>) <span class="logic">or</span> (<a href="#d4e111" title="http://spdx.org/rdf/terms#annotationType">annotation type</a><sup title="object property" class="type-op">op</sup> <span class="logic">value</span> <a href="#d4e3666" title="http://spdx.org/rdf/terms#annotationType_review">annotation type review</a>)</dd>
</dl>
</div>
</div>
<div id="d4e147" class="entity">
<a name="http://spdx.org/rdf/terms#artifactOf"></a>
<h3>artifact of<sup title="object property" class="type-op">op</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#artifactOf</p>
<div class="comment">
<p>Indicates the project in which the SpdxElement originated. Tools must preserve doap:homepage and doap:name properties and the URI (if one is known) of doap:Project resources that are values of this property. All other properties of doap:Projects are not directly supported by SPDX and may be dropped when translating to or from some SPDX formats.</p>
</div>
<div class="description">
<dl>
<dt>has domain</dt>
<dd><a href="#d4e3299" title="http://spdx.org/rdf/terms#SpdxElement">spdx element</a><sup title="class" class="type-c">c</sup></dd>
<dt>has range</dt>
<dd><span class="dotted" title="http://usefulinc.com/ns/doap#Project">project</span><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
</div>
<div id="d4e165" class="entity">
<a name="http://spdx.org/rdf/terms#checksum"></a>
<h3>checksum<sup title="object property" class="type-op">op</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#checksum</p>
<div class="comment">
<p>The checksum property provides a mechanism that can be used to verify that the contents of a File or Package have not changed.</p>
</div>
<div class="description">
<dl>
<dt>has domain</dt>
<dd><a href="#d4e2241" title="http://spdx.org/rdf/terms#File">file</a><sup title="class" class="type-c">c</sup> <span class="logic">or</span> <a href="#d4e2622" title="http://spdx.org/rdf/terms#Package">package</a><sup title="class" class="type-c">c</sup></dd>
<dt>has range</dt>
<dd><a href="#d4e1930" title="http://spdx.org/rdf/terms#Checksum">checksum</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
</div>
<div id="d4e192" class="entity">
<a name="http://spdx.org/rdf/terms#creationInfo"></a>
<h3>creation info<sup title="object property" class="type-op">op</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#creationInfo</p>
<div class="comment">
<p>The creationInfo property relates an SpdxDocument to a set of information about the creation of the SpdxDocument.</p>
</div>
<div class="description">
<dl>
<dt>has domain</dt>
<dd><a href="#d4e3184" title="http://spdx.org/rdf/terms#SpdxDocument">spdx document</a><sup title="class" class="type-c">c</sup></dd>
<dt>has range</dt>
<dd><a href="#d4e2007" title="http://spdx.org/rdf/terms#CreationInfo">creation info</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
</div>
<div id="d4e207" class="entity">
<a name="http://spdx.org/rdf/terms#dataLicense"></a>
<h3>data license<sup title="object property" class="type-op">op</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#dataLicense</p>
<div class="comment">
<p>Compliance with the SPDX specification includes populating the SPDX fields therein with data related to such fields ("SPDX-Metadata"). The SPDX specification contains numerous fields where an SPDX document creator may provide relevant explanatory text in SPDX-Metadata. Without opining on the lawfulness of "database rights" (in jurisdictions where applicable), such explanatory text is copyrightable subject matter in most Berne Convention countries. By using the SPDX specification, or any portion hereof, you hereby agree that any copyright rights (as determined by your jurisdiction) in any SPDX-Metadata, including without limitation explanatory text, shall be subject to the terms of the Creative Commons CC0 1.0 Universal license. For SPDX-Metadata not containing any copyright rights, you hereby agree and acknowledge that the SPDX-Metadata is provided to you "as-is" and without any representations or warranties of any kind concerning the SPDX-Metadata, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non-infringement, or the absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law.</p>
</div>
<div class="description">
<p><strong>has characteristics:</strong> functional</p>
<dl>
<dt>has domain</dt>
<dd><a href="#d4e3184" title="http://spdx.org/rdf/terms#SpdxDocument">spdx document</a><sup title="class" class="type-c">c</sup></dd>
<dt>has range</dt>
<dd><a href="#d4e207" title="http://spdx.org/rdf/terms#dataLicense">data license</a><sup title="object property" class="type-op">op</sup> <span class="logic">value</span> <span class="dotted" title="http://spdx.org/licenses/CC0-1.0">c c0 1.0</span></dd>
</dl>
</div>
</div>
<div id="d4e232" class="entity">
<a name="http://spdx.org/rdf/terms#describesPackage"></a>
<h3>describes package<sup title="object property" class="type-op">op</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#describesPackage</p>
<div class="comment">
<p>The describesPackage property relates an SpdxDocument to the package which it describes.</p>
</div>
<div class="description">
<dl>
<dt>has domain</dt>
<dd><a href="#d4e3184" title="http://spdx.org/rdf/terms#SpdxDocument">spdx document</a><sup title="class" class="type-c">c</sup></dd>
<dt>has range</dt>
<dd><a href="#d4e2622" title="http://spdx.org/rdf/terms#Package">package</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
</div>
<div id="d4e1026" class="entity">
<a name="http://www.w3.org/2009/pointers#endPointer"></a>
<h3>end pointer<sup title="object property" class="type-op">op</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a></span></h3>
<p><strong>IRI:</strong> http://www.w3.org/2009/pointers#endPointer</p>
<div class="description">
<dl>
<dt>has domain</dt>
<dd><a href="#d4e3534" title="http://www.w3.org/2009/pointers#CompoundPointer">compound pointer</a><sup title="class" class="type-c">c</sup></dd>
<dt>has range</dt>
<dd><a href="#d4e3587" title="http://www.w3.org/2009/pointers#SinglePointer">single pointer</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
</div>
<div id="d4e250" class="entity">
<a name="http://spdx.org/rdf/terms#externalDocumentRef"></a>
<h3>external document ref<sup title="object property" class="type-op">op</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#externalDocumentRef</p>
<div class="comment">
<p>Identify any external SPDX documents referenced within this SPDX document.</p>
</div>
<div class="description">
<dl>
<dt>has domain</dt>
<dd><a href="#d4e3184" title="http://spdx.org/rdf/terms#SpdxDocument">spdx document</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
</div>
<div id="d4e263" class="entity">
<a name="http://spdx.org/rdf/terms#externalRef"></a>
<h3>external ref<sup title="object property" class="type-op">op</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#externalRef</p>
<div class="comment">
<p>An External Reference allows a Package to reference an external source of additional information, metadata, enumerations, asset identifiers, or downloadable content believed to be relevant to the Package.</p>
</div>
<div class="description">
<dl>
<dt>has domain</dt>
<dd><a href="#d4e2622" title="http://spdx.org/rdf/terms#Package">package</a><sup title="class" class="type-c">c</sup></dd>
<dt>has range</dt>
<dd><a href="#d4e2150" title="http://spdx.org/rdf/terms#ExternalRef">external ref</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
</div>
<div id="d4e278" class="entity">
<a name="http://spdx.org/rdf/terms#fileDependency"></a>
<h3>file dependency<sup title="object property" class="type-op">op</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#fileDependency</p>
<div class="description">
<dl>
<dt>has domain</dt>
<dd><a href="#d4e2241" title="http://spdx.org/rdf/terms#File">file</a><sup title="class" class="type-c">c</sup></dd>
<dt>has range</dt>
<dd><a href="#d4e2241" title="http://spdx.org/rdf/terms#File">file</a><sup title="class" class="type-c">c</sup></dd>
</dl>
</div>
</div>
<div id="d4e291" class="entity">
<a name="http://spdx.org/rdf/terms#fileType"></a>
<h3>file type<sup title="object property" class="type-op">op</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#fileType</p>
<div class="comment">
<p>The type of the file.</p>
</div>
<div class="description">
<dl>
<dt>has domain</dt>
<dd><a href="#d4e2241" title="http://spdx.org/rdf/terms#File">file</a><sup title="class" class="type-c">c</sup></dd>
<dt>has range</dt>
<dd>(<a href="#d4e291" title="http://spdx.org/rdf/terms#fileType">file type</a><sup title="object property" class="type-op">op</sup> <span class="logic">value</span> <a href="#d4e3824" title="http://spdx.org/rdf/terms#fileType_archive">file type archive</a>) <span class="logic">or</span> (<a href="#d4e291" title="http://spdx.org/rdf/terms#fileType">file type</a><sup title="object property" class="type-op">op</sup> <span class="logic">value</span> <a href="#d4e3851" title="http://spdx.org/rdf/terms#fileType_binary">file type binary</a>) <span class="logic">or</span> (<a href="#d4e291" title="http://spdx.org/rdf/terms#fileType">file type</a><sup title="object property" class="type-op">op</sup> <span class="logic">value</span> <a href="#d4e3891" title="http://spdx.org/rdf/terms#fileType_other">file type other</a>) <span class="logic">or</span> (<a href="#d4e291" title="http://spdx.org/rdf/terms#fileType">file type</a><sup title="object property" class="type-op">op</sup> <span class="logic">value</span> <a href="#d4e3904" title="http://spdx.org/rdf/terms#fileType_source">file type source</a>)</dd>
</dl>
</div>
</div>
<div id="d4e341" class="entity">
<a name="http://spdx.org/rdf/terms#hasExtractedLicensingInfo"></a>
<h3>has extracted licensing info<sup title="object property" class="type-op">op</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a></span></h3>
<p><strong>IRI:</strong> http://spdx.org/rdf/terms#hasExtractedLicensingInfo</p>
<div class="comment">
<p>Indicates that a particular ExtractedLicensingInfo was defined in the subject SpdxDocument.</p>
</div>
<div class="description">
<dl>
<dt>has domain</dt>
<dd><a href="#d4e2215" title="http://spdx.org/rdf/terms#ExtractedLicensingInfo">extracted licensing info</a><sup title="class" class="type-c">c</sup></dd>