-
-
Notifications
You must be signed in to change notification settings - Fork 793
Expand file tree
/
Copy pathfull.json-expected
More file actions
7290 lines (7290 loc) · 286 KB
/
Copy pathfull.json-expected
File metadata and controls
7290 lines (7290 loc) · 286 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
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
[
{
"path": "samples/",
"type": "directory",
"name": "samples",
"base_name": "samples",
"extension": "",
"size": 0,
"date": null,
"sha1": null,
"md5": null,
"sha256": null,
"mime_type": null,
"file_type": null,
"programming_language": null,
"is_binary": false,
"is_text": false,
"is_archive": false,
"is_media": false,
"is_source": false,
"is_script": false,
"detected_license_expression": null,
"detected_license_expression_spdx": null,
"percentage_of_license_text": 0,
"files_count": 72,
"dirs_count": 13,
"size_count": 1423568,
"scan_errors": ""
},
{
"path": "samples/README",
"type": "file",
"name": "README",
"base_name": "README",
"extension": "",
"size": 236,
"date": "2021-10-26",
"sha1": "2e07e32c52d607204fad196052d70e3d18fb8636",
"md5": "effc6856ef85a9250fb1a470792b3f38",
"sha256": "165da86bfdf296cd5a0a3e20c1d1ee86d70ecb8a1fa579d6f8cadad8eee85878",
"mime_type": "text/plain",
"file_type": "ASCII text",
"programming_language": null,
"is_binary": false,
"is_text": true,
"is_archive": false,
"is_media": false,
"is_source": false,
"is_script": false,
"detected_license_expression": null,
"detected_license_expression_spdx": null,
"percentage_of_license_text": 0,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
"scan_errors": ""
},
{
"path": "samples/README",
"url": "http://zlib.net/zlib-1.2.8.tar.gz",
"start_line": 3,
"end_line": 3
},
{
"path": "samples/README",
"url": "http://master.dl.sourceforge.net/project/javagroups/JGroups/2.10.0.GA/JGroups-2.10.0.GA.src.zip",
"start_line": 4,
"end_line": 4
},
{
"path": "samples/screenshot.png",
"type": "file",
"name": "screenshot.png",
"base_name": "screenshot",
"extension": ".png",
"size": 622754,
"date": "2021-10-26",
"sha1": "01ff4b1de0bc6c75c9cca6e46c80c1802d6976d4",
"md5": "b6ef5a90777147423c98b42a6a25e57a",
"sha256": "a1c9905b77a8ff7e72c93abc85d32d9e43353996710b83c5bfa581c5f2af60ad",
"mime_type": "image/png",
"file_type": "PNG image data, 2880 x 1666, 8-bit/color RGB, non-interlaced",
"programming_language": null,
"is_binary": true,
"is_text": false,
"is_archive": false,
"is_media": true,
"is_source": false,
"is_script": false,
"detected_license_expression": null,
"detected_license_expression_spdx": null,
"percentage_of_license_text": 0,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
"scan_errors": ""
},
{
"path": "samples/arch/",
"type": "directory",
"name": "arch",
"base_name": "arch",
"extension": "",
"size": 0,
"date": null,
"sha1": null,
"md5": null,
"sha256": null,
"mime_type": null,
"file_type": null,
"programming_language": null,
"is_binary": false,
"is_text": false,
"is_archive": false,
"is_media": false,
"is_source": false,
"is_script": false,
"detected_license_expression": null,
"detected_license_expression_spdx": null,
"percentage_of_license_text": 0,
"files_count": 1,
"dirs_count": 0,
"size_count": 28103,
"scan_errors": ""
},
{
"path": "samples/arch/zlib.tar.gz",
"type": "file",
"name": "zlib.tar.gz",
"base_name": "zlib",
"extension": ".tar.gz",
"size": 28103,
"date": "2021-10-26",
"sha1": "576f0ccfe534d7f5ff5d6400078d3c6586de3abd",
"md5": "20b2370751abfc08bb3556c1d8114b5a",
"sha256": "e6bb199f3b59fffac4092542a516a46b7f922e607d754c21ef5b27334b1f3ba6",
"mime_type": "application/gzip",
"file_type": "gzip compressed data, last modified: Wed Jul 15 09:08:19 2015, from Unix, original size modulo 2^32 103424",
"programming_language": null,
"is_binary": true,
"is_text": false,
"is_archive": true,
"is_media": false,
"is_source": false,
"is_script": false,
"detected_license_expression": null,
"detected_license_expression_spdx": null,
"percentage_of_license_text": 0,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
"scan_errors": ""
},
{
"path": "samples/commoncode/",
"type": "directory",
"name": "commoncode",
"base_name": "commoncode",
"extension": "",
"size": 0,
"date": null,
"sha1": null,
"md5": null,
"sha256": null,
"mime_type": null,
"file_type": null,
"programming_language": null,
"is_binary": false,
"is_text": false,
"is_archive": false,
"is_media": false,
"is_source": false,
"is_script": false,
"detected_license_expression": null,
"detected_license_expression_spdx": null,
"percentage_of_license_text": 0,
"files_count": 39,
"dirs_count": 2,
"size_count": 262485,
"scan_errors": ""
},
{
"path": "samples/commoncode/.travis.yml",
"type": "file",
"name": ".travis.yml",
"base_name": ".travis",
"extension": ".yml",
"size": 514,
"date": "2022-08-19",
"sha1": "186e5b4d91cfe3b97448cea4e52ff85519ff40b4",
"md5": "79126fe623d1bd93ede647cb383bca32",
"sha256": "c7b9cc700059c536488f7b107d831697a1c0adc8535d96b502e0bfd7b3b9b743",
"mime_type": "text/plain",
"file_type": "ASCII text",
"programming_language": null,
"is_binary": false,
"is_text": true,
"is_archive": false,
"is_media": false,
"is_source": false,
"is_script": false,
"detected_license_expression": null,
"detected_license_expression_spdx": null,
"percentage_of_license_text": 0,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
"scan_errors": ""
},
{
"path": "samples/commoncode/.travis.yml",
"url": "https://config.travis-ci.com/",
"start_line": 5,
"end_line": 5
},
{
"path": "samples/commoncode/apache-2.0.LICENSE",
"type": "file",
"name": "apache-2.0.LICENSE",
"base_name": "apache-2.0",
"extension": ".LICENSE",
"size": 11357,
"date": "2022-08-19",
"sha1": "7df059597099bb7dcf25d2a9aedfaf4465f72d8d",
"md5": "86d3f3a95c324c9479bd8986968f4327",
"sha256": "c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4",
"mime_type": "text/plain",
"file_type": "ASCII text",
"programming_language": null,
"is_binary": false,
"is_text": true,
"is_archive": false,
"is_media": false,
"is_source": false,
"is_script": false,
"detected_license_expression": "apache-2.0",
"detected_license_expression_spdx": "Apache-2.0",
"percentage_of_license_text": 100.0,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
"scan_errors": ""
},
{
"path": "samples/commoncode/apache-2.0.LICENSE",
"license_expression": "apache-2.0",
"detection_log": "not-combined",
"license_match__score": "100.00",
"start_line": 1,
"end_line": 201,
"license_match__matched_length": 1584,
"license_match__match_coverage": "100.00",
"license_match__matcher": "1-hash",
"license_match__license_expression": "apache-2.0",
"license_match__rule_identifier": "apache-2.0.LICENSE",
"license_match__referenced_filenames": [],
"license_match__is_license_text": true,
"license_match__is_license_notice": false,
"license_match__is_license_reference": false,
"license_match__is_license_tag": false,
"license_match__is_license_intro": false,
"license_match__rule_length": 1584,
"license_match__rule_relevance": "100.00",
"license_match__licenses": "apache-2.0"
},
{
"path": "samples/commoncode/apache-2.0.LICENSE",
"url": "http://www.apache.org/licenses/",
"start_line": 3,
"end_line": 3
},
{
"path": "samples/commoncode/apache-2.0.LICENSE",
"url": "http://www.apache.org/licenses/LICENSE-2.0",
"start_line": 195,
"end_line": 195
},
{
"path": "samples/commoncode/commoncode.ABOUT",
"type": "file",
"name": "commoncode.ABOUT",
"base_name": "commoncode",
"extension": ".ABOUT",
"size": 567,
"date": "2022-08-19",
"sha1": "478f3bc4cc8a43737faf8f960bbe97ee327a2e8c",
"md5": "0a6ccded786262fec02dbad3c3d6a632",
"sha256": "4e86e4de7ddc981b9bfd707dee3eee43d587f478b17aa4e86d18443c9306b662",
"mime_type": "text/plain",
"file_type": "ASCII text",
"programming_language": null,
"is_binary": false,
"is_text": true,
"is_archive": false,
"is_media": false,
"is_source": false,
"is_script": false,
"detected_license_expression": "apache-2.0",
"detected_license_expression_spdx": "Apache-2.0",
"percentage_of_license_text": 3.8,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
"scan_errors": ""
},
{
"path": "samples/commoncode/commoncode.ABOUT",
"license_expression": "apache-2.0",
"detection_log": "not-combined",
"license_match__score": "100.00",
"start_line": 11,
"end_line": 11,
"license_match__matched_length": 3,
"license_match__match_coverage": "100.00",
"license_match__matcher": "2-aho",
"license_match__license_expression": "apache-2.0",
"license_match__rule_identifier": "spdx_license_id_apache-2.0_for_apache-2.0.RULE",
"license_match__referenced_filenames": [],
"license_match__is_license_text": false,
"license_match__is_license_notice": false,
"license_match__is_license_reference": true,
"license_match__is_license_tag": false,
"license_match__is_license_intro": false,
"license_match__rule_length": 3,
"license_match__rule_relevance": "100.00",
"license_match__licenses": "apache-2.0"
},
{
"path": "samples/commoncode/commoncode.ABOUT",
"copyright": "Copyright (c) nexB. Inc. and others",
"start_line": 2,
"end_line": 2
},
{
"path": "samples/commoncode/commoncode.ABOUT",
"holder": "nexB. Inc. and others",
"start_line": 2,
"end_line": 2
},
{
"path": "samples/commoncode/commoncode.ABOUT",
"email": "info@aboutcode.org",
"start_line": 9,
"end_line": 9
},
{
"path": "samples/commoncode/commoncode.ABOUT",
"url": "https://github.com/nexB/commoncode",
"start_line": 7,
"end_line": 7
},
{
"path": "samples/commoncode/commoncode.ABOUT",
"package__type": "about",
"package__namespace": "",
"package__name": "commoncode",
"package__version": "",
"package__qualifiers": "",
"package__subpath": "",
"package__primary_language": "",
"package__description": "",
"package__release_date": "",
"package__homepage_url": "https://github.com/nexB/commoncode",
"package__download_url": "",
"package__size": "",
"package__sha1": "",
"package__md5": "",
"package__sha256": "",
"package__sha512": "",
"package__bug_tracking_url": "",
"package__code_view_url": "",
"package__vcs_url": "",
"package__copyright": "copyright (c) nexB. Inc. and others",
"package__declared_license_expression": "apache-2.0",
"package__declared_license_expression_spdx": "Apache-2.0",
"package__license_detections": "[{'license_expression': 'apache-2.0', 'detection_log': ['not-combined'], 'matches': [{'score': 100.0, 'start_line': 1, 'end_line': 1, 'matched_length': 3, 'match_coverage': 100.0, 'matcher': '1-hash', 'license_expression': 'apache-2.0', 'rule_identifier': 'spdx_license_id_apache-2.0_for_apache-2.0.RULE', 'referenced_filenames': [], 'is_license_text': False, 'is_license_notice': False, 'is_license_reference': True, 'is_license_tag': False, 'is_license_intro': False, 'rule_length': 3, 'rule_relevance': 100, 'matched_text': 'apache-2.0', 'licenses': [{'key': 'apache-2.0', 'name': 'Apache License 2.0', 'short_name': 'Apache 2.0', 'category': 'Permissive', 'is_exception': False, 'is_unknown': False, 'owner': 'Apache Software Foundation', 'homepage_url': 'http://www.apache.org/licenses/', 'text_url': 'http://www.apache.org/licenses/LICENSE-2.0', 'reference_url': 'https://scancode-licensedb.aboutcode.org/apache-2.0', 'scancode_text_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE', 'scancode_data_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml', 'spdx_license_key': 'Apache-2.0', 'spdx_url': 'https://spdx.org/licenses/Apache-2.0'}]}]}]",
"package__other_license_expression": "",
"package__other_license_expression_spdx": "",
"package__other_license_detections": "",
"package__extracted_license_statement": "apache-2.0",
"package__notice_text": "",
"package__file_references": "[{'path': '.', 'size': 0, 'sha1': None, 'md5': None, 'sha256': None, 'sha512': None, 'extra_data': {}}]",
"package__extra_data": "",
"package__repository_homepage_url": "",
"package__repository_download_url": "",
"package__api_data_url": "",
"package__datasource_id": "about_file",
"package__purl": "pkg:about/commoncode"
},
{
"path": "samples/commoncode/configure",
"type": "file",
"name": "configure",
"base_name": "configure",
"extension": "",
"size": 6146,
"date": "2022-08-19",
"sha1": "5e193fc3f2cdd311c0c1de71c27b224356a78fc5",
"md5": "3ee29b003c75f0b51f44ffd1684d1e2f",
"sha256": "c877aaee7eafaac3dffca87cd15b802114a8114b3262fa16db9e7785ca0f7e02",
"mime_type": "text/x-shellscript",
"file_type": "Bourne-Again shell script, ASCII text executable",
"programming_language": "Bash",
"is_binary": false,
"is_text": true,
"is_archive": false,
"is_media": false,
"is_source": true,
"is_script": true,
"detected_license_expression": "apache-2.0",
"detected_license_expression_spdx": "Apache-2.0",
"percentage_of_license_text": 1.9,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
"scan_errors": ""
},
{
"path": "samples/commoncode/configure",
"license_expression": "apache-2.0",
"detection_log": "from-package-file",
"license_match__score": "100.00",
"start_line": 4,
"end_line": 4,
"license_match__matched_length": 6,
"license_match__match_coverage": "100.00",
"license_match__matcher": "1-spdx-id",
"license_match__license_expression": "apache-2.0",
"license_match__rule_identifier": "spdx-license-identifier: apache-2.0",
"license_match__referenced_filenames": [],
"license_match__is_license_text": false,
"license_match__is_license_notice": false,
"license_match__is_license_reference": false,
"license_match__is_license_tag": true,
"license_match__is_license_intro": false,
"license_match__rule_length": 6,
"license_match__rule_relevance": "100.00",
"license_match__licenses": "apache-2.0"
},
{
"path": "samples/commoncode/configure",
"license_expression": "apache-2.0",
"detection_log": "from-package-file",
"license_match__score": "100.00",
"start_line": 5,
"end_line": 5,
"license_match__matched_length": 8,
"license_match__match_coverage": "100.00",
"license_match__matcher": "2-aho",
"license_match__license_expression": "apache-2.0",
"license_match__rule_identifier": "apache-2.0_25.RULE",
"license_match__referenced_filenames": [],
"license_match__is_license_text": false,
"license_match__is_license_notice": false,
"license_match__is_license_reference": true,
"license_match__is_license_tag": false,
"license_match__is_license_intro": false,
"license_match__rule_length": 8,
"license_match__rule_relevance": "100.00",
"license_match__licenses": "apache-2.0"
},
{
"path": "samples/commoncode/configure",
"copyright": "Copyright (c) nexB Inc. and others",
"start_line": 3,
"end_line": 3
},
{
"path": "samples/commoncode/configure",
"holder": "nexB Inc. and others",
"start_line": 3,
"end_line": 3
},
{
"path": "samples/commoncode/configure",
"url": "http://www.apache.org/licenses/LICENSE-2.0",
"start_line": 5,
"end_line": 5
},
{
"path": "samples/commoncode/configure",
"url": "https://github.com/nexB/",
"start_line": 6,
"end_line": 6
},
{
"path": "samples/commoncode/configure",
"url": "https://aboutcode.org/",
"start_line": 7,
"end_line": 7
},
{
"path": "samples/commoncode/configure",
"url": "https://bootstrap.pypa.io/virtualenv.pyz",
"start_line": 45,
"end_line": 45
},
{
"path": "samples/commoncode/configure",
"url": "https://thirdparty.aboutcode.org/pypi/simple/links.html",
"start_line": 61,
"end_line": 61
},
{
"path": "samples/commoncode/configure",
"package__type": "autotools",
"package__namespace": "",
"package__name": "commoncode",
"package__version": "",
"package__qualifiers": "",
"package__subpath": "",
"package__primary_language": "",
"package__description": "",
"package__release_date": "",
"package__homepage_url": "",
"package__download_url": "",
"package__size": "",
"package__sha1": "",
"package__md5": "",
"package__sha256": "",
"package__sha512": "",
"package__bug_tracking_url": "",
"package__code_view_url": "",
"package__vcs_url": "",
"package__copyright": "",
"package__declared_license_expression": "apache-2.0",
"package__declared_license_expression_spdx": "Apache-2.0",
"package__license_detections": "[{'license_expression': 'apache-2.0', 'detection_log': ['from-package-file'], 'matches': [{'score': 100.0, 'start_line': 4, 'end_line': 4, 'matched_length': 6, 'match_coverage': 100.0, 'matcher': '1-spdx-id', 'license_expression': 'apache-2.0', 'rule_identifier': 'spdx-license-identifier: apache-2.0', 'referenced_filenames': [], 'is_license_text': False, 'is_license_notice': False, 'is_license_reference': False, 'is_license_tag': True, 'is_license_intro': False, 'rule_length': 6, 'rule_relevance': 100, 'licenses': [{'key': 'apache-2.0', 'name': 'Apache License 2.0', 'short_name': 'Apache 2.0', 'category': 'Permissive', 'is_exception': False, 'is_unknown': False, 'owner': 'Apache Software Foundation', 'homepage_url': 'http://www.apache.org/licenses/', 'text_url': 'http://www.apache.org/licenses/LICENSE-2.0', 'reference_url': 'https://scancode-licensedb.aboutcode.org/apache-2.0', 'scancode_text_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE', 'scancode_data_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml', 'spdx_license_key': 'Apache-2.0', 'spdx_url': 'https://spdx.org/licenses/Apache-2.0'}]}, {'score': 100.0, 'start_line': 5, 'end_line': 5, 'matched_length': 8, 'match_coverage': 100.0, 'matcher': '2-aho', 'license_expression': 'apache-2.0', 'rule_identifier': 'apache-2.0_25.RULE', 'referenced_filenames': [], 'is_license_text': False, 'is_license_notice': False, 'is_license_reference': True, 'is_license_tag': False, 'is_license_intro': False, 'rule_length': 8, 'rule_relevance': 100, 'licenses': [{'key': 'apache-2.0', 'name': 'Apache License 2.0', 'short_name': 'Apache 2.0', 'category': 'Permissive', 'is_exception': False, 'is_unknown': False, 'owner': 'Apache Software Foundation', 'homepage_url': 'http://www.apache.org/licenses/', 'text_url': 'http://www.apache.org/licenses/LICENSE-2.0', 'reference_url': 'https://scancode-licensedb.aboutcode.org/apache-2.0', 'scancode_text_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE', 'scancode_data_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml', 'spdx_license_key': 'Apache-2.0', 'spdx_url': 'https://spdx.org/licenses/Apache-2.0'}]}]}]",
"package__other_license_expression": "",
"package__other_license_expression_spdx": "",
"package__other_license_detections": "",
"package__extracted_license_statement": "",
"package__notice_text": "",
"package__file_references": "",
"package__extra_data": "",
"package__repository_homepage_url": "",
"package__repository_download_url": "",
"package__api_data_url": "",
"package__datasource_id": "autotools_configure",
"package__purl": "pkg:autotools/commoncode"
},
{
"path": "samples/commoncode/MANIFEST.in",
"type": "file",
"name": "MANIFEST.in",
"base_name": "MANIFEST",
"extension": ".in",
"size": 217,
"date": "2022-08-19",
"sha1": "6b981c44ce09601a98cb08c3f4ae1dfa9f065d26",
"md5": "f06c496b8f349671cac042d2e521b617",
"sha256": "f3c01c77a6e5fb8d42c5194f3c83364a109d00aca016d406cf867536ea68455c",
"mime_type": "text/plain",
"file_type": "ASCII text",
"programming_language": null,
"is_binary": false,
"is_text": true,
"is_archive": false,
"is_media": false,
"is_source": false,
"is_script": false,
"detected_license_expression": null,
"detected_license_expression_spdx": null,
"percentage_of_license_text": 0,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
"scan_errors": ""
},
{
"path": "samples/commoncode/NOTICE",
"type": "file",
"name": "NOTICE",
"base_name": "NOTICE",
"extension": "",
"size": 312,
"date": "2022-08-19",
"sha1": "c905c6124ef4ad55280f1e15d58cd6f72c90329e",
"md5": "18b8cd59f2c418716e25e80c7ae394a3",
"sha256": "0f264ae701ca9ed15711b3b31d60485e427ffaef34c262689720556297d68fc7",
"mime_type": "text/plain",
"file_type": "ASCII text",
"programming_language": null,
"is_binary": false,
"is_text": true,
"is_archive": false,
"is_media": false,
"is_source": false,
"is_script": false,
"detected_license_expression": "apache-2.0",
"detected_license_expression_spdx": "Apache-2.0",
"percentage_of_license_text": 28.57,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
"scan_errors": ""
},
{
"path": "samples/commoncode/NOTICE",
"license_expression": "apache-2.0",
"detection_log": "not-combined",
"license_match__score": "100.00",
"start_line": 3,
"end_line": 3,
"license_match__matched_length": 6,
"license_match__match_coverage": "100.00",
"license_match__matcher": "1-spdx-id",
"license_match__license_expression": "apache-2.0",
"license_match__rule_identifier": "spdx-license-identifier: apache-2.0",
"license_match__referenced_filenames": [],
"license_match__is_license_text": false,
"license_match__is_license_notice": false,
"license_match__is_license_reference": false,
"license_match__is_license_tag": true,
"license_match__is_license_intro": false,
"license_match__rule_length": 6,
"license_match__rule_relevance": "100.00",
"license_match__licenses": "apache-2.0"
},
{
"path": "samples/commoncode/NOTICE",
"license_expression": "apache-2.0",
"detection_log": "not-combined",
"license_match__score": "100.00",
"start_line": 4,
"end_line": 4,
"license_match__matched_length": 8,
"license_match__match_coverage": "100.00",
"license_match__matcher": "2-aho",
"license_match__license_expression": "apache-2.0",
"license_match__rule_identifier": "apache-2.0_25.RULE",
"license_match__referenced_filenames": [],
"license_match__is_license_text": false,
"license_match__is_license_notice": false,
"license_match__is_license_reference": true,
"license_match__is_license_tag": false,
"license_match__is_license_intro": false,
"license_match__rule_length": 8,
"license_match__rule_relevance": "100.00",
"license_match__licenses": "apache-2.0"
},
{
"path": "samples/commoncode/NOTICE",
"copyright": "Copyright (c) nexB Inc. and others",
"start_line": 2,
"end_line": 2
},
{
"path": "samples/commoncode/NOTICE",
"holder": "nexB Inc. and others",
"start_line": 2,
"end_line": 2
},
{
"path": "samples/commoncode/NOTICE",
"url": "http://www.apache.org/licenses/LICENSE-2.0",
"start_line": 4,
"end_line": 4
},
{
"path": "samples/commoncode/NOTICE",
"url": "https://github.com/nexB/commoncode",
"start_line": 5,
"end_line": 5
},
{
"path": "samples/commoncode/NOTICE",
"url": "https://aboutcode.org/",
"start_line": 6,
"end_line": 6
},
{
"path": "samples/commoncode/pyproject.toml",
"type": "file",
"name": "pyproject.toml",
"base_name": "pyproject",
"extension": ".toml",
"size": 867,
"date": "2022-08-19",
"sha1": "a6dd0585d2eb9315e8faf81e1a8a8fae47ebf397",
"md5": "69d0289a99cb1e15840a37c14ad69944",
"sha256": "bc78e7981214378a1c1f2cfea2acd597bb4c708657119d0807dfebf264a4f1d4",
"mime_type": "text/plain",
"file_type": "ASCII text",
"programming_language": null,
"is_binary": false,
"is_text": true,
"is_archive": false,
"is_media": false,
"is_source": false,
"is_script": false,
"detected_license_expression": null,
"detected_license_expression_spdx": null,
"percentage_of_license_text": 0,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
"scan_errors": ""
},
{
"path": "samples/commoncode/pyproject.toml",
"package__type": "pypi",
"package__namespace": "",
"package__name": "",
"package__version": "",
"package__qualifiers": "",
"package__subpath": "",
"package__primary_language": "Python",
"package__description": "",
"package__release_date": "",
"package__homepage_url": "",
"package__download_url": "",
"package__size": "",
"package__sha1": "",
"package__md5": "",
"package__sha256": "",
"package__sha512": "",
"package__bug_tracking_url": "",
"package__code_view_url": "",
"package__vcs_url": "",
"package__copyright": "",
"package__declared_license_expression": "apache-2.0",
"package__declared_license_expression_spdx": "Apache-2.0",
"package__license_detections": "[{'license_expression': 'apache-2.0', 'detection_log': ['not-combined'], 'matches': [{'score': 100.0, 'start_line': 1, 'end_line': 201, 'matched_length': 1584, 'match_coverage': 100.0, 'matcher': '1-hash', 'license_expression': 'apache-2.0', 'rule_identifier': 'apache-2.0.LICENSE', 'referenced_filenames': [], 'is_license_text': True, 'is_license_notice': False, 'is_license_reference': False, 'is_license_tag': False, 'is_license_intro': False, 'rule_length': 1584, 'rule_relevance': 100, 'licenses': [{'key': 'apache-2.0', 'name': 'Apache License 2.0', 'short_name': 'Apache 2.0', 'category': 'Permissive', 'is_exception': False, 'is_unknown': False, 'owner': 'Apache Software Foundation', 'homepage_url': 'http://www.apache.org/licenses/', 'text_url': 'http://www.apache.org/licenses/LICENSE-2.0', 'reference_url': 'https://scancode-licensedb.aboutcode.org/apache-2.0', 'scancode_text_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE', 'scancode_data_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml', 'spdx_license_key': 'Apache-2.0', 'spdx_url': 'https://spdx.org/licenses/Apache-2.0'}]}]}, {'license_expression': 'apache-2.0', 'detection_log': ['not-combined'], 'matches': [{'score': 100.0, 'start_line': 3, 'end_line': 3, 'matched_length': 6, 'match_coverage': 100.0, 'matcher': '1-spdx-id', 'license_expression': 'apache-2.0', 'rule_identifier': 'spdx-license-identifier: apache-2.0', 'referenced_filenames': [], 'is_license_text': False, 'is_license_notice': False, 'is_license_reference': False, 'is_license_tag': True, 'is_license_intro': False, 'rule_length': 6, 'rule_relevance': 100, 'licenses': [{'key': 'apache-2.0', 'name': 'Apache License 2.0', 'short_name': 'Apache 2.0', 'category': 'Permissive', 'is_exception': False, 'is_unknown': False, 'owner': 'Apache Software Foundation', 'homepage_url': 'http://www.apache.org/licenses/', 'text_url': 'http://www.apache.org/licenses/LICENSE-2.0', 'reference_url': 'https://scancode-licensedb.aboutcode.org/apache-2.0', 'scancode_text_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE', 'scancode_data_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml', 'spdx_license_key': 'Apache-2.0', 'spdx_url': 'https://spdx.org/licenses/Apache-2.0'}]}, {'score': 100.0, 'start_line': 4, 'end_line': 4, 'matched_length': 8, 'match_coverage': 100.0, 'matcher': '2-aho', 'license_expression': 'apache-2.0', 'rule_identifier': 'apache-2.0_25.RULE', 'referenced_filenames': [], 'is_license_text': False, 'is_license_notice': False, 'is_license_reference': True, 'is_license_tag': False, 'is_license_intro': False, 'rule_length': 8, 'rule_relevance': 100, 'licenses': [{'key': 'apache-2.0', 'name': 'Apache License 2.0', 'short_name': 'Apache 2.0', 'category': 'Permissive', 'is_exception': False, 'is_unknown': False, 'owner': 'Apache Software Foundation', 'homepage_url': 'http://www.apache.org/licenses/', 'text_url': 'http://www.apache.org/licenses/LICENSE-2.0', 'reference_url': 'https://scancode-licensedb.aboutcode.org/apache-2.0', 'scancode_text_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE', 'scancode_data_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml', 'spdx_license_key': 'Apache-2.0', 'spdx_url': 'https://spdx.org/licenses/Apache-2.0'}]}]}, {'license_expression': 'apache-2.0', 'detection_log': ['not-combined'], 'matches': [{'score': 100.0, 'start_line': 4, 'end_line': 4, 'matched_length': 4, 'match_coverage': 100.0, 'matcher': '2-aho', 'license_expression': 'apache-2.0', 'rule_identifier': 'apache-2.0_65.RULE', 'referenced_filenames': [], 'is_license_text': False, 'is_license_notice': False, 'is_license_reference': False, 'is_license_tag': True, 'is_license_intro': False, 'rule_length': 4, 'rule_relevance': 100, 'licenses': [{'key': 'apache-2.0', 'name': 'Apache License 2.0', 'short_name': 'Apache 2.0', 'category': 'Permissive', 'is_exception': False, 'is_unknown': False, 'owner': 'Apache Software Foundation', 'homepage_url': 'http://www.apache.org/licenses/', 'text_url': 'http://www.apache.org/licenses/LICENSE-2.0', 'reference_url': 'https://scancode-licensedb.aboutcode.org/apache-2.0', 'scancode_text_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE', 'scancode_data_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml', 'spdx_license_key': 'Apache-2.0', 'spdx_url': 'https://spdx.org/licenses/Apache-2.0'}]}]}]",
"package__other_license_expression": "",
"package__other_license_expression_spdx": "",
"package__other_license_detections": "",
"package__extracted_license_statement": "",
"package__notice_text": "",
"package__file_references": "",
"package__extra_data": "",
"package__repository_homepage_url": "",
"package__repository_download_url": "",
"package__api_data_url": "",
"package__datasource_id": "pypi_pyproject_toml",
"package__purl": ""
},
{
"path": "samples/commoncode/README.rst",
"type": "file",
"name": "README.rst",
"base_name": "README",
"extension": ".rst",
"size": 700,
"date": "2022-08-19",
"sha1": "0fca817cf0c9250c1f09331ea4ef30f74b20edae",
"md5": "0206d091e76cc145ddc59c310ca3f2f4",
"sha256": "ce1492c98500cfcf5ee7174893683b6b403cc795b4253c324a6b4152328b2555",
"mime_type": "text/plain",
"file_type": "ASCII text",
"programming_language": null,
"is_binary": false,
"is_text": true,
"is_archive": false,
"is_media": false,
"is_source": false,
"is_script": false,
"detected_license_expression": "apache-2.0",
"detected_license_expression_spdx": "Apache-2.0",
"percentage_of_license_text": 4.26,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
"scan_errors": ""
},
{
"path": "samples/commoncode/README.rst",
"license_expression": "apache-2.0",
"detection_log": "not-combined",
"license_match__score": "100.00",
"start_line": 4,
"end_line": 4,
"license_match__matched_length": 4,
"license_match__match_coverage": "100.00",
"license_match__matcher": "2-aho",
"license_match__license_expression": "apache-2.0",
"license_match__rule_identifier": "apache-2.0_65.RULE",
"license_match__referenced_filenames": [],
"license_match__is_license_text": false,
"license_match__is_license_notice": false,
"license_match__is_license_reference": false,
"license_match__is_license_tag": true,
"license_match__is_license_intro": false,
"license_match__rule_length": 4,
"license_match__rule_relevance": "100.00",
"license_match__licenses": "apache-2.0"
},
{
"path": "samples/commoncode/README.rst",
"copyright": "Copyright (c) nexB. Inc. and others",
"start_line": 5,
"end_line": 5
},
{
"path": "samples/commoncode/README.rst",
"holder": "nexB. Inc. and others",
"start_line": 5,
"end_line": 5
},
{
"path": "samples/commoncode/README.rst",
"url": "https://github.com/nexB/commoncode",
"start_line": 6,
"end_line": 6
},
{
"path": "samples/commoncode/README.rst",
"url": "https://aboutcode.org/",
"start_line": 11,
"end_line": 11
},
{
"path": "samples/commoncode/README.rst",
"url": "https://github.com/nexB/",
"start_line": 11,
"end_line": 11
},
{
"path": "samples/commoncode/requirements-dev.txt",
"type": "file",
"name": "requirements-dev.txt",
"base_name": "requirements-dev",
"extension": ".txt",
"size": 0,
"date": "2022-08-19",
"sha1": null,
"md5": null,
"sha256": null,
"mime_type": "inode/x-empty",
"file_type": "empty",
"programming_language": null,
"is_binary": false,
"is_text": true,
"is_archive": false,
"is_media": false,
"is_source": false,
"is_script": false,
"detected_license_expression": null,
"detected_license_expression_spdx": null,
"percentage_of_license_text": 0,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
"scan_errors": ""
},
{
"path": "samples/commoncode/requirements-dev.txt",
"package__type": "pypi",
"package__namespace": "",
"package__name": "",
"package__version": "",
"package__qualifiers": "",
"package__subpath": "",
"package__primary_language": "Python",
"package__description": "",
"package__release_date": "",
"package__homepage_url": "",
"package__download_url": "",
"package__size": "",
"package__sha1": "",
"package__md5": "",
"package__sha256": "",
"package__sha512": "",
"package__bug_tracking_url": "",
"package__code_view_url": "",
"package__vcs_url": "",
"package__copyright": "",
"package__declared_license_expression": "apache-2.0",
"package__declared_license_expression_spdx": "Apache-2.0",
"package__license_detections": "[{'license_expression': 'apache-2.0', 'detection_log': ['not-combined'], 'matches': [{'score': 100.0, 'start_line': 1, 'end_line': 201, 'matched_length': 1584, 'match_coverage': 100.0, 'matcher': '1-hash', 'license_expression': 'apache-2.0', 'rule_identifier': 'apache-2.0.LICENSE', 'referenced_filenames': [], 'is_license_text': True, 'is_license_notice': False, 'is_license_reference': False, 'is_license_tag': False, 'is_license_intro': False, 'rule_length': 1584, 'rule_relevance': 100, 'licenses': [{'key': 'apache-2.0', 'name': 'Apache License 2.0', 'short_name': 'Apache 2.0', 'category': 'Permissive', 'is_exception': False, 'is_unknown': False, 'owner': 'Apache Software Foundation', 'homepage_url': 'http://www.apache.org/licenses/', 'text_url': 'http://www.apache.org/licenses/LICENSE-2.0', 'reference_url': 'https://scancode-licensedb.aboutcode.org/apache-2.0', 'scancode_text_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE', 'scancode_data_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml', 'spdx_license_key': 'Apache-2.0', 'spdx_url': 'https://spdx.org/licenses/Apache-2.0'}]}]}, {'license_expression': 'apache-2.0', 'detection_log': ['not-combined'], 'matches': [{'score': 100.0, 'start_line': 3, 'end_line': 3, 'matched_length': 6, 'match_coverage': 100.0, 'matcher': '1-spdx-id', 'license_expression': 'apache-2.0', 'rule_identifier': 'spdx-license-identifier: apache-2.0', 'referenced_filenames': [], 'is_license_text': False, 'is_license_notice': False, 'is_license_reference': False, 'is_license_tag': True, 'is_license_intro': False, 'rule_length': 6, 'rule_relevance': 100, 'licenses': [{'key': 'apache-2.0', 'name': 'Apache License 2.0', 'short_name': 'Apache 2.0', 'category': 'Permissive', 'is_exception': False, 'is_unknown': False, 'owner': 'Apache Software Foundation', 'homepage_url': 'http://www.apache.org/licenses/', 'text_url': 'http://www.apache.org/licenses/LICENSE-2.0', 'reference_url': 'https://scancode-licensedb.aboutcode.org/apache-2.0', 'scancode_text_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE', 'scancode_data_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml', 'spdx_license_key': 'Apache-2.0', 'spdx_url': 'https://spdx.org/licenses/Apache-2.0'}]}, {'score': 100.0, 'start_line': 4, 'end_line': 4, 'matched_length': 8, 'match_coverage': 100.0, 'matcher': '2-aho', 'license_expression': 'apache-2.0', 'rule_identifier': 'apache-2.0_25.RULE', 'referenced_filenames': [], 'is_license_text': False, 'is_license_notice': False, 'is_license_reference': True, 'is_license_tag': False, 'is_license_intro': False, 'rule_length': 8, 'rule_relevance': 100, 'licenses': [{'key': 'apache-2.0', 'name': 'Apache License 2.0', 'short_name': 'Apache 2.0', 'category': 'Permissive', 'is_exception': False, 'is_unknown': False, 'owner': 'Apache Software Foundation', 'homepage_url': 'http://www.apache.org/licenses/', 'text_url': 'http://www.apache.org/licenses/LICENSE-2.0', 'reference_url': 'https://scancode-licensedb.aboutcode.org/apache-2.0', 'scancode_text_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE', 'scancode_data_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml', 'spdx_license_key': 'Apache-2.0', 'spdx_url': 'https://spdx.org/licenses/Apache-2.0'}]}]}, {'license_expression': 'apache-2.0', 'detection_log': ['not-combined'], 'matches': [{'score': 100.0, 'start_line': 4, 'end_line': 4, 'matched_length': 4, 'match_coverage': 100.0, 'matcher': '2-aho', 'license_expression': 'apache-2.0', 'rule_identifier': 'apache-2.0_65.RULE', 'referenced_filenames': [], 'is_license_text': False, 'is_license_notice': False, 'is_license_reference': False, 'is_license_tag': True, 'is_license_intro': False, 'rule_length': 4, 'rule_relevance': 100, 'licenses': [{'key': 'apache-2.0', 'name': 'Apache License 2.0', 'short_name': 'Apache 2.0', 'category': 'Permissive', 'is_exception': False, 'is_unknown': False, 'owner': 'Apache Software Foundation', 'homepage_url': 'http://www.apache.org/licenses/', 'text_url': 'http://www.apache.org/licenses/LICENSE-2.0', 'reference_url': 'https://scancode-licensedb.aboutcode.org/apache-2.0', 'scancode_text_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE', 'scancode_data_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml', 'spdx_license_key': 'Apache-2.0', 'spdx_url': 'https://spdx.org/licenses/Apache-2.0'}]}]}]",
"package__other_license_expression": "",
"package__other_license_expression_spdx": "",
"package__other_license_detections": "",
"package__extracted_license_statement": "",
"package__notice_text": "",
"package__file_references": "",
"package__extra_data": "",
"package__repository_homepage_url": "",
"package__repository_download_url": "",
"package__api_data_url": "",
"package__datasource_id": "pip_requirements",
"package__purl": ""
},
{
"path": "samples/commoncode/requirements.txt",
"type": "file",
"name": "requirements.txt",
"base_name": "requirements",
"extension": ".txt",
"size": 238,
"date": "2022-08-19",
"sha1": "747829f816cc066d3ebf9da8a4465e88e61bf722",
"md5": "773ec20fb7fc9745f331dbc684fa6b0f",
"sha256": "c38ddbdcd38a1a5b1a96cc68519048539e7bfa152c5d7072417039cd7cb28d88",
"mime_type": "text/plain",
"file_type": "ASCII text",
"programming_language": null,
"is_binary": false,
"is_text": true,
"is_archive": false,
"is_media": false,
"is_source": false,
"is_script": false,
"detected_license_expression": null,
"detected_license_expression_spdx": null,
"percentage_of_license_text": 0,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
"scan_errors": ""
},
{
"path": "samples/commoncode/requirements.txt",
"package__type": "pypi",
"package__namespace": "",
"package__name": "",
"package__version": "",
"package__qualifiers": "",
"package__subpath": "",
"package__primary_language": "Python",
"package__description": "",
"package__release_date": "",
"package__homepage_url": "",
"package__download_url": "",
"package__size": "",
"package__sha1": "",
"package__md5": "",
"package__sha256": "",
"package__sha512": "",
"package__bug_tracking_url": "",
"package__code_view_url": "",
"package__vcs_url": "",
"package__copyright": "",
"package__declared_license_expression": "apache-2.0",
"package__declared_license_expression_spdx": "Apache-2.0",
"package__license_detections": "[{'license_expression': 'apache-2.0', 'detection_log': ['not-combined'], 'matches': [{'score': 100.0, 'start_line': 1, 'end_line': 201, 'matched_length': 1584, 'match_coverage': 100.0, 'matcher': '1-hash', 'license_expression': 'apache-2.0', 'rule_identifier': 'apache-2.0.LICENSE', 'referenced_filenames': [], 'is_license_text': True, 'is_license_notice': False, 'is_license_reference': False, 'is_license_tag': False, 'is_license_intro': False, 'rule_length': 1584, 'rule_relevance': 100, 'licenses': [{'key': 'apache-2.0', 'name': 'Apache License 2.0', 'short_name': 'Apache 2.0', 'category': 'Permissive', 'is_exception': False, 'is_unknown': False, 'owner': 'Apache Software Foundation', 'homepage_url': 'http://www.apache.org/licenses/', 'text_url': 'http://www.apache.org/licenses/LICENSE-2.0', 'reference_url': 'https://scancode-licensedb.aboutcode.org/apache-2.0', 'scancode_text_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE', 'scancode_data_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml', 'spdx_license_key': 'Apache-2.0', 'spdx_url': 'https://spdx.org/licenses/Apache-2.0'}]}]}, {'license_expression': 'apache-2.0', 'detection_log': ['not-combined'], 'matches': [{'score': 100.0, 'start_line': 3, 'end_line': 3, 'matched_length': 6, 'match_coverage': 100.0, 'matcher': '1-spdx-id', 'license_expression': 'apache-2.0', 'rule_identifier': 'spdx-license-identifier: apache-2.0', 'referenced_filenames': [], 'is_license_text': False, 'is_license_notice': False, 'is_license_reference': False, 'is_license_tag': True, 'is_license_intro': False, 'rule_length': 6, 'rule_relevance': 100, 'licenses': [{'key': 'apache-2.0', 'name': 'Apache License 2.0', 'short_name': 'Apache 2.0', 'category': 'Permissive', 'is_exception': False, 'is_unknown': False, 'owner': 'Apache Software Foundation', 'homepage_url': 'http://www.apache.org/licenses/', 'text_url': 'http://www.apache.org/licenses/LICENSE-2.0', 'reference_url': 'https://scancode-licensedb.aboutcode.org/apache-2.0', 'scancode_text_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE', 'scancode_data_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml', 'spdx_license_key': 'Apache-2.0', 'spdx_url': 'https://spdx.org/licenses/Apache-2.0'}]}, {'score': 100.0, 'start_line': 4, 'end_line': 4, 'matched_length': 8, 'match_coverage': 100.0, 'matcher': '2-aho', 'license_expression': 'apache-2.0', 'rule_identifier': 'apache-2.0_25.RULE', 'referenced_filenames': [], 'is_license_text': False, 'is_license_notice': False, 'is_license_reference': True, 'is_license_tag': False, 'is_license_intro': False, 'rule_length': 8, 'rule_relevance': 100, 'licenses': [{'key': 'apache-2.0', 'name': 'Apache License 2.0', 'short_name': 'Apache 2.0', 'category': 'Permissive', 'is_exception': False, 'is_unknown': False, 'owner': 'Apache Software Foundation', 'homepage_url': 'http://www.apache.org/licenses/', 'text_url': 'http://www.apache.org/licenses/LICENSE-2.0', 'reference_url': 'https://scancode-licensedb.aboutcode.org/apache-2.0', 'scancode_text_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE', 'scancode_data_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml', 'spdx_license_key': 'Apache-2.0', 'spdx_url': 'https://spdx.org/licenses/Apache-2.0'}]}]}, {'license_expression': 'apache-2.0', 'detection_log': ['not-combined'], 'matches': [{'score': 100.0, 'start_line': 4, 'end_line': 4, 'matched_length': 4, 'match_coverage': 100.0, 'matcher': '2-aho', 'license_expression': 'apache-2.0', 'rule_identifier': 'apache-2.0_65.RULE', 'referenced_filenames': [], 'is_license_text': False, 'is_license_notice': False, 'is_license_reference': False, 'is_license_tag': True, 'is_license_intro': False, 'rule_length': 4, 'rule_relevance': 100, 'licenses': [{'key': 'apache-2.0', 'name': 'Apache License 2.0', 'short_name': 'Apache 2.0', 'category': 'Permissive', 'is_exception': False, 'is_unknown': False, 'owner': 'Apache Software Foundation', 'homepage_url': 'http://www.apache.org/licenses/', 'text_url': 'http://www.apache.org/licenses/LICENSE-2.0', 'reference_url': 'https://scancode-licensedb.aboutcode.org/apache-2.0', 'scancode_text_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE', 'scancode_data_url': 'https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml', 'spdx_license_key': 'Apache-2.0', 'spdx_url': 'https://spdx.org/licenses/Apache-2.0'}]}]}]",
"package__other_license_expression": "",
"package__other_license_expression_spdx": "",
"package__other_license_detections": "",
"package__extracted_license_statement": "",
"package__notice_text": "",
"package__file_references": "",
"package__extra_data": "",
"package__repository_homepage_url": "",
"package__repository_download_url": "",
"package__api_data_url": "",
"package__datasource_id": "pip_requirements",
"package__purl": ""
},
{
"path": "samples/commoncode/setup.cfg",
"type": "file",
"name": "setup.cfg",
"base_name": "setup",
"extension": ".cfg",
"size": 1396,
"date": "2022-08-19",
"sha1": "f172cfa20638c4bc88d648168a484016a7457429",
"md5": "7d94c8e633aeba50c23428e1cb6f9342",
"sha256": "023f914e17bc7cafa23708c8f254ffd858ae9123fad6afb73db22d8052ad64a3",
"mime_type": "text/plain",
"file_type": "ASCII text",
"programming_language": null,
"is_binary": false,
"is_text": true,
"is_archive": false,
"is_media": false,
"is_source": false,
"is_script": false,
"detected_license_expression": "apache-2.0",
"detected_license_expression_spdx": "Apache-2.0",
"percentage_of_license_text": 4.15,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
"scan_errors": ""
},
{
"path": "samples/commoncode/setup.cfg",
"license_expression": "apache-2.0",
"detection_log": "not-combined",
"license_match__score": "100.00",
"start_line": 3,
"end_line": 3,
"license_match__matched_length": 4,
"license_match__match_coverage": "100.00",
"license_match__matcher": "2-aho",
"license_match__license_expression": "apache-2.0",
"license_match__rule_identifier": "apache-2.0_176.RULE",
"license_match__referenced_filenames": [],
"license_match__is_license_text": false,
"license_match__is_license_notice": false,
"license_match__is_license_reference": true,
"license_match__is_license_tag": false,
"license_match__is_license_intro": false,
"license_match__rule_length": 4,
"license_match__rule_relevance": "100.00",
"license_match__licenses": "apache-2.0"
},
{