Open in github.dev
Open in a new github.dev tab
Open in codespace
/
spdx-model.ttl
3268 lines (2759 loc) · 171 KB
/
spdx-model.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix ns1: <https://spdx.org/rdf/3.0.1/terms/Core/> .
@prefix ns2: <https://spdx.org/rdf/3.0.1/terms/Security/> .
@prefix ns3: <https://spdx.org/rdf/3.0.1/terms/ExpandedLicensing/> .
@prefix ns4: <https://spdx.org/rdf/3.0.1/terms/Dataset/> .
@prefix ns5: <https://spdx.org/rdf/3.0.1/terms/Software/> .
@prefix ns6: <https://spdx.org/rdf/3.0.1/terms/AI/> .
@prefix ns7: <http://spdx.invalid./> .
@prefix omg-ann: <https://www.omg.org/spec/Commons/AnnotationVocabulary/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix spdx: <https://spdx.org/rdf/3.0.1/terms/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
ns6:AIPackage a owl:Class,
sh:NodeShape ;
rdfs:comment "Specifies an AI package and its associated information."@en ;
rdfs:subClassOf ns5:Package ;
sh:nodeKind sh:IRI ;
sh:property [ sh:class ns1:PresenceType ;
sh:in ( <https://spdx.org/rdf/3.0.1/terms/Core/PresenceType/yes> <https://spdx.org/rdf/3.0.1/terms/Core/PresenceType/no> <https://spdx.org/rdf/3.0.1/terms/Core/PresenceType/noAssertion> ) ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns6:useSensitivePersonalInformation ],
[ sh:class ns6:EnergyConsumption ;
sh:maxCount 1 ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path ns6:energyConsumption ],
[ sh:datatype xsd:string ;
sh:nodeKind sh:Literal ;
sh:path ns6:standardCompliance ],
[ sh:datatype xsd:string ;
sh:nodeKind sh:Literal ;
sh:path ns6:modelDataPreprocessing ],
[ sh:class ns1:DictionaryEntry ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path ns6:metric ],
[ sh:class ns6:SafetyRiskAssessmentType ;
sh:in ( <https://spdx.org/rdf/3.0.1/terms/AI/SafetyRiskAssessmentType/serious> <https://spdx.org/rdf/3.0.1/terms/AI/SafetyRiskAssessmentType/high> <https://spdx.org/rdf/3.0.1/terms/AI/SafetyRiskAssessmentType/medium> <https://spdx.org/rdf/3.0.1/terms/AI/SafetyRiskAssessmentType/low> ) ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns6:safetyRiskAssessment ],
[ sh:class ns1:DictionaryEntry ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path ns6:metricDecisionThreshold ],
[ sh:datatype xsd:string ;
sh:nodeKind sh:Literal ;
sh:path ns6:typeOfModel ],
[ sh:class ns1:DictionaryEntry ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path ns6:hyperparameter ],
[ sh:datatype xsd:string ;
sh:nodeKind sh:Literal ;
sh:path ns6:domain ],
[ sh:datatype xsd:string ;
sh:nodeKind sh:Literal ;
sh:path ns6:modelExplainability ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns6:informationAboutApplication ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns6:limitation ],
[ sh:class ns1:PresenceType ;
sh:in ( <https://spdx.org/rdf/3.0.1/terms/Core/PresenceType/yes> <https://spdx.org/rdf/3.0.1/terms/Core/PresenceType/no> <https://spdx.org/rdf/3.0.1/terms/Core/PresenceType/noAssertion> ) ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns6:autonomyType ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns6:informationAboutTraining ] .
<https://spdx.org/rdf/3.0.1/terms/Build/Build> a owl:Class,
sh:NodeShape ;
rdfs:comment "Class that describes a build instance of software/artifacts."@en ;
rdfs:subClassOf ns1:Element ;
sh:nodeKind sh:IRI ;
sh:property [ sh:class ns1:DictionaryEntry ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path <https://spdx.org/rdf/3.0.1/terms/Build/parameter> ],
[ sh:datatype xsd:dateTimeStamp ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path <https://spdx.org/rdf/3.0.1/terms/Build/buildEndTime> ;
sh:pattern "^\\d\\d\\d\\d-\\d\\d-\\d\\dT\\d\\d:\\d\\d:\\d\\dZ$" ],
[ sh:class ns1:DictionaryEntry ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path <https://spdx.org/rdf/3.0.1/terms/Build/environment> ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path <https://spdx.org/rdf/3.0.1/terms/Build/buildId> ],
[ sh:datatype xsd:anyURI ;
sh:nodeKind sh:Literal ;
sh:path <https://spdx.org/rdf/3.0.1/terms/Build/configSourceUri> ],
[ sh:class ns1:Hash ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path <https://spdx.org/rdf/3.0.1/terms/Build/configSourceDigest> ],
[ sh:datatype xsd:anyURI ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path <https://spdx.org/rdf/3.0.1/terms/Build/buildType> ],
[ sh:datatype xsd:dateTimeStamp ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path <https://spdx.org/rdf/3.0.1/terms/Build/buildStartTime> ;
sh:pattern "^\\d\\d\\d\\d-\\d\\d-\\d\\dT\\d\\d:\\d\\d:\\d\\dZ$" ],
[ sh:datatype xsd:string ;
sh:nodeKind sh:Literal ;
sh:path <https://spdx.org/rdf/3.0.1/terms/Build/configSourceEntrypoint> ] .
ns1:Annotation a owl:Class,
sh:NodeShape ;
rdfs:comment "An assertion made in relation to one or more elements."@en ;
rdfs:subClassOf ns1:Element ;
sh:nodeKind sh:IRI ;
sh:property [ sh:class ns1:AnnotationType ;
sh:in ( <https://spdx.org/rdf/3.0.1/terms/Core/AnnotationType/other> <https://spdx.org/rdf/3.0.1/terms/Core/AnnotationType/review> ) ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns1:annotationType ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns1:contentType ;
sh:pattern "^[^\\/]+\\/[^\\/]+$" ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns1:statement ],
[ sh:class ns1:Element ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns1:subject ] .
ns1:LifecycleScopedRelationship a owl:Class,
sh:NodeShape ;
rdfs:comment "Provide context for a relationship that occurs in the lifecycle."@en ;
rdfs:subClassOf ns1:Relationship ;
sh:nodeKind sh:IRI ;
sh:property [ sh:class ns1:LifecycleScopeType ;
sh:in ( <https://spdx.org/rdf/3.0.1/terms/Core/LifecycleScopeType/design> <https://spdx.org/rdf/3.0.1/terms/Core/LifecycleScopeType/development> <https://spdx.org/rdf/3.0.1/terms/Core/LifecycleScopeType/build> <https://spdx.org/rdf/3.0.1/terms/Core/LifecycleScopeType/test> <https://spdx.org/rdf/3.0.1/terms/Core/LifecycleScopeType/runtime> <https://spdx.org/rdf/3.0.1/terms/Core/LifecycleScopeType/other> ) ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns1:scope ] .
ns1:Organization a owl:Class ;
rdfs:comment "A group of people who work together in an organized way for a shared purpose."@en ;
rdfs:subClassOf ns1:Agent ;
sh:nodeKind sh:IRI .
ns1:PackageVerificationCode a owl:Class,
sh:NodeShape ;
rdfs:comment "An SPDX version 2.X compatible verification method for software packages."@en ;
rdfs:subClassOf ns1:IntegrityMethod ;
sh:nodeKind sh:BlankNode ;
sh:property [ sh:datatype xsd:string ;
sh:nodeKind sh:Literal ;
sh:path ns1:packageVerificationCodeExcludedFile ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns1:hashValue ],
[ sh:class ns1:HashAlgorithm ;
sh:in ( <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/adler32> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/blake2b256> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/blake2b384> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/blake2b512> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/blake3> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/crystalsDilithium> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/crystalsKyber> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/falcon> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/md2> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/md4> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/md5> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/md6> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/other> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/sha1> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/sha224> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/sha256> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/sha384> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/sha512> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/sha3_224> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/sha3_256> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/sha3_384> <https://spdx.org/rdf/3.0.1/terms/Core/HashAlgorithm/sha3_512> ) ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns1:algorithm ] .
ns1:Person a owl:Class ;
rdfs:comment "An individual human being."@en ;
rdfs:subClassOf ns1:Agent ;
sh:nodeKind sh:IRI .
ns1:SoftwareAgent a owl:Class ;
rdfs:comment "A software agent."@en ;
rdfs:subClassOf ns1:Agent ;
sh:nodeKind sh:IRI .
ns1:SpdxDocument a owl:Class,
sh:NodeShape ;
rdfs:comment "A collection of SPDX Elements that could potentially be serialized."@en ;
rdfs:subClassOf ns1:ElementCollection ;
sh:nodeKind sh:IRI ;
sh:property [ sh:class <https://spdx.org/rdf/3.0.1/terms/SimpleLicensing/AnyLicenseInfo> ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns1:dataLicense ],
[ sh:class ns1:NamespaceMap ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path ns1:namespaceMap ],
[ sh:class ns1:ExternalMap ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path ns1:import ] .
ns4:DatasetPackage a owl:Class,
sh:NodeShape ;
rdfs:comment "Specifies a data package and its associated information."@en ;
rdfs:subClassOf ns5:Package ;
sh:nodeKind sh:IRI ;
sh:property [ sh:datatype xsd:string ;
sh:nodeKind sh:Literal ;
sh:path ns4:anonymizationMethodUsed ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns4:intendedUse ],
[ sh:class ns1:PresenceType ;
sh:in ( <https://spdx.org/rdf/3.0.1/terms/Core/PresenceType/yes> <https://spdx.org/rdf/3.0.1/terms/Core/PresenceType/no> <https://spdx.org/rdf/3.0.1/terms/Core/PresenceType/noAssertion> ) ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns4:hasSensitivePersonalInformation ],
[ sh:class ns4:DatasetType ;
sh:in ( <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetType/audio> <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetType/categorical> <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetType/graph> <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetType/image> <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetType/noAssertion> <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetType/numeric> <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetType/other> <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetType/sensor> <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetType/structured> <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetType/syntactic> <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetType/text> <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetType/timeseries> <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetType/timestamp> <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetType/video> ) ;
sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns4:datasetType ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns4:datasetUpdateMechanism ],
[ sh:datatype xsd:string ;
sh:nodeKind sh:Literal ;
sh:path ns4:dataPreprocessing ],
[ sh:class ns4:ConfidentialityLevelType ;
sh:in ( <https://spdx.org/rdf/3.0.1/terms/Dataset/ConfidentialityLevelType/red> <https://spdx.org/rdf/3.0.1/terms/Dataset/ConfidentialityLevelType/amber> <https://spdx.org/rdf/3.0.1/terms/Dataset/ConfidentialityLevelType/green> <https://spdx.org/rdf/3.0.1/terms/Dataset/ConfidentialityLevelType/clear> ) ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns4:confidentialityLevel ],
[ sh:class ns4:DatasetAvailabilityType ;
sh:in ( <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetAvailabilityType/clickthrough> <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetAvailabilityType/directDownload> <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetAvailabilityType/query> <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetAvailabilityType/registration> <https://spdx.org/rdf/3.0.1/terms/Dataset/DatasetAvailabilityType/scrapingScript> ) ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns4:datasetAvailability ],
[ sh:class ns1:DictionaryEntry ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path ns4:sensor ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns4:datasetNoise ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns4:dataCollectionProcess ],
[ sh:datatype xsd:string ;
sh:nodeKind sh:Literal ;
sh:path ns4:knownBias ],
[ sh:datatype xsd:nonNegativeInteger ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns4:datasetSize ] .
ns3:ConjunctiveLicenseSet a owl:Class,
sh:NodeShape ;
rdfs:comment """Portion of an AnyLicenseInfo representing a set of licensing information
where all elements apply."""@en ;
rdfs:subClassOf <https://spdx.org/rdf/3.0.1/terms/SimpleLicensing/AnyLicenseInfo> ;
sh:nodeKind sh:IRI ;
sh:property [ sh:class <https://spdx.org/rdf/3.0.1/terms/SimpleLicensing/AnyLicenseInfo> ;
sh:minCount 2 ;
sh:nodeKind sh:IRI ;
sh:path ns3:member ] .
ns3:CustomLicense a owl:Class ;
rdfs:comment "A license that is not listed on the SPDX License List."@en ;
rdfs:subClassOf ns3:License ;
sh:nodeKind sh:IRI .
ns3:CustomLicenseAddition a owl:Class ;
rdfs:comment "A license addition that is not listed on the SPDX Exceptions List."@en ;
rdfs:subClassOf ns3:LicenseAddition ;
sh:nodeKind sh:IRI .
ns3:DisjunctiveLicenseSet a owl:Class,
sh:NodeShape ;
rdfs:comment """Portion of an AnyLicenseInfo representing a set of licensing information where
only one of the elements applies."""@en ;
rdfs:subClassOf <https://spdx.org/rdf/3.0.1/terms/SimpleLicensing/AnyLicenseInfo> ;
sh:nodeKind sh:IRI ;
sh:property [ sh:class <https://spdx.org/rdf/3.0.1/terms/SimpleLicensing/AnyLicenseInfo> ;
sh:minCount 2 ;
sh:nodeKind sh:IRI ;
sh:path ns3:member ] .
ns3:ListedLicense a owl:Class,
sh:NodeShape ;
rdfs:comment "A license that is listed on the SPDX License List."@en ;
rdfs:subClassOf ns3:License ;
sh:nodeKind sh:IRI ;
sh:property [ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns3:deprecatedVersion ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns3:listVersionAdded ] .
ns3:ListedLicenseException a owl:Class,
sh:NodeShape ;
rdfs:comment "A license exception that is listed on the SPDX Exceptions list."@en ;
rdfs:subClassOf ns3:LicenseAddition ;
sh:nodeKind sh:IRI ;
sh:property [ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns3:deprecatedVersion ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns3:listVersionAdded ] .
ns3:NoAssertionLicense a owl:NamedIndividual,
ns3:IndividualLicensingInfo ;
rdfs:comment """An Individual Value for License when no assertion can be made about its actual
value."""@en ;
rdfs:range ns3:IndividualLicensingInfo ;
owl:sameAs <https://spdx.org/rdf/3.0.1/terms/Licensing/NoAssertion> .
ns3:NoneLicense a owl:NamedIndividual,
ns3:IndividualLicensingInfo ;
rdfs:comment """An Individual Value for License where the SPDX data creator determines that no
license is present."""@en ;
rdfs:range ns3:IndividualLicensingInfo ;
owl:sameAs <https://spdx.org/rdf/3.0.1/terms/Licensing/None> .
ns3:OrLaterOperator a owl:Class,
sh:NodeShape ;
rdfs:comment """Portion of an AnyLicenseInfo representing this version, or any later version,
of the indicated License."""@en ;
rdfs:subClassOf ns3:ExtendableLicense ;
sh:nodeKind sh:IRI ;
sh:property [ sh:class ns3:License ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns3:subjectLicense ] .
ns3:WithAdditionOperator a owl:Class,
sh:NodeShape ;
rdfs:comment """Portion of an AnyLicenseInfo representing a License which has additional
text applied to it."""@en ;
rdfs:subClassOf <https://spdx.org/rdf/3.0.1/terms/SimpleLicensing/AnyLicenseInfo> ;
sh:nodeKind sh:IRI ;
sh:property [ sh:class ns3:LicenseAddition ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns3:subjectAddition ],
[ sh:class ns3:ExtendableLicense ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns3:subjectExtendableLicense ] .
<https://spdx.org/rdf/3.0.1/terms/Extension/CdxPropertiesExtension> a owl:Class,
sh:NodeShape ;
rdfs:comment "A type of extension consisting of a list of name value pairs."@en ;
rdfs:subClassOf <https://spdx.org/rdf/3.0.1/terms/Extension/Extension> ;
sh:nodeKind sh:BlankNode ;
sh:property [ sh:class <https://spdx.org/rdf/3.0.1/terms/Extension/CdxPropertyEntry> ;
sh:minCount 1 ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path <https://spdx.org/rdf/3.0.1/terms/Extension/cdxProperty> ] .
ns2:CvssV2VulnAssessmentRelationship a owl:Class,
sh:NodeShape ;
rdfs:comment "Provides a CVSS version 2.0 assessment for a vulnerability."@en ;
rdfs:subClassOf ns2:VulnAssessmentRelationship ;
sh:nodeKind sh:IRI ;
sh:property [ sh:datatype xsd:decimal ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns2:score ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns2:vectorString ] .
ns2:CvssV3VulnAssessmentRelationship a owl:Class,
sh:NodeShape ;
rdfs:comment "Provides a CVSS version 3 assessment for a vulnerability."@en ;
rdfs:subClassOf ns2:VulnAssessmentRelationship ;
sh:nodeKind sh:IRI ;
sh:property [ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns2:vectorString ],
[ sh:class ns2:CvssSeverityType ;
sh:in ( <https://spdx.org/rdf/3.0.1/terms/Security/CvssSeverityType/critical> <https://spdx.org/rdf/3.0.1/terms/Security/CvssSeverityType/high> <https://spdx.org/rdf/3.0.1/terms/Security/CvssSeverityType/medium> <https://spdx.org/rdf/3.0.1/terms/Security/CvssSeverityType/low> <https://spdx.org/rdf/3.0.1/terms/Security/CvssSeverityType/none> ) ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns2:severity ],
[ sh:datatype xsd:decimal ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns2:score ] .
ns2:CvssV4VulnAssessmentRelationship a owl:Class,
sh:NodeShape ;
rdfs:comment "Provides a CVSS version 4 assessment for a vulnerability."@en ;
rdfs:subClassOf ns2:VulnAssessmentRelationship ;
sh:nodeKind sh:IRI ;
sh:property [ sh:class ns2:CvssSeverityType ;
sh:in ( <https://spdx.org/rdf/3.0.1/terms/Security/CvssSeverityType/critical> <https://spdx.org/rdf/3.0.1/terms/Security/CvssSeverityType/high> <https://spdx.org/rdf/3.0.1/terms/Security/CvssSeverityType/medium> <https://spdx.org/rdf/3.0.1/terms/Security/CvssSeverityType/low> <https://spdx.org/rdf/3.0.1/terms/Security/CvssSeverityType/none> ) ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns2:severity ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns2:vectorString ],
[ sh:datatype xsd:decimal ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns2:score ] .
ns2:EpssVulnAssessmentRelationship a owl:Class,
sh:NodeShape ;
rdfs:comment "Provides an EPSS assessment for a vulnerability."@en ;
rdfs:subClassOf ns2:VulnAssessmentRelationship ;
sh:nodeKind sh:IRI ;
sh:property [ sh:datatype xsd:decimal ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns2:percentile ],
[ sh:datatype xsd:decimal ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns2:probability ] .
ns2:ExploitCatalogVulnAssessmentRelationship a owl:Class,
sh:NodeShape ;
rdfs:comment "Provides an exploit assessment of a vulnerability."@en ;
rdfs:subClassOf ns2:VulnAssessmentRelationship ;
sh:nodeKind sh:IRI ;
sh:property [ sh:datatype xsd:boolean ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns2:exploited ],
[ sh:datatype xsd:anyURI ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns2:locator ],
[ sh:class ns2:ExploitCatalogType ;
sh:in ( <https://spdx.org/rdf/3.0.1/terms/Security/ExploitCatalogType/kev> <https://spdx.org/rdf/3.0.1/terms/Security/ExploitCatalogType/other> ) ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns2:catalogType ] .
ns2:SsvcVulnAssessmentRelationship a owl:Class,
sh:NodeShape ;
rdfs:comment "Provides an SSVC assessment for a vulnerability."@en ;
rdfs:subClassOf ns2:VulnAssessmentRelationship ;
sh:nodeKind sh:IRI ;
sh:property [ sh:class ns2:SsvcDecisionType ;
sh:in ( <https://spdx.org/rdf/3.0.1/terms/Security/SsvcDecisionType/act> <https://spdx.org/rdf/3.0.1/terms/Security/SsvcDecisionType/attend> <https://spdx.org/rdf/3.0.1/terms/Security/SsvcDecisionType/track> <https://spdx.org/rdf/3.0.1/terms/Security/SsvcDecisionType/trackStar> ) ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns2:decisionType ] .
ns2:VexAffectedVulnAssessmentRelationship a owl:Class,
sh:NodeShape ;
rdfs:comment """Connects a vulnerability and an element designating the element as a product
affected by the vulnerability."""@en ;
rdfs:subClassOf ns2:VexVulnAssessmentRelationship ;
sh:nodeKind sh:IRI ;
sh:property [ sh:datatype xsd:dateTimeStamp ;
sh:nodeKind sh:Literal ;
sh:path ns2:actionStatementTime ;
sh:pattern "^\\d\\d\\d\\d-\\d\\d-\\d\\dT\\d\\d:\\d\\d:\\d\\dZ$" ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns2:actionStatement ] .
ns2:VexFixedVulnAssessmentRelationship a owl:Class ;
rdfs:comment """Links a vulnerability and elements representing products (in the VEX sense) where
a fix has been applied and are no longer affected."""@en ;
rdfs:subClassOf ns2:VexVulnAssessmentRelationship ;
sh:nodeKind sh:IRI .
ns2:VexNotAffectedVulnAssessmentRelationship a owl:Class,
sh:NodeShape ;
rdfs:comment """Links a vulnerability and one or more elements designating the latter as products
not affected by the vulnerability."""@en ;
rdfs:subClassOf ns2:VexVulnAssessmentRelationship ;
sh:nodeKind sh:IRI ;
sh:property [ sh:class ns2:VexJustificationType ;
sh:in ( <https://spdx.org/rdf/3.0.1/terms/Security/VexJustificationType/componentNotPresent> <https://spdx.org/rdf/3.0.1/terms/Security/VexJustificationType/vulnerableCodeNotPresent> <https://spdx.org/rdf/3.0.1/terms/Security/VexJustificationType/vulnerableCodeCannotBeControlledByAdversary> <https://spdx.org/rdf/3.0.1/terms/Security/VexJustificationType/vulnerableCodeNotInExecutePath> <https://spdx.org/rdf/3.0.1/terms/Security/VexJustificationType/inlineMitigationsAlreadyExist> ) ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns2:justificationType ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns2:impactStatement ],
[ sh:datatype xsd:dateTimeStamp ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns2:impactStatementTime ;
sh:pattern "^\\d\\d\\d\\d-\\d\\d-\\d\\dT\\d\\d:\\d\\d:\\d\\dZ$" ] .
ns2:VexUnderInvestigationVulnAssessmentRelationship a owl:Class ;
rdfs:comment """Designates elements as products where the impact of a vulnerability is being
investigated."""@en ;
rdfs:subClassOf ns2:VexVulnAssessmentRelationship ;
sh:nodeKind sh:IRI .
ns2:Vulnerability a owl:Class,
sh:NodeShape ;
rdfs:comment "Specifies a vulnerability and its associated information."@en ;
rdfs:subClassOf ns1:Artifact ;
sh:nodeKind sh:IRI ;
sh:property [ sh:datatype xsd:dateTimeStamp ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns2:modifiedTime ;
sh:pattern "^\\d\\d\\d\\d-\\d\\d-\\d\\dT\\d\\d:\\d\\d:\\d\\dZ$" ],
[ sh:datatype xsd:dateTimeStamp ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns2:withdrawnTime ;
sh:pattern "^\\d\\d\\d\\d-\\d\\d-\\d\\dT\\d\\d:\\d\\d:\\d\\dZ$" ],
[ sh:datatype xsd:dateTimeStamp ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns2:publishedTime ;
sh:pattern "^\\d\\d\\d\\d-\\d\\d-\\d\\dT\\d\\d:\\d\\d:\\d\\dZ$" ] .
<https://spdx.org/rdf/3.0.1/terms/SimpleLicensing/LicenseExpression> a owl:Class,
sh:NodeShape ;
rdfs:comment "An SPDX Element containing an SPDX license expression string."@en ;
rdfs:subClassOf <https://spdx.org/rdf/3.0.1/terms/SimpleLicensing/AnyLicenseInfo> ;
sh:nodeKind sh:IRI ;
sh:property [ sh:class ns1:DictionaryEntry ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path <https://spdx.org/rdf/3.0.1/terms/SimpleLicensing/customIdToUri> ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path <https://spdx.org/rdf/3.0.1/terms/SimpleLicensing/licenseExpression> ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path <https://spdx.org/rdf/3.0.1/terms/SimpleLicensing/licenseListVersion> ;
sh:pattern "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$" ] .
<https://spdx.org/rdf/3.0.1/terms/SimpleLicensing/SimpleLicensingText> a owl:Class,
sh:NodeShape ;
rdfs:comment "A license or addition that is not listed on the SPDX License List."@en ;
rdfs:subClassOf ns1:Element ;
sh:nodeKind sh:IRI ;
sh:property [ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path <https://spdx.org/rdf/3.0.1/terms/SimpleLicensing/licenseText> ] .
ns5:Sbom a owl:Class,
sh:NodeShape ;
rdfs:comment "A collection of SPDX Elements describing a single package."@en ;
rdfs:subClassOf ns1:Bom ;
sh:nodeKind sh:IRI ;
sh:property [ sh:class ns5:SbomType ;
sh:in ( <https://spdx.org/rdf/3.0.1/terms/Software/SbomType/design> <https://spdx.org/rdf/3.0.1/terms/Software/SbomType/source> <https://spdx.org/rdf/3.0.1/terms/Software/SbomType/build> <https://spdx.org/rdf/3.0.1/terms/Software/SbomType/deployed> <https://spdx.org/rdf/3.0.1/terms/Software/SbomType/runtime> <https://spdx.org/rdf/3.0.1/terms/Software/SbomType/analyzed> ) ;
sh:nodeKind sh:IRI ;
sh:path ns5:sbomType ] .
ns5:Snippet a owl:Class,
sh:NodeShape ;
rdfs:comment "Describes a certain part of a file."@en ;
rdfs:subClassOf ns5:SoftwareArtifact ;
sh:nodeKind sh:IRI ;
sh:property [ sh:class ns5:File ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:path ns5:snippetFromFile ],
[ sh:class ns1:PositiveIntegerRange ;
sh:maxCount 1 ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path ns5:lineRange ],
[ sh:class ns1:PositiveIntegerRange ;
sh:maxCount 1 ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path ns5:byteRange ] .
spdx: a owl:Ontology ;
rdfs:label "System Package Data Exchange (SPDX) Ontology"@en ;
dcterms:abstract "This ontology defines the terms and relationships used in the SPDX specification to describe system packages"@en ;
dcterms:created "2024-04-05"^^xsd:date ;
dcterms:creator "SPDX Project"@en ;
dcterms:license <https://spdx.org/licenses/Community-Spec-1.0.html> ;
dcterms:references <https://spdx.dev/specifications/> ;
dcterms:title "System Package Data Exchange (SPDX) Ontology"@en ;
owl:versionIRI spdx: ;
omg-ann:copyright "Copyright (C) 2024 SPDX Project"@en .
<https://spdx.org/rdf/3.0.1/terms/AI/EnergyUnitType/kilowattHour> a owl:NamedIndividual,
ns6:EnergyUnitType ;
rdfs:label "kilowattHour" ;
rdfs:comment "Kilowatt-hour."@en .
<https://spdx.org/rdf/3.0.1/terms/AI/EnergyUnitType/megajoule> a owl:NamedIndividual,
ns6:EnergyUnitType ;
rdfs:label "megajoule" ;
rdfs:comment "Megajoule."@en .
<https://spdx.org/rdf/3.0.1/terms/AI/EnergyUnitType/other> a owl:NamedIndividual,
ns6:EnergyUnitType ;
rdfs:label "other" ;
rdfs:comment "Any other units of energy measurement."@en .
<https://spdx.org/rdf/3.0.1/terms/AI/SafetyRiskAssessmentType/high> a owl:NamedIndividual,
ns6:SafetyRiskAssessmentType ;
rdfs:label "high" ;
rdfs:comment "The second-highest level of risk posed by an AI system."@en .
<https://spdx.org/rdf/3.0.1/terms/AI/SafetyRiskAssessmentType/low> a owl:NamedIndividual,
ns6:SafetyRiskAssessmentType ;
rdfs:label "low" ;
rdfs:comment "Low/no risk is posed by an AI system."@en .
<https://spdx.org/rdf/3.0.1/terms/AI/SafetyRiskAssessmentType/medium> a owl:NamedIndividual,
ns6:SafetyRiskAssessmentType ;
rdfs:label "medium" ;
rdfs:comment "The third-highest level of risk posed by an AI system."@en .
<https://spdx.org/rdf/3.0.1/terms/AI/SafetyRiskAssessmentType/serious> a owl:NamedIndividual,
ns6:SafetyRiskAssessmentType ;
rdfs:label "serious" ;
rdfs:comment "The highest level of risk posed by an AI system."@en .
ns6:autonomyType a owl:ObjectProperty ;
rdfs:comment """Indicates whether the system can perform a decision or action without human
involvement or guidance."""@en ;
rdfs:range ns1:PresenceType .
ns6:domain a owl:DatatypeProperty ;
rdfs:comment "Captures the domain in which the AI package can be used."@en ;
rdfs:range xsd:string .
ns6:energyConsumption a owl:ObjectProperty ;
rdfs:comment "Indicates the amount of energy consumption incurred by an AI model."@en ;
rdfs:range ns6:EnergyConsumption .
ns6:energyQuantity a owl:DatatypeProperty ;
rdfs:comment "Represents the energy quantity."@en ;
rdfs:range xsd:decimal .
ns6:energyUnit a owl:ObjectProperty ;
rdfs:comment "Specifies the unit in which energy is measured."@en ;
rdfs:range ns6:EnergyUnitType .
ns6:finetuningEnergyConsumption a owl:ObjectProperty ;
rdfs:comment """Specifies the amount of energy consumed when finetuning the AI model that is
being used in the AI system."""@en ;
rdfs:range ns6:EnergyConsumptionDescription .
ns6:hyperparameter a owl:ObjectProperty ;
rdfs:comment """Records a hyperparameter used to build the AI model contained in the AI
package."""@en ;
rdfs:range ns1:DictionaryEntry .
ns6:inferenceEnergyConsumption a owl:ObjectProperty ;
rdfs:comment """Specifies the amount of energy consumed during inference time by an AI model
that is being used in the AI system."""@en ;
rdfs:range ns6:EnergyConsumptionDescription .
ns6:informationAboutApplication a owl:DatatypeProperty ;
rdfs:comment """Provides relevant information about the AI software, not including the model
description."""@en ;
rdfs:range xsd:string .
ns6:informationAboutTraining a owl:DatatypeProperty ;
rdfs:comment "Describes relevant information about different steps of the training process."@en ;
rdfs:range xsd:string .
ns6:limitation a owl:DatatypeProperty ;
rdfs:comment "Captures a limitation of the AI software."@en ;
rdfs:range xsd:string .
ns6:metric a owl:ObjectProperty ;
rdfs:comment "Records the measurement of prediction quality of the AI model."@en ;
rdfs:range ns1:DictionaryEntry .
ns6:metricDecisionThreshold a owl:ObjectProperty ;
rdfs:comment """Captures the threshold that was used for computation of a metric described in
the metric field."""@en ;
rdfs:range ns1:DictionaryEntry .
ns6:modelDataPreprocessing a owl:DatatypeProperty ;
rdfs:comment """Describes all the preprocessing steps applied to the training data before the
model training."""@en ;
rdfs:range xsd:string .
ns6:modelExplainability a owl:DatatypeProperty ;
rdfs:comment "Describes methods that can be used to explain the results from the AI model."@en ;
rdfs:range xsd:string .
ns6:safetyRiskAssessment a owl:ObjectProperty ;
rdfs:comment "Records the results of general safety risk assessment of the AI system."@en ;
rdfs:range ns6:SafetyRiskAssessmentType .
ns6:standardCompliance a owl:DatatypeProperty ;
rdfs:comment "Captures a standard that is being complied with."@en ;
rdfs:range xsd:string .
ns6:trainingEnergyConsumption a owl:ObjectProperty ;
rdfs:comment """Specifies the amount of energy consumed when training the AI model that is
being used in the AI system."""@en ;
rdfs:range ns6:EnergyConsumptionDescription .
ns6:typeOfModel a owl:DatatypeProperty ;
rdfs:comment "Records the type of the model used in the AI software."@en ;
rdfs:range xsd:string .
ns6:useSensitivePersonalInformation a owl:ObjectProperty ;
rdfs:comment """Records if sensitive personal information is used during model training or
could be used during the inference."""@en ;
rdfs:range ns1:PresenceType .
<https://spdx.org/rdf/3.0.1/terms/Build/buildEndTime> a owl:DatatypeProperty ;
rdfs:comment "Property that describes the time at which a build stops."@en ;
rdfs:range xsd:dateTimeStamp .
<https://spdx.org/rdf/3.0.1/terms/Build/buildId> a owl:DatatypeProperty ;
rdfs:comment """A buildId is a locally unique identifier used by a builder to identify a unique
instance of a build produced by it."""@en ;
rdfs:range xsd:string .
<https://spdx.org/rdf/3.0.1/terms/Build/buildStartTime> a owl:DatatypeProperty ;
rdfs:comment "Property describing the start time of a build."@en ;
rdfs:range xsd:dateTimeStamp .
<https://spdx.org/rdf/3.0.1/terms/Build/buildType> a owl:DatatypeProperty ;
rdfs:comment """A buildType is a hint that is used to indicate the toolchain, platform, or
infrastructure that the build was invoked on."""@en ;
rdfs:range xsd:anyURI .
<https://spdx.org/rdf/3.0.1/terms/Build/configSourceDigest> a owl:ObjectProperty ;
rdfs:comment """Property that describes the digest of the build configuration file used to
invoke a build."""@en ;
rdfs:range ns1:Hash .
<https://spdx.org/rdf/3.0.1/terms/Build/configSourceEntrypoint> a owl:DatatypeProperty ;
rdfs:comment "Property describes the invocation entrypoint of a build."@en ;
rdfs:range xsd:string .
<https://spdx.org/rdf/3.0.1/terms/Build/configSourceUri> a owl:DatatypeProperty ;
rdfs:comment "Property that describes the URI of the build configuration source file."@en ;
rdfs:range xsd:anyURI .
<https://spdx.org/rdf/3.0.1/terms/Build/environment> a owl:ObjectProperty ;
rdfs:comment "Property describing the session in which a build is invoked."@en ;
rdfs:range ns1:DictionaryEntry .
<https://spdx.org/rdf/3.0.1/terms/Build/parameter> a owl:ObjectProperty ;
rdfs:comment "Property describing a parameter used in an instance of a build."@en ;
rdfs:range ns1:DictionaryEntry .
<https://spdx.org/rdf/3.0.1/terms/Core/AnnotationType/other> a owl:NamedIndividual,
ns1:AnnotationType ;
rdfs:label "other" ;
rdfs:comment "Used to store extra information about an Element which is not part of a Review (e.g. extra information provided during the creation of the Element)."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/AnnotationType/review> a owl:NamedIndividual,
ns1:AnnotationType ;
rdfs:label "review" ;
rdfs:comment "Used when someone reviews the Element."@en .
ns1:Bom a owl:Class ;
rdfs:comment """A container for a grouping of SPDX-3.0 content characterizing details
(provenence, composition, licensing, etc.) about a product."""@en ;
rdfs:subClassOf ns1:Bundle ;
sh:nodeKind sh:IRI .
ns1:Bundle a owl:Class,
sh:NodeShape ;
rdfs:comment "A collection of Elements that have a shared context."@en ;
rdfs:subClassOf ns1:ElementCollection ;
sh:nodeKind sh:IRI ;
sh:property [ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path ns1:context ] .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalIdentifierType/cpe22> a owl:NamedIndividual,
ns1:ExternalIdentifierType ;
rdfs:label "cpe22" ;
rdfs:comment "[Common Platform Enumeration Specification 2.2](https://cpe.mitre.org/files/cpe-specification_2.2.pdf)"@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalIdentifierType/cpe23> a owl:NamedIndividual,
ns1:ExternalIdentifierType ;
rdfs:label "cpe23" ;
rdfs:comment "[Common Platform Enumeration: Naming Specification Version 2.3](https://csrc.nist.gov/publications/detail/nistir/7695/final)"@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalIdentifierType/cve> a owl:NamedIndividual,
ns1:ExternalIdentifierType ;
rdfs:label "cve" ;
rdfs:comment "Common Vulnerabilities and Exposures identifiers, an identifier for a specific software flaw defined within the official CVE Dictionary and that conforms to the [CVE specification](https://csrc.nist.gov/glossary/term/cve_id)."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalIdentifierType/email> a owl:NamedIndividual,
ns1:ExternalIdentifierType ;
rdfs:label "email" ;
rdfs:comment "Email address, as defined in [RFC 3696](https://www.rfc-editor.org/info/rfc3986) Section 3."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalIdentifierType/gitoid> a owl:NamedIndividual,
ns1:ExternalIdentifierType ;
rdfs:label "gitoid" ;
rdfs:comment "[Gitoid](https://www.iana.org/assignments/uri-schemes/prov/gitoid), stands for [Git Object ID](https://git-scm.com/book/en/v2/Git-Internals-Git-Objects). A gitoid of type blob is a unique hash of a binary artifact. A gitoid may represent either an [Artifact Identifier](https://github.com/omnibor/spec/blob/eb1ee5c961c16215eb8709b2975d193a2007a35d/spec/SPEC.md#artifact-identifier-types) for the software artifact or an [Input Manifest Identifier](https://github.com/omnibor/spec/blob/eb1ee5c961c16215eb8709b2975d193a2007a35d/spec/SPEC.md#input-manifest-identifier) for the software artifact's associated [Artifact Input Manifest](https://github.com/omnibor/spec/blob/eb1ee5c961c16215eb8709b2975d193a2007a35d/spec/SPEC.md#artifact-input-manifest); this ambiguity exists because the Artifact Input Manifest is itself an artifact, and the gitoid of that artifact is its valid identifier. Gitoids calculated on software artifacts (Snippet, File, or Package Elements) should be recorded in the SPDX 3.0 SoftwareArtifact's contentIdentifier property. Gitoids calculated on the Artifact Input Manifest (Input Manifest Identifier) should be recorded in the SPDX 3.0 Element's externalIdentifier property. See [OmniBOR Specification](https://github.com/omnibor/spec/), a minimalistic specification for describing software [Artifact Dependency Graphs](https://github.com/omnibor/spec/blob/eb1ee5c961c16215eb8709b2975d193a2007a35d/spec/SPEC.md#artifact-dependency-graph-adg)."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalIdentifierType/other> a owl:NamedIndividual,
ns1:ExternalIdentifierType ;
rdfs:label "other" ;
rdfs:comment "Used when the type does not match any of the other options."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalIdentifierType/packageUrl> a owl:NamedIndividual,
ns1:ExternalIdentifierType ;
rdfs:label "packageUrl" ;
rdfs:comment "Package URL, as defined in the corresponding [Annex](../../../annexes/pkg-url-specification.md) of this specification."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalIdentifierType/securityOther> a owl:NamedIndividual,
ns1:ExternalIdentifierType ;
rdfs:label "securityOther" ;
rdfs:comment "Used when there is a security related identifier of unspecified type."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalIdentifierType/swhid> a owl:NamedIndividual,
ns1:ExternalIdentifierType ;
rdfs:label "swhid" ;
rdfs:comment "SoftWare Hash IDentifier, a persistent intrinsic identifier for digital artifacts, such as files, trees (also known as directories or folders), commits, and other objects typically found in version control systems. The format of the identifiers is defined in the [SWHID specification](https://www.swhid.org/specification/v1.1/4.Syntax) (ISO/IEC DIS 18670). They typically look like `swh:1:cnt:94a9ed024d3859793618152ea559a168bbcbb5e2`."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalIdentifierType/swid> a owl:NamedIndividual,
ns1:ExternalIdentifierType ;
rdfs:label "swid" ;
rdfs:comment "Concise Software Identification (CoSWID) tag, as defined in [RFC 9393](https://www.rfc-editor.org/info/rfc9393) Section 2.3."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalIdentifierType/urlScheme> a owl:NamedIndividual,
ns1:ExternalIdentifierType ;
rdfs:label "urlScheme" ;
rdfs:comment "[Uniform Resource Identifier (URI) Schemes](https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml). The scheme used in order to locate a resource."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/altDownloadLocation> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "altDownloadLocation" ;
rdfs:comment "A reference to an alternative download location."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/altWebPage> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "altWebPage" ;
rdfs:comment "A reference to an alternative web page."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/binaryArtifact> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "binaryArtifact" ;
rdfs:comment "A reference to binary artifacts related to a package."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/bower> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "bower" ;
rdfs:comment "A reference to a Bower package. The package locator format, looks like `package#version`, is defined in the \"install\" section of [Bower API documentation](https://bower.io/docs/api/#install)."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/buildMeta> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "buildMeta" ;
rdfs:comment "A reference build metadata related to a published package."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/buildSystem> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "buildSystem" ;
rdfs:comment "A reference build system used to create or publish the package."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/certificationReport> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "certificationReport" ;
rdfs:comment "A reference to a certification report for a package from an accredited/independent body."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/chat> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "chat" ;
rdfs:comment "A reference to the instant messaging system used by the maintainer for a package."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/componentAnalysisReport> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "componentAnalysisReport" ;
rdfs:comment "A reference to a Software Composition Analysis (SCA) report."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/cwe> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "cwe" ;
rdfs:comment "[Common Weakness Enumeration](https://csrc.nist.gov/glossary/term/common_weakness_enumeration). A reference to a source of software flaw defined within the official [CWE List](https://cwe.mitre.org/data/) that conforms to the [CWE specification](https://cwe.mitre.org/)."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/documentation> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "documentation" ;
rdfs:comment "A reference to the documentation for a package."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/dynamicAnalysisReport> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "dynamicAnalysisReport" ;
rdfs:comment "A reference to a dynamic analysis report for a package."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/eolNotice> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "eolNotice" ;
rdfs:comment "A reference to the End Of Sale (EOS) and/or End Of Life (EOL) information related to a package."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/exportControlAssessment> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "exportControlAssessment" ;
rdfs:comment "A reference to a export control assessment for a package."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/funding> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "funding" ;
rdfs:comment "A reference to funding information related to a package."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/issueTracker> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "issueTracker" ;
rdfs:comment "A reference to the issue tracker for a package."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/license> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "license" ;
rdfs:comment "A reference to additional license information related to an artifact."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/mailingList> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "mailingList" ;
rdfs:comment "A reference to the mailing list used by the maintainer for a package."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/mavenCentral> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "mavenCentral" ;
rdfs:comment "A reference to a Maven repository artifact. The artifact locator format is defined in the [Maven documentation](https://maven.apache.org/guides/mini/guide-naming-conventions.html) and looks like `groupId:artifactId[:version]`."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/metrics> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "metrics" ;
rdfs:comment "A reference to metrics related to package such as OpenSSF scorecards."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/npm> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "npm" ;
rdfs:comment "A reference to an npm package. The package locator format is defined in the [npm documentation](https://docs.npmjs.com/cli/v10/configuring-npm/package-json) and looks like `package@version`."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/nuget> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "nuget" ;
rdfs:comment "A reference to a NuGet package. The package locator format is defined in the [NuGet documentation](https://docs.nuget.org) and looks like `package/version`."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/other> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "other" ;
rdfs:comment "Used when the type does not match any of the other options."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/privacyAssessment> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "privacyAssessment" ;
rdfs:comment "A reference to a privacy assessment for a package."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/productMetadata> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "productMetadata" ;
rdfs:comment "A reference to additional product metadata such as reference within organization's product catalog."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/purchaseOrder> a owl:NamedIndividual,
ns1:ExternalRefType ;
rdfs:label "purchaseOrder" ;
rdfs:comment "A reference to a purchase order for a package."@en .
<https://spdx.org/rdf/3.0.1/terms/Core/ExternalRefType/qualityAssessmentReport> a owl:NamedIndividual,