-
Notifications
You must be signed in to change notification settings - Fork 846
/
spec.yml
5787 lines (5774 loc) · 178 KB
/
spec.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-License-Identifier: MIT
basePath: /api/unstable/
externalDocs:
description: CHAOSS Metric Definitions
url: https://chaoss.community/metrics/
host: ai.chaoss.io
info:
title: Augur REST API
version: 0.60.0
openapi: 3.1.0
paths:
#utility endpoints
/repo-groups:
get:
description: Get all the downloaded repo groups.
operationId: Get All Repo Groups
responses:
'200':
description: OK
schema:
items:
properties:
data_collection_date:
description: 'Example: 2019-06-05T13:36:25.000Z'
type: string
data_source:
description: 'Example: git'
type: string
repo_group_id:
description: 'Example: 20'
type: integer
rg_description:
description: 'Example: Rails Ecosystem.'
type: string
rg_last_modified:
description: 'Example: 2019-06-03T15:55:20.000Z'
type: string
rg_name:
description: 'Example: Rails'
type: string
rg_recache:
description: 'Example: 0'
type: integer
rg_type:
description: 'Example: GitHub Organization'
type: string
rg_website:
description: 'Example: '
type: string
tool_source:
description: 'Example: load'
type: string
tool_version:
description: 'Example: one'
type: string
type: array
tags:
- utility
/repos:
get:
description: Get all the downloaded repos.
operationId: Get All Repos
responses:
'200':
description: OK
schema:
items:
properties:
base64_url:
description: 'Example: Z2l0aHViLmNvbS9hcGFjaGUvaW5jdWJhdG9yLWFyZ3VzLmdpdA=='
type: string
commits_all_time:
description: 'Example: None'
type: string
description:
description: 'Example: None'
type: string
issues_all_time:
description: 'Example: None'
type: string
repo_id:
description: 'Example: 21996'
type: integer
repo_name:
description: 'Example: incubator-argus'
type: string
repo_status:
description: 'Example: Update'
type: string
rg_name:
description: 'Example: Apache'
type: string
url:
description: 'Example: github.com/apache/incubator-argus.git'
type: string
type: array
tags:
- utility
/repos/:id:
get:
description: Get a downloaded repo by its ID in Augur. The schema block below says it is an array, but it is not.
operationId: Get Repo By ID
responses:
'200':
description: OK
schema:
items:
properties:
base64_url:
description: 'Base64 encode of the full URL. Example Z2l0aHViLmNvbS8zc2NhbGUvM3NjYWxlLW9wZXJhdG9yLW1ldGFkYXRh'
type: string
description:
description: 'Repository description. Example: null'
type: string
commits_all_time:
description: 'How many commits have been made to this repository? Example: 24'
type: integer
issues_all_time:
description: 'How many issues have been raised on this repository? Example: 1'
type: integer
pull_requests_all_time:
description: 'How many pull requests have been made to this repository? Example: 7'
type: integer
repo_id:
description: 'Repository ID, should match provided URL parameter. Example: 25551'
type: integer
repo_name:
description: 'Name of the provided repository. Example: 3scale-operator-metadata'
type: string
rg_name:
description: 'Name of the repository group containing this repo. Example: 3scale'
type: string
repo_group_id:
description: 'ID of the repository group containing this repo. Example: 25431'
type: integer
url:
description: 'URL of this repository, sans leading protocol. Example: github.com/3scale/3scale-operator-metadata'
type: string
type: array
tags:
- utility
/owner/:owner/repo/:repo:
get:
description: Get the repo_group_id and repo_id of a particular repo.
operationId: Get Repo by Owner and Repo Name
parameters:
- description: Repo Owner
in: path
name: owner
schema:
type: string
type: string
- description: Repo Name
in: path
name: repo
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
repo_group_id:
description: 'Example: 23'
type: integer
repo_id:
description: 'Example: 21339'
type: integer
type: array
tags:
- utility
/rg-name/:rg_name/repo-name/:repo_name:
get:
description: Get the repo_group_id and repo_id of a particular repo.
operationId: Get Repo by Repo Group Name and Repo Name
parameters:
- description: Repo Group Name
in: path
name: rg_name
schema:
type: string
type: string
- description: Repo Name
in: path
name: repo_name
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
repo_git:
description: 'Example: https://github.com/rails/rails.git'
type: string
repo_group_id:
description: 'Example: 20'
type: integer
repo_id:
description: 'Example: 21000'
type: integer
type: array
tags:
- utility
/rg-name/:rg_name:
get:
description: Get the repo_id of a particular repo group.
operationId: Get Repo by Repo Name
parameters:
- description: Repo Group Name
in: path
name: rg_name
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
repo_group_id:
description: 'Example: 20'
type: integer
rg_name:
description: 'Example: Rails'
type: string
type: array
tags:
- utility
/repo-groups/:repo_group_id/repos:
get:
description: Get all the repos in a repo group.
operationId: Get Repos in Repo Group
parameters:
- description: Repository Group ID
in: path
name: repo_group_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
commits_all_time:
description: 'Example: 6874'
type: integer
description:
description: 'Example: None'
type: string
issues_all_time:
description: 'Example: 81'
type: integer
repo_id:
description: 'Example: 21326'
type: integer
repo_name:
description: 'Example: graphql-js'
type: string
repo_status:
description: 'Example: Complete'
type: string
url:
description: 'Example: https://github.com/graphql/graphql-js.git'
type: string
type: array
tags:
- utility
/repo-groups/:repo_group_id/top-insights:
get:
description: Get all the downloaded repo groups.
operationId: Get Top Insights
parameters:
- description: Repository Group ID
in: path
name: repo_group_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
data_collection_date:
description: 'Example: 2019-06-05T13:36:25.000Z'
type: string
data_source:
description: 'Example: git'
type: string
repo_group_id:
description: 'Example: 20'
type: integer
rg_description:
description: 'Example: Rails Ecosystem.'
type: string
rg_last_modified:
description: 'Example: 2019-06-03T15:55:20.000Z'
type: string
rg_name:
description: 'Example: Rails'
type: string
rg_recache:
description: 'Example: 0'
type: integer
rg_type:
description: 'Example: GitHub Organization'
type: string
rg_website:
description: 'Example: '
type: string
tool_source:
description: 'Example: load'
type: string
tool_version:
description: 'Example: one'
type: string
type: array
tags:
- utility
#risk endpoints
/metadata/repo_info:
get:
description: 'Returns the metadata about all repositories in an Augur instance, using information from a git platform (GitHub, GitLab, etc.). Each record includes the default branch name, repository license file, forks, stars, watchers, and committers. Also includes metadata about current repository issue and pull request status and counts.'
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/focus-areas/business-risk.md
operationId: Activity Metadata (Repo)
responses:
'200':
description: OK
schema:
items:
properties:
repo_git:
description: 'Example: https://github.com/chaoss/augur'
type: string
repo_name:
description: 'Example: augur'
type: string
repo_id:
description: 'Example: 25540'
type: integer
default_branch:
description: 'Example: Main'
type: string
license:
description: 'Example: MIT'
type: string
fork_count:
description: 'Example: 554'
type: integer
watchers_count:
description: 'Example: 424'
type: integer
stars_count:
description: 'Example: 443'
type: integer
commits_count:
description: '4434'
type: integer
committers_count:
description: 'Example: 42'
type: integer
open_issues:
description: 'Example: 7'
type: integer
issues_count:
description: 'Example: 23332'
type: integer
issues_closed:
description: 'Example: 23322'
type: integer
pull_request_count:
description: 'Example: 19445'
type: integer
pull_requests_open:
description: 'Example: 10'
type: integer
pull_requests_closed:
description: 'Example: 19435'
type: integer
pull_requests_merged:
description: 'Example: 17473'
type: integer
type: array
tags:
- risk
/metadata/contributions_count:
get:
description: 'Returns a list of repositories contributed to by all the contributors in an Augur Instance: INCLUDING all repositories on a platform, *not* merely those repositories in the Augur Instance. Numerical totals represent total CONTRIBUTIONS.'
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/focus-areas/business-risk.md
operationId: Contributions Count (Repo)
responses:
'200':
description: OK
schema:
items:
properties:
repo_git:
description: 'Example: https://github.com/chaoss/augur'
type: string
contributions:
description: 'Example: 43301'
type: integer
type: array
tags:
- risk
/metadata/contributors_count:
get:
description: 'Returns a list of repositories contributed to by all the contributors in an Augur Instance: INCLUDING all repositories on a platform, *not* merely those repositories in the Augur Instance. Numerical totals represent total CONTRIBUTORS.'
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/focus-areas/business-risk.md
operationId: Contributors Count (Repo)
responses:
'200':
description: OK
schema:
items:
properties:
repo_git:
description: 'Example: https://github.com/chaoss/augur'
type: string
contributors:
description: 'Example: 77'
type: integer
type: array
tags:
- risk
/repo-groups/:repo_group_id/average-issue-resolution-time:
get:
description: 'The average issue resolution time. '
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/focus-areas/business-risk.md
operationId: Average Issue Resolution Time (Repo Group)
parameters:
- description: Repository Group ID
in: path
name: repo_group_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
avg_issue_resolution_time:
description: 'Example: 1413 days 15:39:48'
type: string
repo_id:
description: 'Example: 21353'
type: integer
repo_name:
description: 'Example: open_id_authentication'
type: string
type: array
tags:
- risk
/repos/:repo_id/average-issue-resolution-time:
get:
description: 'The average issue resolution time. '
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/focus-areas/business-risk.md
operationId: Average Issue Resolution Time (Repo)
parameters:
- description: Repository ID.
in: path
name: repo_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
avg_issue_resolution_time:
description: 'Example: 276 days 13:54:13.2'
type: string
repo_name:
description: 'Example: maven-release'
type: string
type: array
tags:
- risk
/repo-groups/:repo_group_id/cii-best-practices-badge:
get:
description: 'The CII Best Practices Badge level. '
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/focus-areas/security.md
operationId: CII Best Practices Badge (Repo Group)
parameters:
- description: Repository Group ID
in: path
name: repo_group_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
badge_level:
description: 'Example: in_progress'
type: string
repo_id:
description: 'Example: 21252'
type: integer
repo_name:
description: 'Example: php-legal-licenses'
type: string
type: array
tags:
- risk
/repos/:repo_id/cii-best-practices-badge:
get:
description: 'The CII Best Practices Badge level. '
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/focus-areas/security.md
operationId: CII Best Practices Badge (Repo)
parameters:
- description: Repository ID.
in: path
name: repo_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
badge_level:
description: 'Example: passing'
type: string
repo_name:
description: 'Example: trickster'
type: string
type: array
tags:
- risk
/repo-groups/:repo_group_id/committers:
get:
description: 'Number of persons opening an issue for the first time. '
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/metrics/Committers.md
operationId: Committers (Repo Group)
parameters:
- description: Repository Group ID
in: path
name: repo_group_id
schema:
type: string
type: string
- description: Periodicity specification.
in: path
name: period
schema:
type: string
type: string
- description: 'Beginning date specification. E.g. values: 2018, 2018-05, 2019-05-01'
in: path
name: begin_date
schema:
type: string
type: string
- description: 'Ending date specification. E.g. values: 2018, 2018-05, 2019-05-01'
in: path
name: end_date
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
count:
description: 'Example: 372'
type: integer
date:
description: 'Example: 2007-01-01T00:00:00.000Z'
type: string
rg_name:
description: 'Example: Comcast'
type: string
type: array
tags:
- risk
/repos/:repo_id/committers:
get:
description: 'Number of persons contributing with an accepted commit for the
first time. '
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/metrics/Committers.md
operationId: Committers (Repo)
parameters:
- description: Repository ID.
in: path
name: repo_id
schema:
type: string
type: string
- description: Periodicity specification.
in: path
name: period
schema:
type: string
type: string
- description: 'Beginning date specification. E.g. values: 2018, 2018-05, 2019-05-01'
in: path
name: begin_date
schema:
type: string
type: string
- description: 'Ending date specification. E.g. values: 2018, 2018-05, 2019-05-01'
in: path
name: end_date
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
count:
description: 'Example: 1'
type: integer
date:
description: 'Example: 2018-10-25T00:00:00.000Z'
type: string
repo_name:
description: 'Example: weasel'
type: string
rg_name:
description: 'Example: Comcast'
type: string
type: array
tags:
- risk
/repo-groups/:repo_group_id/fork-count:
get:
description: 'Fork count. '
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/focus-areas/business-risk.md
operationId: Fork Count (Repo Group)
parameters:
- description: Repository Group ID
in: path
name: repo_group_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
forks:
description: 'Example: 4'
type: integer
repo_id:
description: 'Example: 21364'
type: integer
repo_name:
description: 'Example: irs_process_scripts'
type: string
type: array
tags:
- risk
/repos/:repo_id/fork-count:
get:
description: 'Fork count. '
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/focus-areas/business-risk.md
operationId: Fork Count (Repo)
parameters:
- description: Repository ID.
in: path
name: repo_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
forks:
description: 'Example: 844'
type: integer
repo_name:
description: 'Example: graphiql'
type: string
type: array
tags:
- risk
/repo-groups/:repo_group_id/forks:
get:
description: 'A time series of fork count. '
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/focus-areas/business-risk.md
operationId: Forks (Repo Group)
parameters:
- description: Repository Group ID
in: path
name: repo_group_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
date:
description: 'Example: 2019-07-03T23:26:42.000Z'
type: string
forks:
description: 'Example: 519'
type: integer
repo_id:
description: 'Example: 21036'
type: integer
repo_name:
description: 'Example: jquery-ujs'
type: string
type: array
tags:
- risk
/repos/:repo_id/forks:
get:
description: 'A time series of fork count. '
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/focus-areas/business-risk.md
operationId: Forks (Repo)
parameters:
- description: Repository ID.
in: path
name: repo_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
date:
description: 'Example: 2019-07-03T23:27:42.000Z'
type: string
forks:
description: 'Example: 843'
type: integer
repo_name:
description: 'Example: graphiql'
type: string
type: array
tags:
- risk
/repo-groups/:repo_group_id/license-coverage:
get:
description: 'Number of persons opening an issue for the first time. '
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/metrics/License_Coverage.md
operationId: License Coverage (Repo Group)
parameters:
- description: Repository Group ID
in: path
name: repo_group_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
coverage:
description: 'Example: 0.373'
type: string
license_declared_files:
description: 'Example: 19'
type: integer
name:
description: 'Example: ActorServiceRegistry'
type: string
total_files:
description: 'Example: 51'
type: integer
type: array
tags:
- risk
/repos/:repo_id/license-coverage:
get:
description: 'Number of persons contributing with an accepted commit for the
first time. '
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/metrics/License_Coverage.md
operationId: License Coverage (Repo)
parameters:
- description: Repository ID.
in: path
name: repo_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
coverage:
description: 'Example: 0.347'
type: string
license_declared_file:
description: 'Example: 33'
type: integer
repo_name:
description: 'Example: zucchini'
type: string
total_files:
description: 'Example: 95'
type: integer
type: array
tags:
- risk
/repo-groups/:repo_group_id/license-declared:
get:
description: 'An enumeration of all the licenses declared in a repo group at the file level.'
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/metrics/License_Coverage.md
operationId: License Declared (Repo Group)
parameters:
- description: Repository Group ID
in: path
name: repo_group_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
name:
description: 'Example: trickster'
type: string
note:
description: 'Example: '
type: string
short_name:
description: 'Example: Apache-2.0'
type: string
type: array
tags:
- risk
/repos/:repo_id/license-declared:
get:
description: 'An enumeration of all the licenses declared in a repo at the file level.'
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/focus-areas/licensing/license-declared.md
operationId: License Declared (Repo)
parameters:
- description: Repository ID.
in: path
name: repo_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
name:
description: 'Example: trickster'
type: string
note:
description: 'Example: '
type: string
short_name:
description: 'Example: Apache-2.0'
type: string
type: array
tags:
- risk
/repo-groups/:repo_group_id/languages:
get:
description: 'The primary language of the repository. '
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/focus-areas/security.md
operationId: Languages (Repo Group)
parameters:
- description: Repository Group ID
in: path
name: repo_group_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
primary_language:
description: 'Example: Go'
type: string
repo_id:
description: 'Example: 21277'
type: integer
type: array
tags:
- risk
/repo-groups/:repo_id/languages:
get:
description: 'The primary language of the repository. '
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/focus-areas/security.md
operationId: Languages (Repo)
parameters:
- description: Repository ID.
in: path
name: repo_id
schema:
type: string
type: string
responses:
'200':
description: OK
schema:
items:
properties:
primary_language:
description: 'Example: Go'
type: string
repo_id:
description: 'Example: 21277'
type: integer
type: array
tags:
- risk
/repo-groups/:repo_group_id/license-count:
get:
description: 'The declared software package license (fetched from CII Best Practices
badging data). '
externalDocs:
description: CHAOSS Metric Definition
url: https://github.com/chaoss/wg-risk/blob/main/focus-areas/licensing.md
operationId: License Count (Repo Group)
parameters:
- description: Repository Group ID
in: path
name: repo_group_id
schema: