forked from apache/seatunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mockserver-config.json
4451 lines (4450 loc) · 223 KB
/
mockserver-config.json
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
// https://www.mock-server.com/mock_server/getting_started.html#request_matchers
[
{
"httpRequest": {
"method" : "GET",
"path": "/example/http"
},
"httpResponse": {
"body": [
{
"c_map":{
"ccQcS":"PrhhP",
"ypJZu":"MsOdX",
"YFBJW":"iPXGR",
"ipjwT":"kcgPQ",
"EpKKR":"jgRfX"
},
"c_array":[
887776100,
1633238485,
1009033208,
600614572,
1487972145
],
"c_string":"WArEB",
"c_boolean":false,
"c_tinyint":-90,
"c_smallint":15920,
"c_int":1127427935,
"c_bigint":4712806879122100224,
"c_float":162047600000000000000000000000000000000,
"c_double":27509088104078520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,
"c_bytes":"Q3NrVnQ=",
"c_date":"2022-04-27",
"c_decimal":88574263949141714798.835853182708550244,
"c_timestamp":"2022-01-26T17:39:00",
"c_row":{
"C_MAP":{
"IVaKD":"bydeV",
"CnKBd":"kcZdt",
"RGlmG":"XuMyE",
"krSIr":"FPeal",
"IfhvE":"ReKxo"
},
"C_ARRAY":[
86555282,
967939739,
1162972923,
1662468723,
546056811
],
"C_STRING":"bYjyZ",
"C_BOOLEAN":false,
"C_TINYINT":-121,
"C_SMALLINT":29252,
"C_INT":977226449,
"C_BIGINT":5047232039582494720,
"C_FLOAT":253456430000000000000000000000000000000,
"C_DOUBLE":158834248299979960000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,
"C_BYTES":"TEVLTHU=",
"C_DATE":"2022-04-25",
"C_DECIMAL":55295207715324162970.316560703127334413,
"C_TIMESTAMP":"2022-06-14T23:03:00"
}
},
{
"c_map":{
"AKiQx":"wIIdk",
"zgunZ":"qvHRy",
"ohVQL":"WfBPo",
"EzUcN":"yPhVF",
"qusBc":"FWbcI"
},
"c_array":[
1837821269,
980724530,
2085935679,
386596035,
1433416218
],
"c_string":"LGMAw",
"c_boolean":false,
"c_tinyint":-65,
"c_smallint":25802,
"c_int":1312064317,
"c_bigint":4434124023629949952,
"c_float":101861250000000000000000000000000000000,
"c_double":30746920457833206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,
"c_bytes":"V2pjem4=",
"c_date":"2022-04-21",
"c_decimal":1943815605574160687.499688237951975681,
"c_timestamp":"2022-08-09T09:32:00",
"c_row":{
"C_MAP":{
"qMdUz":"ylcLM",
"bcwFI":"qgkJT",
"lrPiD":"JRdjf",
"zmRix":"uqOKy",
"NEHDJ":"tzJbU"
},
"C_ARRAY":[
951883741,
2012849301,
1709478035,
1095210330,
94263648
],
"C_STRING":"VAdKg",
"C_BOOLEAN":true,
"C_TINYINT":-121,
"C_SMALLINT":24543,
"C_INT":1853224936,
"C_BIGINT":6511613165105889280,
"C_FLOAT":248867480000000000000000000000000000000,
"C_DOUBLE":167553012802413800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,
"C_BYTES":"UnNlRXo=",
"C_DATE":"2022-01-26",
"C_DECIMAL":50854841532374241314.109746688054104586,
"C_TIMESTAMP":"2022-02-18T22:33:00"
}
},
{
"c_map":{
"VLlqs":"OwUpp",
"MWXek":"KDEYD",
"RAZII":"zGJSJ",
"wjBNl":"IPTvu",
"YkGPS":"ORquf"
},
"c_array":[
1530393427,
2055877022,
1389865473,
926021483,
402841214
],
"c_string":"TNcNF",
"c_boolean":false,
"c_tinyint":-93,
"c_smallint":26429,
"c_int":1890712921,
"c_bigint":78884499049828080,
"c_float":78168420000000000000000000000000000000,
"c_double":78525745220115830000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,
"c_bytes":"cHhzZVA=",
"c_date":"2022-06-05",
"c_decimal":32486229951636021942.906126821535443395,
"c_timestamp":"2022-04-09T16:03:00",
"c_row":{
"C_MAP":{
"yIfRN":"gTBEL",
"oUnIJ":"GtmSz",
"IGuwP":"TyCOu",
"BwTUT":"HgnUn",
"MFrOg":"csTeq"
},
"C_ARRAY":[
306983370,
1604264996,
2038631670,
265692923,
717846839
],
"C_STRING":"wavDf",
"C_BOOLEAN":true,
"C_TINYINT":-48,
"C_SMALLINT":29740,
"C_INT":1691565731,
"C_BIGINT":6162480816264462336,
"C_FLOAT":332183420000000000000000000000000000000,
"C_DOUBLE":99936669025917730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,
"C_BYTES":"RnVoR0Q=",
"C_DATE":"2022-04-09",
"C_DECIMAL":81349181592680914623.14214231545254843,
"C_TIMESTAMP":"2022-11-06T02:58:00"
}
},
{
"c_map":{
"OSHIu":"FlSum",
"MaSwp":"KYQkK",
"iXmjf":"zlkgq",
"jOBeN":"RDfwI",
"mNmag":"QyxeW"
},
"c_array":[
1632475346,
1988402914,
1222138765,
1952120146,
1223582179
],
"c_string":"fUmcz",
"c_boolean":false,
"c_tinyint":86,
"c_smallint":2122,
"c_int":798530029,
"c_bigint":4622710207120546816,
"c_float":274385260000000000000000000000000000000,
"c_double":3710018378162975000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,
"c_bytes":"WWlCdWk=",
"c_date":"2022-10-08",
"c_decimal":21195432655142738238.345609599825344131,
"c_timestamp":"2022-01-12T10:58:00",
"c_row":{
"C_MAP":{
"HdaHZ":"KMWIb",
"ETTGr":"zDkTq",
"kdTfa":"AyDqd",
"beLSj":"gCVdP",
"RDgtj":"YhJcx"
},
"C_ARRAY":[
1665702810,
2138839494,
2129312562,
1248002085,
1536850903
],
"C_STRING":"jJotn",
"C_BOOLEAN":false,
"C_TINYINT":90,
"C_SMALLINT":5092,
"C_INT":543799429,
"C_BIGINT":3526775209703891968,
"C_FLOAT":19285203000000000000000000000000000000,
"C_DOUBLE":119569847888769830000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,
"C_BYTES":"RVd4a1g=",
"C_DATE":"2022-09-19",
"C_DECIMAL":86909407361565847023.835229924753629936,
"C_TIMESTAMP":"2022-09-15T18:06:00"
}
},
{
"c_map":{
"aDAzK":"sMIOi",
"NSyDX":"TKSoT",
"JLxhC":"NpeWZ",
"LAjup":"KmHDA",
"HUIPE":"yAOKq"
},
"c_array":[
1046349188,
1243865078,
849372657,
522012053,
644827083
],
"c_string":"pwRSn",
"c_boolean":true,
"c_tinyint":55,
"c_smallint":14285,
"c_int":290002708,
"c_bigint":4717741595193431040,
"c_float":309654730000000000000000000000000000000,
"c_double":129844722952577660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,
"c_bytes":"TE1oUWg=",
"c_date":"2022-05-05",
"c_decimal":75406296065465000885.249652183329686608,
"c_timestamp":"2022-07-05T14:40:00",
"c_row":{
"C_MAP":{
"WTqxL":"RuJsv",
"UXnhR":"HOjTp",
"EeFOQ":"PSpGy",
"YtxFI":"ACjTB",
"YAlWV":"NlOjQ"
},
"C_ARRAY":[
1610325348,
1432388472,
557306114,
590115029,
1704913966
],
"C_STRING":"Pnkxe",
"C_BOOLEAN":false,
"C_TINYINT":-15,
"C_SMALLINT":8909,
"C_INT":2084130154,
"C_BIGINT":3344333580258222592,
"C_FLOAT":333064730000000000000000000000000000000,
"C_DOUBLE":92331438173921840000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,
"C_BYTES":"enpuUXk=",
"C_DATE":"2022-07-01",
"C_DECIMAL":87998983887293909887.925694693860636437,
"C_TIMESTAMP":"2022-02-12T07:45:00"
}
}
],
"headers": {
"Content-Type": "application/json"
}
}
},
{
"httpRequest": {
"method" : "GET",
"path": "/example/httpMultiLine"
},
"httpResponse": {
"body": "{\"age\":22,\"name\":\"Jone\",\"salary\":1000} \r\n {\"age\":24,\"name\":\"vieech\",\"salary\":3000}",
"headers": {
"Content-Type": "application/json"
}
}
},
{
"httpRequest": {
"secure": true,
"method" : "GET",
"path": "/example/https"
},
"httpResponse": {
"body": [
{
"name": "1",
"age": 18
},
{
"name": "2",
"age": 19
}
],
"headers": {
"Content-Type": "application/json"
}
}
},
{
"httpRequest": {
"method" : "GET",
"path": "/example/page",
"queryStringParameters": {
"pn": "1"
}
},
"httpResponse": {
"body": [
{
"name": "1",
"age": 18
},
{
"name": "2",
"age": 19
}
],
"headers": {
"Content-Type": "application/json"
}
}
},
{
"httpRequest": {
"method" : "GET",
"path": "/example/page",
"queryStringParameters": {
"pn": "2"
}
},
"httpResponse": {
"body": [
{
"name": "1",
"age": 18
},
{
"name": "2",
"age": 19
}
],
"headers": {
"Content-Type": "application/json"
}
}
},
{
"httpRequest": {
"method" : "GET",
"path": "/contentjson/mock"
},
"httpResponse": {
"body": {
"store": {
"book": [
{
"category": "reference",
"author": "Nigel Rees",
"title": "Sayings of the Century",
"price": 8.95
},
{
"category": "fiction",
"author": "Evelyn Waugh",
"title": "Sword of Honour",
"price": 12.99
},
{
"category": "fiction",
"author": "Herman Melville",
"title": "Moby Dick",
"isbn": "0-553-21311-3",
"price": 8.99
},
{
"category": "fiction",
"author": "J. R. R. Tolkien",
"title": "The Lord of the Rings",
"isbn": "0-395-19395-8",
"price": 22.99
}
],
"bicycle": {
"color": "red",
"price": 19.95
}
},
"expensive": 10
},
"headers": {
"Content-Type": "application/json"
}
}
},
{
"httpRequest": {
"method": "GET",
"path": "/orgs/apache/repos"
},
"httpResponse": {
"body": [
{
"id": 160986,
"node_id": "MDEwOlJlcG9zaXRvcnkxNjA5ODY=",
"name": "tapestry3",
"full_name": "apache/tapestry3",
"private": false,
"owner": {
"login": "apache",
"id": 47359,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjQ3MzU5",
"avatar_url": "https://avatars.githubusercontent.com/u/47359?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/apache",
"html_url": "https://github.com/apache",
"followers_url": "https://api.github.com/users/apache/followers",
"following_url": "https://api.github.com/users/apache/following{/other_user}",
"gists_url": "https://api.github.com/users/apache/gists{/gist_id}",
"starred_url": "https://api.github.com/users/apache/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/apache/subscriptions",
"organizations_url": "https://api.github.com/users/apache/orgs",
"repos_url": "https://api.github.com/users/apache/repos",
"events_url": "https://api.github.com/users/apache/events{/privacy}",
"received_events_url": "https://api.github.com/users/apache/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/apache/tapestry3",
"description": "Mirror of Apache Tapestry 3",
"fork": false,
"url": "https://api.github.com/repos/apache/tapestry3",
"forks_url": "https://api.github.com/repos/apache/tapestry3/forks",
"keys_url": "https://api.github.com/repos/apache/tapestry3/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/apache/tapestry3/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/apache/tapestry3/teams",
"hooks_url": "https://api.github.com/repos/apache/tapestry3/hooks",
"issue_events_url": "https://api.github.com/repos/apache/tapestry3/issues/events{/number}",
"events_url": "https://api.github.com/repos/apache/tapestry3/events",
"assignees_url": "https://api.github.com/repos/apache/tapestry3/assignees{/user}",
"branches_url": "https://api.github.com/repos/apache/tapestry3/branches{/branch}",
"tags_url": "https://api.github.com/repos/apache/tapestry3/tags",
"blobs_url": "https://api.github.com/repos/apache/tapestry3/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/apache/tapestry3/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/apache/tapestry3/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/apache/tapestry3/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/apache/tapestry3/statuses/{sha}",
"languages_url": "https://api.github.com/repos/apache/tapestry3/languages",
"stargazers_url": "https://api.github.com/repos/apache/tapestry3/stargazers",
"contributors_url": "https://api.github.com/repos/apache/tapestry3/contributors",
"subscribers_url": "https://api.github.com/repos/apache/tapestry3/subscribers",
"subscription_url": "https://api.github.com/repos/apache/tapestry3/subscription",
"commits_url": "https://api.github.com/repos/apache/tapestry3/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/apache/tapestry3/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/apache/tapestry3/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/apache/tapestry3/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/apache/tapestry3/contents/{+path}",
"compare_url": "https://api.github.com/repos/apache/tapestry3/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/apache/tapestry3/merges",
"archive_url": "https://api.github.com/repos/apache/tapestry3/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/apache/tapestry3/downloads",
"issues_url": "https://api.github.com/repos/apache/tapestry3/issues{/number}",
"pulls_url": "https://api.github.com/repos/apache/tapestry3/pulls{/number}",
"milestones_url": "https://api.github.com/repos/apache/tapestry3/milestones{/number}",
"notifications_url": "https://api.github.com/repos/apache/tapestry3/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/apache/tapestry3/labels{/name}",
"releases_url": "https://api.github.com/repos/apache/tapestry3/releases{/id}",
"deployments_url": "https://api.github.com/repos/apache/tapestry3/deployments",
"created_at": "2009-03-27T15:41:52Z",
"updated_at": "2022-12-16T06:12:47Z",
"pushed_at": "2022-10-03T22:40:04Z",
"git_url": "git://github.com/apache/tapestry3.git",
"ssh_url": "git@github.com:apache/tapestry3.git",
"clone_url": "https://github.com/apache/tapestry3.git",
"svn_url": "https://github.com/apache/tapestry3",
"homepage": null,
"size": 54936,
"stargazers_count": 3,
"watchers_count": 3,
"language": "Java",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"has_discussions": false,
"forks_count": 13,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 4,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"java",
"tapestry",
"web-framework"
],
"visibility": "public",
"forks": 13,
"open_issues": 4,
"watchers": 3,
"default_branch": "trunk",
"permissions": {
"admin": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 160988,
"node_id": "MDEwOlJlcG9zaXRvcnkxNjA5ODg=",
"name": "apr-iconv",
"full_name": "apache/apr-iconv",
"private": false,
"owner": {
"login": "apache",
"id": 47359,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjQ3MzU5",
"avatar_url": "https://avatars.githubusercontent.com/u/47359?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/apache",
"html_url": "https://github.com/apache",
"followers_url": "https://api.github.com/users/apache/followers",
"following_url": "https://api.github.com/users/apache/following{/other_user}",
"gists_url": "https://api.github.com/users/apache/gists{/gist_id}",
"starred_url": "https://api.github.com/users/apache/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/apache/subscriptions",
"organizations_url": "https://api.github.com/users/apache/orgs",
"repos_url": "https://api.github.com/users/apache/repos",
"events_url": "https://api.github.com/users/apache/events{/privacy}",
"received_events_url": "https://api.github.com/users/apache/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/apache/apr-iconv",
"description": "Mirror of Apache Portable Runtime iconv",
"fork": false,
"url": "https://api.github.com/repos/apache/apr-iconv",
"forks_url": "https://api.github.com/repos/apache/apr-iconv/forks",
"keys_url": "https://api.github.com/repos/apache/apr-iconv/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/apache/apr-iconv/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/apache/apr-iconv/teams",
"hooks_url": "https://api.github.com/repos/apache/apr-iconv/hooks",
"issue_events_url": "https://api.github.com/repos/apache/apr-iconv/issues/events{/number}",
"events_url": "https://api.github.com/repos/apache/apr-iconv/events",
"assignees_url": "https://api.github.com/repos/apache/apr-iconv/assignees{/user}",
"branches_url": "https://api.github.com/repos/apache/apr-iconv/branches{/branch}",
"tags_url": "https://api.github.com/repos/apache/apr-iconv/tags",
"blobs_url": "https://api.github.com/repos/apache/apr-iconv/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/apache/apr-iconv/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/apache/apr-iconv/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/apache/apr-iconv/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/apache/apr-iconv/statuses/{sha}",
"languages_url": "https://api.github.com/repos/apache/apr-iconv/languages",
"stargazers_url": "https://api.github.com/repos/apache/apr-iconv/stargazers",
"contributors_url": "https://api.github.com/repos/apache/apr-iconv/contributors",
"subscribers_url": "https://api.github.com/repos/apache/apr-iconv/subscribers",
"subscription_url": "https://api.github.com/repos/apache/apr-iconv/subscription",
"commits_url": "https://api.github.com/repos/apache/apr-iconv/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/apache/apr-iconv/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/apache/apr-iconv/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/apache/apr-iconv/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/apache/apr-iconv/contents/{+path}",
"compare_url": "https://api.github.com/repos/apache/apr-iconv/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/apache/apr-iconv/merges",
"archive_url": "https://api.github.com/repos/apache/apr-iconv/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/apache/apr-iconv/downloads",
"issues_url": "https://api.github.com/repos/apache/apr-iconv/issues{/number}",
"pulls_url": "https://api.github.com/repos/apache/apr-iconv/pulls{/number}",
"milestones_url": "https://api.github.com/repos/apache/apr-iconv/milestones{/number}",
"notifications_url": "https://api.github.com/repos/apache/apr-iconv/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/apache/apr-iconv/labels{/name}",
"releases_url": "https://api.github.com/repos/apache/apr-iconv/releases{/id}",
"deployments_url": "https://api.github.com/repos/apache/apr-iconv/deployments",
"created_at": "2009-03-27T15:41:52Z",
"updated_at": "2022-10-06T00:11:25Z",
"pushed_at": "2019-01-01T11:45:15Z",
"git_url": "git://github.com/apache/apr-iconv.git",
"ssh_url": "git@github.com:apache/apr-iconv.git",
"clone_url": "https://github.com/apache/apr-iconv.git",
"svn_url": "https://github.com/apache/apr-iconv",
"homepage": null,
"size": 2539,
"stargazers_count": 17,
"watchers_count": 17,
"language": "C",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"has_discussions": false,
"forks_count": 18,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 1,
"license": {
"key": "apache-2.0",
"name": "Apache License 2.0",
"spdx_id": "Apache-2.0",
"url": "https://api.github.com/licenses/apache-2.0",
"node_id": "MDc6TGljZW5zZTI="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"apr"
],
"visibility": "public",
"forks": 18,
"open_issues": 1,
"watchers": 17,
"default_branch": "trunk",
"permissions": {
"admin": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 160989,
"node_id": "MDEwOlJlcG9zaXRvcnkxNjA5ODk=",
"name": "tapestry4",
"full_name": "apache/tapestry4",
"private": false,
"owner": {
"login": "apache",
"id": 47359,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjQ3MzU5",
"avatar_url": "https://avatars.githubusercontent.com/u/47359?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/apache",
"html_url": "https://github.com/apache",
"followers_url": "https://api.github.com/users/apache/followers",
"following_url": "https://api.github.com/users/apache/following{/other_user}",
"gists_url": "https://api.github.com/users/apache/gists{/gist_id}",
"starred_url": "https://api.github.com/users/apache/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/apache/subscriptions",
"organizations_url": "https://api.github.com/users/apache/orgs",
"repos_url": "https://api.github.com/users/apache/repos",
"events_url": "https://api.github.com/users/apache/events{/privacy}",
"received_events_url": "https://api.github.com/users/apache/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/apache/tapestry4",
"description": "Mirror of Apache Tapestry 4",
"fork": false,
"url": "https://api.github.com/repos/apache/tapestry4",
"forks_url": "https://api.github.com/repos/apache/tapestry4/forks",
"keys_url": "https://api.github.com/repos/apache/tapestry4/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/apache/tapestry4/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/apache/tapestry4/teams",
"hooks_url": "https://api.github.com/repos/apache/tapestry4/hooks",
"issue_events_url": "https://api.github.com/repos/apache/tapestry4/issues/events{/number}",
"events_url": "https://api.github.com/repos/apache/tapestry4/events",
"assignees_url": "https://api.github.com/repos/apache/tapestry4/assignees{/user}",
"branches_url": "https://api.github.com/repos/apache/tapestry4/branches{/branch}",
"tags_url": "https://api.github.com/repos/apache/tapestry4/tags",
"blobs_url": "https://api.github.com/repos/apache/tapestry4/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/apache/tapestry4/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/apache/tapestry4/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/apache/tapestry4/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/apache/tapestry4/statuses/{sha}",
"languages_url": "https://api.github.com/repos/apache/tapestry4/languages",
"stargazers_url": "https://api.github.com/repos/apache/tapestry4/stargazers",
"contributors_url": "https://api.github.com/repos/apache/tapestry4/contributors",
"subscribers_url": "https://api.github.com/repos/apache/tapestry4/subscribers",
"subscription_url": "https://api.github.com/repos/apache/tapestry4/subscription",
"commits_url": "https://api.github.com/repos/apache/tapestry4/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/apache/tapestry4/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/apache/tapestry4/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/apache/tapestry4/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/apache/tapestry4/contents/{+path}",
"compare_url": "https://api.github.com/repos/apache/tapestry4/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/apache/tapestry4/merges",
"archive_url": "https://api.github.com/repos/apache/tapestry4/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/apache/tapestry4/downloads",
"issues_url": "https://api.github.com/repos/apache/tapestry4/issues{/number}",
"pulls_url": "https://api.github.com/repos/apache/tapestry4/pulls{/number}",
"milestones_url": "https://api.github.com/repos/apache/tapestry4/milestones{/number}",
"notifications_url": "https://api.github.com/repos/apache/tapestry4/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/apache/tapestry4/labels{/name}",
"releases_url": "https://api.github.com/repos/apache/tapestry4/releases{/id}",
"deployments_url": "https://api.github.com/repos/apache/tapestry4/deployments",
"created_at": "2009-03-27T15:41:53Z",
"updated_at": "2022-11-28T16:04:48Z",
"pushed_at": "2022-04-05T04:43:10Z",
"git_url": "git://github.com/apache/tapestry4.git",
"ssh_url": "git@github.com:apache/tapestry4.git",
"clone_url": "https://github.com/apache/tapestry4.git",
"svn_url": "https://github.com/apache/tapestry4",
"homepage": null,
"size": 76605,
"stargazers_count": 6,
"watchers_count": 6,
"language": "Java",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"has_discussions": false,
"forks_count": 13,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 8,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"java",
"tapestry",
"web-framework"
],
"visibility": "public",
"forks": 13,
"open_issues": 8,
"watchers": 6,
"default_branch": "trunk",
"permissions": {
"admin": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 160994,
"node_id": "MDEwOlJlcG9zaXRvcnkxNjA5OTQ=",
"name": "sling-old-svn-mirror",
"full_name": "apache/sling-old-svn-mirror",
"private": false,
"owner": {
"login": "apache",
"id": 47359,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjQ3MzU5",
"avatar_url": "https://avatars.githubusercontent.com/u/47359?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/apache",
"html_url": "https://github.com/apache",
"followers_url": "https://api.github.com/users/apache/followers",
"following_url": "https://api.github.com/users/apache/following{/other_user}",
"gists_url": "https://api.github.com/users/apache/gists{/gist_id}",
"starred_url": "https://api.github.com/users/apache/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/apache/subscriptions",
"organizations_url": "https://api.github.com/users/apache/orgs",
"repos_url": "https://api.github.com/users/apache/repos",
"events_url": "https://api.github.com/users/apache/events{/privacy}",
"received_events_url": "https://api.github.com/users/apache/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/apache/sling-old-svn-mirror",
"description": "Mirror of Apache Sling",
"fork": false,
"url": "https://api.github.com/repos/apache/sling-old-svn-mirror",
"forks_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/forks",
"keys_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/teams",
"hooks_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/hooks",
"issue_events_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/issues/events{/number}",
"events_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/events",
"assignees_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/assignees{/user}",
"branches_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/branches{/branch}",
"tags_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/tags",
"blobs_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/statuses/{sha}",
"languages_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/languages",
"stargazers_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/stargazers",
"contributors_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/contributors",
"subscribers_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/subscribers",
"subscription_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/subscription",
"commits_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/contents/{+path}",
"compare_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/merges",
"archive_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/downloads",
"issues_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/issues{/number}",
"pulls_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/pulls{/number}",
"milestones_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/milestones{/number}",
"notifications_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/labels{/name}",
"releases_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/releases{/id}",
"deployments_url": "https://api.github.com/repos/apache/sling-old-svn-mirror/deployments",
"created_at": "2009-03-27T15:41:54Z",
"updated_at": "2023-01-13T08:00:56Z",
"pushed_at": "2018-06-29T19:44:29Z",
"git_url": "git://github.com/apache/sling-old-svn-mirror.git",
"ssh_url": "git@github.com:apache/sling-old-svn-mirror.git",
"clone_url": "https://github.com/apache/sling-old-svn-mirror.git",
"svn_url": "https://github.com/apache/sling-old-svn-mirror",
"homepage": "",
"size": 86054,
"stargazers_count": 218,
"watchers_count": 218,
"language": null,
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"has_discussions": false,
"forks_count": 265,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"java",
"sling"
],
"visibility": "public",
"forks": 265,
"open_issues": 0,
"watchers": 218,
"default_branch": "archived",
"permissions": {
"admin": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}
},
{
"id": 160995,
"node_id": "MDEwOlJlcG9zaXRvcnkxNjA5OTU=",
"name": "xalan-j",
"full_name": "apache/xalan-j",
"private": false,
"owner": {
"login": "apache",
"id": 47359,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjQ3MzU5",
"avatar_url": "https://avatars.githubusercontent.com/u/47359?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/apache",
"html_url": "https://github.com/apache",
"followers_url": "https://api.github.com/users/apache/followers",
"following_url": "https://api.github.com/users/apache/following{/other_user}",
"gists_url": "https://api.github.com/users/apache/gists{/gist_id}",
"starred_url": "https://api.github.com/users/apache/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/apache/subscriptions",
"organizations_url": "https://api.github.com/users/apache/orgs",
"repos_url": "https://api.github.com/users/apache/repos",
"events_url": "https://api.github.com/users/apache/events{/privacy}",
"received_events_url": "https://api.github.com/users/apache/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/apache/xalan-j",
"description": "Mirror of Apache Xalan Java",
"fork": false,
"url": "https://api.github.com/repos/apache/xalan-j",
"forks_url": "https://api.github.com/repos/apache/xalan-j/forks",
"keys_url": "https://api.github.com/repos/apache/xalan-j/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/apache/xalan-j/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/apache/xalan-j/teams",
"hooks_url": "https://api.github.com/repos/apache/xalan-j/hooks",
"issue_events_url": "https://api.github.com/repos/apache/xalan-j/issues/events{/number}",
"events_url": "https://api.github.com/repos/apache/xalan-j/events",
"assignees_url": "https://api.github.com/repos/apache/xalan-j/assignees{/user}",
"branches_url": "https://api.github.com/repos/apache/xalan-j/branches{/branch}",
"tags_url": "https://api.github.com/repos/apache/xalan-j/tags",
"blobs_url": "https://api.github.com/repos/apache/xalan-j/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/apache/xalan-j/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/apache/xalan-j/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/apache/xalan-j/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/apache/xalan-j/statuses/{sha}",
"languages_url": "https://api.github.com/repos/apache/xalan-j/languages",
"stargazers_url": "https://api.github.com/repos/apache/xalan-j/stargazers",
"contributors_url": "https://api.github.com/repos/apache/xalan-j/contributors",
"subscribers_url": "https://api.github.com/repos/apache/xalan-j/subscribers",
"subscription_url": "https://api.github.com/repos/apache/xalan-j/subscription",
"commits_url": "https://api.github.com/repos/apache/xalan-j/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/apache/xalan-j/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/apache/xalan-j/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/apache/xalan-j/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/apache/xalan-j/contents/{+path}",
"compare_url": "https://api.github.com/repos/apache/xalan-j/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/apache/xalan-j/merges",
"archive_url": "https://api.github.com/repos/apache/xalan-j/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/apache/xalan-j/downloads",
"issues_url": "https://api.github.com/repos/apache/xalan-j/issues{/number}",
"pulls_url": "https://api.github.com/repos/apache/xalan-j/pulls{/number}",
"milestones_url": "https://api.github.com/repos/apache/xalan-j/milestones{/number}",
"notifications_url": "https://api.github.com/repos/apache/xalan-j/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/apache/xalan-j/labels{/name}",
"releases_url": "https://api.github.com/repos/apache/xalan-j/releases{/id}",
"deployments_url": "https://api.github.com/repos/apache/xalan-j/deployments",
"created_at": "2009-03-27T15:41:55Z",
"updated_at": "2023-01-19T05:25:23Z",
"pushed_at": "2022-10-24T18:27:46Z",
"git_url": "git://github.com/apache/xalan-j.git",
"ssh_url": "git@github.com:apache/xalan-j.git",
"clone_url": "https://github.com/apache/xalan-j.git",
"svn_url": "https://github.com/apache/xalan-j",
"homepage": null,
"size": 55092,
"stargazers_count": 24,
"watchers_count": 24,
"language": "Java",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"has_discussions": false,
"forks_count": 69,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 4,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"xalan"
],
"visibility": "public",
"forks": 69,
"open_issues": 4,
"watchers": 24,
"default_branch": "trunk",
"permissions": {
"admin": false,
"maintain": false,
"push": false,
"triage": false,
"pull": true
}