-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlicense-classifications.yml
4389 lines (3751 loc) · 128 KB
/
license-classifications.yml
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
---
# SPDX-FileCopyrightText: 2024 Double Open Oy <support@doubleopen.org>
# SPDX-FileCopyrightText: 2022-2023 HH Partners, Attorneys-at-law Ltd <doubleopen@hhpartners.fi>
# SPDX-FileCopyrightText: 2021 The Linux Foundation® <legal@linuxfoundation.org>
# SPDX-FileCopyrightText: 2015-2021 nexB, Inc. <info@nexb.com>
# SPDX-License-Identifier: CC0-1.0 AND CC-BY-3.0 AND CC-BY-4.0
#
# Example of license-classifications.yml, using the license names from the SPDX License List
# (https://spdx.org/licenses/) licensed under CC-BY-3.0. When licenses are not covered by SPDX,
# we use license names from the ScanCode LicenseDB, although with a different and more detailed
# categorization, enabling better automation at least for our use cases. Since we also use other
# scanners, notably Nomos and Monk in Fossology, we have included some license names of our own to
# help process unclear scanner findings. The ScanCode LicenseDB, designed and built by nexB, Inc.,
# is available at: https://scancode-licensedb.aboutcode.org/, licensed under CC-BY-4.0.
#
# Content in this file created by Double Open Oy or the Double Open project by HH Partners is
# published under CC0-1.0.
#
# The following introduces the applicable categories and properties. Each license should be in one
# category. A license can have multiple properties.
#
# Do you want this file to be updated? Make a GitHub issue or send email to support@doubleopen.org.
# If you make a pull request, we expect every contribution to be published under CC0-1.0.
categories:
- name: "copyleft-strong"
description: >-
Open source license that requires you to license modifications, as well as any code that ends
up in the same binary (including static linking and module modifications), as well as other
code that is part of the same work, with the same strong copyleft license.
Examples: GPL-2.0, GPL-3.0, AGPL-3.0, EUPL-1.0, EUPL-1.1, EUPL-1.2.
- name: "copyleft-LGPL"
description: >-
This category is for particular software interaction method defined in the LGPL family of
licenses, namely LGPL-2.0, LGPL-2.1 and LGPL-3.0. Loosely, if you statically link with an LGPL
licensed library, you need to provide for the recipient the option to modify the LGPL licensed
library and thereafter relink with your application. This category is for the LGPL family of
licenses, namely LGPL-2.0, LGPL-2.1 and LGPL-3.0.
- name: "copyleft-module-level"
description: >-
Open source license that requires you to license modifications made into the same software
module with the same license as the original open source software module. This also applies,
if you add code from this module to your own module. Examples: EPL-1.1, CPL-1.0.
- name: "copyleft-file-level"
description: >-
Open source license that requires you to license modifications made into the same file with
the same license as the original open source file. This also applies, if you add code from
this file to your own file. Example: MPL-2.0.
- name: "permissive"
description: >-
Open source license that is made available under "non-copyleft" licenses. These generally
require attribution of the included works and may include other obligations.
- name: "free-restricted"
description: >-
A permissive or open source-style license that contains restrictions regarding the usage of
the work (for example, where a software is not allowed to be used in nuclear facilities) or
the redistribution of the software (for example, where commercial redistribution of the
software is not allowed without express permission). These licenses are not open source
licenses, since they do not include all the required freedoms.
- name: "proprietary-free"
description: >-
A proprietary-free license may not require a commercial license, but has specific
terms and conditions which the project is obligated to follow. Some of these terms and
conditions are provided with or in the code or in clickable downloaded licenses. Examples are
the Sun Binary Code License Agreement or a freely offered BSP.
- name: "commercial"
description: >-
A license for third-party proprietary content offered under a direct commercial license
between a supplier and a customer.
- name: "public-domain"
description: >-
A dedication by which a work is placed into the public domain without any explicit
obligations, but which may have a notice that must be kept with the work per project policy.
The match maybe to software, code examples on a website, published public domain
specifications or another type of publication.
- name: "source-available"
description: >-
A source-available license is released through a source code distribution model that
includes arrangements where the source can be viewed, and in some cases modified, but without
necessarily meeting the criteria to be called open-source.
- name: "unstated"
description: >-
A statement used when no license is stated, but the content is likely under copyright. Common
examples include code snippets from publications and websites (such as those from O'Reilly
Media).
- name: "irrelevant"
description: >-
Category for scanner hits that are irrelevant for compliance purposes.
- name: "property:network-clause"
description: >-
This license has specific terms that apply when the software is used or deployed over a
network. Few licenses have such terms; examples include Affero GPL, EUPL-1.2 (and other
versions) OSL and the Common Public Attribution License (CPAL 1.0).
- name: "property:advertising-clause"
description: >-
This license requires a notice in certain advertisements for the product (typically those
mentioning features of the licensed software) that the licensed software is being used.
- name: "property:non-commercial"
description: >-
Licenses that add a restriction that prevents the use of the software for commercial purposes.
- name: "property:include-in-notice-file"
description: >-
Whether the license includes a notice obligation or similar which can be fulfilled by adding
the relevant copyright notices and the license text into the project/product notice file.
- name: "include-in-notice-file"
description: >-
Same as above, as a temporary work-around for the category name not being configurable in ORT
reports, see https://github.com/oss-review-toolkit/ort/issues/8220.
- name: "property:mark-modifications"
description: >-
The licence includes an obligation to mark all modifications of licensed content.
- name: "property:antitivo-clause"
description: >-
This property means that the licensee/end user must be offered an opportunity to reinstall
modified versions of the licensed software on the device and that there must not be any
controls, such as firmware checking for checksums of the software on device and consequent
non-operation of the software or device due to the failure of such checks, unless the
licensee/end user is given adequate information to bypass such controls. This property only
applies to (i) products normally used for personal, family or household purposes (interpreted
broadly), and (ii) products designed or sold for incorporation into a dwelling. Known
instances in GPL-3.0, LGPL-3.0, AGPL-3.0.
- name: "property:nuclear-restriction"
description: >-
This property denies the use of the software in a nuclear facility. A mere warranty clause
that does not deny use in a nuclear facility, is not considered a restriction under this
property.
- name: "property:patent-clause"
description: >-
This property indicates that the license has patent licensing related terms. All patent
related provisions in a license, with the exception of a basic patent license, trigger this
clause. For example Apache-2.0 license includes a license cancellation clause due to patent
disputes.
- name: "property:distribute-source-code"
description: >-
This property indicates that the license requires that the source code of the OSS is either
distributed, or offered to distribute, in connection with the software delivery.
- name: "property:modification-related-obligations"
description: >-
This property indicates that the license contains obligations that are triggered by modifying
the licensed content. The scope of obligations could vary, but typically it is about somehow
making sure that the recipients of the modified content don't attribute the modifications to
the wrong author and/or that the unmodified content is available to the recipients. The
obligations go beoynd of mere marking of the modifications. Artistic-type licenses have this
property, but also some others.
- name: "property:AutoConf-or-other-exception"
description: >-
This property indicates that the license includes an AutoConf exception or another type of
exception to the license terms. These exceptions vary in terms: some exceptions render the
license, assuming the exception criteria applies, permissive-style. Other exceptions do not
render the license permissive style, but rather somehow otherwise relax the terms of the
license, for example by introducing a list of compatible copyleft-licenses.
- name: "property:unclear-scanner-finding"
description: >-
This property indicates that the scanner finding requires manual conclusion.
- name: "property:unchecked"
description: >-
This property marking means that the properties of the license have not been checked. Ask for
license categorization/checking. This typically is an uncommon license, which has not yet been
fully categorized.
- name: "property:specification-license"
description: >-
An open source-style license that is typically applied to specification files and has some
important limitations, such as a prohibition on modifying the licensed work. These licenses
usually fall in the free-restricted category. This property enables users an option to
automatically accept specification licenses, even if free-restricted licenses otherwise
create rule violations.
- name: "property:creativecommons"
description: >-
Licenses and dedications published and maintained by the Creative Commons. These
often apply to content that is not software, while sometimes also software is licensed
under these licenses.
- name: "property:no-modifications"
description: >-
Licenses with this property prohibit the making of modifications to the licensed content.
This is initially applied to Creative Commons licenses but will be used more widely as
license reviews progress. Contributions/pull requests are welcome.
categorizations:
- id: "0BSD"
categories:
- "permissive"
# https://spdx.org/licenses/AFL-1.1.html
- id: "AFL-1.1"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:patent-clause"
# https://spdx.org/licenses/AFL-1.2.html
- id: "AFL-1.2"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:patent-clause"
- id: "AFL-2.0"
categories:
- "permissive"
- "property:distribute-source-code"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:patent-clause"
- id: "AFL-2.1"
categories:
- "permissive"
- "property:distribute-source-code"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:patent-clause"
# https://spdx.org/licenses/AFL-3.0.html
- id: "AFL-3.0"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:patent-clause"
- "property:network-clause"
# https://spdx.org/licenses/AGPL-1.0-only.html
- id: "AGPL-1.0-only"
categories:
- "copyleft-strong"
- "property:network-clause"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:distribute-source-code"
# https://spdx.org/licenses/AGPL-1.0-or-later.html
- id: "AGPL-1.0-or-later"
categories:
- "copyleft-strong"
- "property:network-clause"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:distribute-source-code"
# https://spdx.org/licenses/AGPL-3.0-only.html
- id: "AGPL-3.0-only"
categories:
- "copyleft-strong"
- "property:network-clause"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:antitivo-clause"
- "property:distribute-source-code"
- "property:patent-clause"
# https://spdx.org/licenses/AGPL-3.0-only.html
- id: "AGPL-3.0-or-later"
categories:
- "copyleft-strong"
- "property:network-clause"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:antitivo-clause"
- "property:distribute-source-code"
- "property:patent-clause"
# https://spdx.org/licenses/AMDPLPA.html
- id: "AMDPLPA"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- id: "ANTLR-PD"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- id: "APAFML"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/APL-1.0.html
- id: "APL-1.0"
categories:
- "copyleft-module-level"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:patent-clause"
- "property:distribute-source-code"
# https://spdx.org/licenses/APSL-1.0.html
- id: "APSL-1.0"
categories:
- "copyleft-file-level"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:patent-clause"
- "property:distribute-source-code"
# https://spdx.org/licenses/APSL-1.1.html
- id: "APSL-1.1"
categories:
- "copyleft-file-level"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:patent-clause"
- "property:distribute-source-code"
# https://spdx.org/licenses/APSL-1.2.html
- id: "APSL-1.2"
categories:
- "copyleft-file-level"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:patent-clause"
- "property:distribute-source-code"
# https://spdx.org/licenses/APSL-2.0.html
- id: "APSL-2.0"
categories:
- "copyleft-file-level"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:patent-clause"
- "property:distribute-source-code"
# https://spdx.org/licenses/Adobe-2006.html
- id: "Adobe-2006"
categories:
- "permissive"
- id: "Adobe-Glyph"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/Apache-1.0.html
- id: "Apache-1.0"
categories:
- "permissive"
- "property:advertising-clause"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/Apache-1.1.html
- id: "Apache-1.1"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/Apache-2.0.html
- id: "Apache-2.0"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:patent-clause"
# https://spdx.org/licenses/Apache-2.0.html
# https://spdx.org/licenses/LLVM-exception.html
- id: "Apache-2.0 WITH LLVM-exception"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:patent-clause"
- "property:AutoConf-or-other-exception"
# https://spdx.org/licenses/Artistic-1.0.html
- id: "Artistic-1.0"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:modification-related-obligations"
# https://spdx.org/licenses/Artistic-1.0-Perl.html
- id: "Artistic-1.0-Perl"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:modification-related-obligations"
# https://spdx.org/licenses/Artistic-1.0-cl8.html
- id: "Artistic-1.0-cl8"
categories:
- "copyleft-file-level"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:distribute-source-code"
- "property:modification-related-obligations"
# https://spdx.org/licenses/Artistic-2.0.html
- id: "Artistic-2.0"
categories:
- "copyleft-module-level"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:modification-related-obligations"
- "property:distribute-source-code"
- "property:patent-clause"
# https://spdx.org/licenses/BSD-1-Clause.html
- id: "BSD-1-Clause"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/BSD-2-Clause.html
- id: "BSD-2-Clause"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- id: "BSD-2-Clause-Views"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/BSD-3-Clause.html
- id: "BSD-3-Clause"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- id: "BSD-3-Clause-Attribution"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/BSD-3-Clause-Clear.html
- id: "BSD-3-Clause-Clear"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- id: "BSD-3-Clause-LBNL"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/BSD-3-Clause-Modification.html
- id: "BSD-3-Clause-Modification"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:mark-modifications"
- id: "BSD-3-Clause-No-Nuclear-License"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:nuclear-restriction"
- id: "BSD-3-Clause-No-Nuclear-Warranty"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- id: "BSD-3-Clause-Open-MPI"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/BSD-4-Clause.html
- id: "BSD-4-Clause"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:advertising-clause"
- id: "BSD-4-Clause-Shortened"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/BSD-4-Clause-UC.html
- id: "BSD-4-Clause-UC"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/BSD-4.3RENO.html
- id: "BSD-4.3RENO"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/BSD-4.3TAHOE.html
- id: "BSD-4.3TAHOE"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:no-modifications"
- "property:advertising-clause"
# https://spdx.org/licenses/BSD-Protection.html
- id: "BSD-Protection"
categories:
- "copyleft-strong"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:distribute-source-code"
- id: "BSD-Source-Code"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/BSL-1.0.html
- id: "BSL-1.0"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- id: "BUSL-1.1"
categories:
- "commercial"
- "property:include-in-notice-file"
- "include-in-notice-file"
- id: "Beerware"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/BitTorrent-1.0.html
- id: "BitTorrent-1.0"
categories:
- "copyleft-file-level"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:distribute-source-code"
- "property:patent-clause"
# https://spdx.org/licenses/BitTorrent-1.1.html
- id: "BitTorrent-1.1"
categories:
- "copyleft-file-level"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:distribute-source-code"
- "property:patent-clause"
- id: "Bitstream-Vera"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/BlueOak-1.0.0.html
- id: "BlueOak-1.0.0"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/Borceux.html
- id: "Borceux"
categories:
- "permissive"
# https://spdx.org/licenses/CATOSL-1.1.html
- id: "CATOSL-1.1"
categories:
- "copyleft-file-level"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:distribute-source-code"
- "property:patent-clause"
# https://spdx.org/licenses/CC-BY-1.0.html
- id: "CC-BY-1.0"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
# https://spdx.org/licenses/CC-BY-2.0.html
- id: "CC-BY-2.0"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
# https://spdx.org/licenses/CC-BY-2.5.html
- id: "CC-BY-2.5"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
# https://spdx.org/licenses/CC-BY-3.0.html
- id: "CC-BY-3.0"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
# https://spdx.org/licenses/CC-BY-4.0.html
- id: "CC-BY-4.0"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
# https://spdx.org/licenses/CC-BY-NC-1.0.html
- id: "CC-BY-NC-1.0"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:non-commercial"
- "property:creativecommons"
# https://spdx.org/licenses/CC-BY-NC-2.0.html
- id: "CC-BY-NC-2.0"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:non-commercial"
- "property:creativecommons"
# https://spdx.org/licenses/CC-BY-NC-2.5.html
- id: "CC-BY-NC-2.5"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:non-commercial"
- "property:creativecommons"
# https://spdx.org/licenses/CC-BY-NC-3.0.html
- id: "CC-BY-NC-3.0"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:non-commercial"
- "property:creativecommons"
# https://spdx.org/licenses/CC-BY-NC-4.0.html
- id: "CC-BY-NC-4.0"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:non-commercial"
- "property:creativecommons"
# https://spdx.org/licenses/CC-BY-NC-ND-1.0.html
- id: "CC-BY-NC-ND-1.0"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:non-commercial"
- "property:creativecommons"
- "property:no-modifications"
# https://spdx.org/licenses/CC-BY-NC-ND-2.0.html
- id: "CC-BY-NC-ND-2.0"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:non-commercial"
- "property:creativecommons"
- "property:no-modifications"
# https://spdx.org/licenses/CC-BY-NC-ND-2.5.html
- id: "CC-BY-NC-ND-2.5"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:non-commercial"
- "property:creativecommons"
- "property:no-modifications"
# https://spdx.org/licenses/CC-BY-NC-ND-3.0.html
- id: "CC-BY-NC-ND-3.0"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:non-commercial"
- "property:creativecommons"
- "property:no-modifications"
- id: "CC-BY-NC-ND-4.0"
categories:
- "free-restricted"
- "property:non-commercial"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
- "property:no-modifications"
# https://spdx.org/licenses/CC-BY-NC-SA-1.0.html
- id: "CC-BY-NC-SA-1.0"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:non-commercial"
- "property:creativecommons"
# https://spdx.org/licenses/CC-BY-NC-SA-2.0.html
- id: "CC-BY-NC-SA-2.0"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:non-commercial"
- "property:creativecommons"
- id: "CC-BY-NC-SA-2.5"
categories:
- "source-available"
- "property:non-commercial"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
# https://spdx.org/licenses/CC-BY-NC-SA-3.0.html
- id: "CC-BY-NC-SA-3.0"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:non-commercial"
- "property:creativecommons"
- id: "CC-BY-NC-SA-4.0"
categories:
- "source-available"
- "property:non-commercial"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
# https://spdx.org/licenses/CC-BY-ND-1.0.html
- id: "CC-BY-ND-1.0"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
- "property:no-modifications"
# https://spdx.org/licenses/CC-BY-ND-2.0.html
- id: "CC-BY-ND-2.0"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
- "property:no-modifications"
# https://spdx.org/licenses/CC-BY-ND-2.5.html
- id: "CC-BY-ND-2.5"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
- "property:no-modifications"
# https://spdx.org/licenses/CC-BY-ND-3.0.html
- id: "CC-BY-ND-3.0"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
- "property:no-modifications"
# https://spdx.org/licenses/CC-BY-ND-4.0.html
- id: "CC-BY-ND-4.0"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
- "property:no-modifications"
- id: "CC-BY-SA-2.0"
categories:
- "copyleft-strong"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
# https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.html
- id: "CC-BY-SA-2.0-UK"
categories:
- "copyleft-strong"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
- id: "CC-BY-SA-2.5"
categories:
- "copyleft-strong"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
- id: "CC-BY-SA-3.0"
categories:
- "copyleft-strong"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
- id: "CC-BY-SA-4.0"
categories:
- "copyleft-strong"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:creativecommons"
# https://spdx.org/licenses/CC-PDDC.html
- id: "CC-PDDC"
categories:
- "public-domain"
# https://spdx.org/licenses/CC0-1.0.html
- id: "CC0-1.0"
categories:
- "public-domain"
- "property:creativecommons"
# https://spdx.org/licenses/CDDL-1.0.html
- id: "CDDL-1.0"
categories:
- "copyleft-file-level"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:distribute-source-code"
- "property:patent-clause"
# https://spdx.org/licenses/CDDL-1.1.html
- id: "CDDL-1.1"
categories:
- "copyleft-file-level"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:distribute-source-code"
- "property:patent-clause"
# https://spdx.org/licenses/CNRI-Jython.html
- id: "CNRI-Jython"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/CNRI-Python.html
- id: "CNRI-Python"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/CPL-1.0.html
- id: "CPL-1.0"
categories:
- "copyleft-module-level"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:distribute-source-code"
- "property:patent-clause"
# https://spdx.org/licenses/CPOL-1.02.html
- id: "CPOL-1.02"
categories:
- "free-restricted"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:distribute-source-code"
- "property:mark-modifications"
- "property:modification-related-obligations"
# https://spdx.org/licenses/CUA-OPL-1.0.html
- id: "CUA-OPL-1.0"
categories:
- "copyleft-file-level"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:distribute-source-code"
- "property:patent-clause"
- id: "DOC"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/ECL-2.0.html
- id: "ECL-2.0"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:patent-clause"
# https://spdx.org/licenses/EFL-2.0.html
- id: "EFL-2.0"
categories:
- "permissive"
- "property:include-in-notice-file"
- "include-in-notice-file"
# https://spdx.org/licenses/EPL-1.0.html
- id: "EPL-1.0"
categories:
- "copyleft-module-level"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:distribute-source-code"
- "property:patent-clause"
# https://spdx.org/licenses/EPL-2.0.html
- id: "EPL-2.0"
categories:
- "copyleft-file-level"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:distribute-source-code"
- "property:patent-clause"
# https://spdx.org/licenses/EUPL-1.1.html
- id: "EUPL-1.1"
categories:
- "copyleft-strong"
- "property:include-in-notice-file"
- "include-in-notice-file"
- "property:network-clause"
- "property:distribute-source-code"
# https://spdx.org/licenses/EUPL-1.2.html