-
Notifications
You must be signed in to change notification settings - Fork 1
/
repos.json
1142 lines (1142 loc) · 68.1 KB
/
repos.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
[
{
"id": 61458005,
"node_id": "MDEwOlJlcG9zaXRvcnk2MTQ1ODAwNQ==",
"name": "aqui.io",
"full_name": "lab-csx-ufmg/aqui.io",
"private": false,
"owner": {
"login": "lab-csx-ufmg",
"id": 15199560,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE1MTk5NTYw",
"avatar_url": "https://avatars1.githubusercontent.com/u/15199560?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lab-csx-ufmg",
"html_url": "https://github.com/lab-csx-ufmg",
"followers_url": "https://api.github.com/users/lab-csx-ufmg/followers",
"following_url": "https://api.github.com/users/lab-csx-ufmg/following{/other_user}",
"gists_url": "https://api.github.com/users/lab-csx-ufmg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lab-csx-ufmg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lab-csx-ufmg/subscriptions",
"organizations_url": "https://api.github.com/users/lab-csx-ufmg/orgs",
"repos_url": "https://api.github.com/users/lab-csx-ufmg/repos",
"events_url": "https://api.github.com/users/lab-csx-ufmg/events{/privacy}",
"received_events_url": "https://api.github.com/users/lab-csx-ufmg/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/lab-csx-ufmg/aqui.io",
"description": "Coordinate shortener with support to any spatial reference system",
"fork": false,
"url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io",
"forks_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/forks",
"keys_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/teams",
"hooks_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/hooks",
"issue_events_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/issues/events{/number}",
"events_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/events",
"assignees_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/assignees{/user}",
"branches_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/branches{/branch}",
"tags_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/tags",
"blobs_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/statuses/{sha}",
"languages_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/languages",
"stargazers_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/stargazers",
"contributors_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/contributors",
"subscribers_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/subscribers",
"subscription_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/subscription",
"commits_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/contents/{+path}",
"compare_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/merges",
"archive_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/downloads",
"issues_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/issues{/number}",
"pulls_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/pulls{/number}",
"milestones_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/milestones{/number}",
"notifications_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/labels{/name}",
"releases_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/releases{/id}",
"deployments_url": "https://api.github.com/repos/lab-csx-ufmg/aqui.io/deployments",
"created_at": "2016-06-19T00:29:15Z",
"updated_at": "2018-07-05T15:51:25Z",
"pushed_at": "2018-07-05T15:51:23Z",
"git_url": "git://github.com/lab-csx-ufmg/aqui.io.git",
"ssh_url": "[email protected]:lab-csx-ufmg/aqui.io.git",
"clone_url": "https://github.com/lab-csx-ufmg/aqui.io.git",
"svn_url": "https://github.com/lab-csx-ufmg/aqui.io",
"homepage": "http://aqui.io/",
"size": 1001,
"stargazers_count": 1,
"watchers_count": 1,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "master"
},
{
"id": 70271602,
"node_id": "MDEwOlJlcG9zaXRvcnk3MDI3MTYwMg==",
"name": "ast_postgis",
"full_name": "lab-csx-ufmg/ast_postgis",
"private": false,
"owner": {
"login": "lab-csx-ufmg",
"id": 15199560,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE1MTk5NTYw",
"avatar_url": "https://avatars1.githubusercontent.com/u/15199560?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lab-csx-ufmg",
"html_url": "https://github.com/lab-csx-ufmg",
"followers_url": "https://api.github.com/users/lab-csx-ufmg/followers",
"following_url": "https://api.github.com/users/lab-csx-ufmg/following{/other_user}",
"gists_url": "https://api.github.com/users/lab-csx-ufmg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lab-csx-ufmg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lab-csx-ufmg/subscriptions",
"organizations_url": "https://api.github.com/users/lab-csx-ufmg/orgs",
"repos_url": "https://api.github.com/users/lab-csx-ufmg/repos",
"events_url": "https://api.github.com/users/lab-csx-ufmg/events{/privacy}",
"received_events_url": "https://api.github.com/users/lab-csx-ufmg/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/lab-csx-ufmg/ast_postgis",
"description": "PostgreSQL extension to support advanced spatial data types and integrity constraints.",
"fork": true,
"url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis",
"forks_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/forks",
"keys_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/teams",
"hooks_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/hooks",
"issue_events_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/issues/events{/number}",
"events_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/events",
"assignees_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/assignees{/user}",
"branches_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/branches{/branch}",
"tags_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/tags",
"blobs_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/statuses/{sha}",
"languages_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/languages",
"stargazers_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/stargazers",
"contributors_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/contributors",
"subscribers_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/subscribers",
"subscription_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/subscription",
"commits_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/contents/{+path}",
"compare_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/merges",
"archive_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/downloads",
"issues_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/issues{/number}",
"pulls_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/pulls{/number}",
"milestones_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/milestones{/number}",
"notifications_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/labels{/name}",
"releases_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/releases{/id}",
"deployments_url": "https://api.github.com/repos/lab-csx-ufmg/ast_postgis/deployments",
"created_at": "2016-10-07T18:16:24Z",
"updated_at": "2016-10-24T20:24:18Z",
"pushed_at": "2016-12-18T00:26:39Z",
"git_url": "git://github.com/lab-csx-ufmg/ast_postgis.git",
"ssh_url": "[email protected]:lab-csx-ufmg/ast_postgis.git",
"clone_url": "https://github.com/lab-csx-ufmg/ast_postgis.git",
"svn_url": "https://github.com/lab-csx-ufmg/ast_postgis",
"homepage": "",
"size": 370,
"stargazers_count": 1,
"watchers_count": 1,
"language": "PLpgSQL",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "master"
},
{
"id": 44548396,
"node_id": "MDEwOlJlcG9zaXRvcnk0NDU0ODM5Ng==",
"name": "geosql",
"full_name": "lab-csx-ufmg/geosql",
"private": false,
"owner": {
"login": "lab-csx-ufmg",
"id": 15199560,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE1MTk5NTYw",
"avatar_url": "https://avatars1.githubusercontent.com/u/15199560?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lab-csx-ufmg",
"html_url": "https://github.com/lab-csx-ufmg",
"followers_url": "https://api.github.com/users/lab-csx-ufmg/followers",
"following_url": "https://api.github.com/users/lab-csx-ufmg/following{/other_user}",
"gists_url": "https://api.github.com/users/lab-csx-ufmg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lab-csx-ufmg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lab-csx-ufmg/subscriptions",
"organizations_url": "https://api.github.com/users/lab-csx-ufmg/orgs",
"repos_url": "https://api.github.com/users/lab-csx-ufmg/repos",
"events_url": "https://api.github.com/users/lab-csx-ufmg/events{/privacy}",
"received_events_url": "https://api.github.com/users/lab-csx-ufmg/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/lab-csx-ufmg/geosql",
"description": "GeoSQL+: an online learning tool for SQL with spatial extensions",
"fork": false,
"url": "https://api.github.com/repos/lab-csx-ufmg/geosql",
"forks_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/forks",
"keys_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/teams",
"hooks_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/hooks",
"issue_events_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/issues/events{/number}",
"events_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/events",
"assignees_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/assignees{/user}",
"branches_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/branches{/branch}",
"tags_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/tags",
"blobs_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/statuses/{sha}",
"languages_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/languages",
"stargazers_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/stargazers",
"contributors_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/contributors",
"subscribers_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/subscribers",
"subscription_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/subscription",
"commits_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/contents/{+path}",
"compare_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/merges",
"archive_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/downloads",
"issues_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/issues{/number}",
"pulls_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/pulls{/number}",
"milestones_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/milestones{/number}",
"notifications_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/labels{/name}",
"releases_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/releases{/id}",
"deployments_url": "https://api.github.com/repos/lab-csx-ufmg/geosql/deployments",
"created_at": "2015-10-19T16:31:16Z",
"updated_at": "2016-03-07T17:24:25Z",
"pushed_at": "2016-03-06T14:36:38Z",
"git_url": "git://github.com/lab-csx-ufmg/geosql.git",
"ssh_url": "[email protected]:lab-csx-ufmg/geosql.git",
"clone_url": "https://github.com/lab-csx-ufmg/geosql.git",
"svn_url": "https://github.com/lab-csx-ufmg/geosql",
"homepage": null,
"size": 4166,
"stargazers_count": 1,
"watchers_count": 1,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "master"
},
{
"id": 80748686,
"node_id": "MDEwOlJlcG9zaXRvcnk4MDc0ODY4Ng==",
"name": "Github-crawler-and-metrics",
"full_name": "lab-csx-ufmg/Github-crawler-and-metrics",
"private": false,
"owner": {
"login": "lab-csx-ufmg",
"id": 15199560,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE1MTk5NTYw",
"avatar_url": "https://avatars1.githubusercontent.com/u/15199560?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lab-csx-ufmg",
"html_url": "https://github.com/lab-csx-ufmg",
"followers_url": "https://api.github.com/users/lab-csx-ufmg/followers",
"following_url": "https://api.github.com/users/lab-csx-ufmg/following{/other_user}",
"gists_url": "https://api.github.com/users/lab-csx-ufmg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lab-csx-ufmg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lab-csx-ufmg/subscriptions",
"organizations_url": "https://api.github.com/users/lab-csx-ufmg/orgs",
"repos_url": "https://api.github.com/users/lab-csx-ufmg/repos",
"events_url": "https://api.github.com/users/lab-csx-ufmg/events{/privacy}",
"received_events_url": "https://api.github.com/users/lab-csx-ufmg/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/lab-csx-ufmg/Github-crawler-and-metrics",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics",
"forks_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/forks",
"keys_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/teams",
"hooks_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/hooks",
"issue_events_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/issues/events{/number}",
"events_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/events",
"assignees_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/assignees{/user}",
"branches_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/branches{/branch}",
"tags_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/tags",
"blobs_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/statuses/{sha}",
"languages_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/languages",
"stargazers_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/stargazers",
"contributors_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/contributors",
"subscribers_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/subscribers",
"subscription_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/subscription",
"commits_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/contents/{+path}",
"compare_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/merges",
"archive_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/downloads",
"issues_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/issues{/number}",
"pulls_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/pulls{/number}",
"milestones_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/milestones{/number}",
"notifications_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/labels{/name}",
"releases_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/releases{/id}",
"deployments_url": "https://api.github.com/repos/lab-csx-ufmg/Github-crawler-and-metrics/deployments",
"created_at": "2017-02-02T17:17:21Z",
"updated_at": "2018-10-09T12:56:18Z",
"pushed_at": "2017-04-23T19:04:45Z",
"git_url": "git://github.com/lab-csx-ufmg/Github-crawler-and-metrics.git",
"ssh_url": "[email protected]:lab-csx-ufmg/Github-crawler-and-metrics.git",
"clone_url": "https://github.com/lab-csx-ufmg/Github-crawler-and-metrics.git",
"svn_url": "https://github.com/lab-csx-ufmg/Github-crawler-and-metrics",
"homepage": null,
"size": 31,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Python",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master"
},
{
"id": 62051319,
"node_id": "MDEwOlJlcG9zaXRvcnk2MjA1MTMxOQ==",
"name": "GitHub-SN",
"full_name": "lab-csx-ufmg/GitHub-SN",
"private": false,
"owner": {
"login": "lab-csx-ufmg",
"id": 15199560,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE1MTk5NTYw",
"avatar_url": "https://avatars1.githubusercontent.com/u/15199560?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lab-csx-ufmg",
"html_url": "https://github.com/lab-csx-ufmg",
"followers_url": "https://api.github.com/users/lab-csx-ufmg/followers",
"following_url": "https://api.github.com/users/lab-csx-ufmg/following{/other_user}",
"gists_url": "https://api.github.com/users/lab-csx-ufmg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lab-csx-ufmg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lab-csx-ufmg/subscriptions",
"organizations_url": "https://api.github.com/users/lab-csx-ufmg/orgs",
"repos_url": "https://api.github.com/users/lab-csx-ufmg/repos",
"events_url": "https://api.github.com/users/lab-csx-ufmg/events{/privacy}",
"received_events_url": "https://api.github.com/users/lab-csx-ufmg/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/lab-csx-ufmg/GitHub-SN",
"description": "Datasets to analyze GitHub social network",
"fork": false,
"url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN",
"forks_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/forks",
"keys_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/teams",
"hooks_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/hooks",
"issue_events_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/issues/events{/number}",
"events_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/events",
"assignees_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/assignees{/user}",
"branches_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/branches{/branch}",
"tags_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/tags",
"blobs_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/statuses/{sha}",
"languages_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/languages",
"stargazers_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/stargazers",
"contributors_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/contributors",
"subscribers_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/subscribers",
"subscription_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/subscription",
"commits_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/contents/{+path}",
"compare_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/merges",
"archive_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/downloads",
"issues_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/issues{/number}",
"pulls_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/pulls{/number}",
"milestones_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/milestones{/number}",
"notifications_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/labels{/name}",
"releases_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/releases{/id}",
"deployments_url": "https://api.github.com/repos/lab-csx-ufmg/GitHub-SN/deployments",
"created_at": "2016-06-27T11:29:08Z",
"updated_at": "2016-07-08T16:24:21Z",
"pushed_at": "2016-07-08T16:21:08Z",
"git_url": "git://github.com/lab-csx-ufmg/GitHub-SN.git",
"ssh_url": "[email protected]:lab-csx-ufmg/GitHub-SN.git",
"clone_url": "https://github.com/lab-csx-ufmg/GitHub-SN.git",
"svn_url": "https://github.com/lab-csx-ufmg/GitHub-SN",
"homepage": null,
"size": 19859,
"stargazers_count": 1,
"watchers_count": 1,
"language": null,
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "master"
},
{
"id": 53900659,
"node_id": "MDEwOlJlcG9zaXRvcnk1MzkwMDY1OQ==",
"name": "LinkedOntoGazetteer",
"full_name": "lab-csx-ufmg/LinkedOntoGazetteer",
"private": false,
"owner": {
"login": "lab-csx-ufmg",
"id": 15199560,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE1MTk5NTYw",
"avatar_url": "https://avatars1.githubusercontent.com/u/15199560?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lab-csx-ufmg",
"html_url": "https://github.com/lab-csx-ufmg",
"followers_url": "https://api.github.com/users/lab-csx-ufmg/followers",
"following_url": "https://api.github.com/users/lab-csx-ufmg/following{/other_user}",
"gists_url": "https://api.github.com/users/lab-csx-ufmg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lab-csx-ufmg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lab-csx-ufmg/subscriptions",
"organizations_url": "https://api.github.com/users/lab-csx-ufmg/orgs",
"repos_url": "https://api.github.com/users/lab-csx-ufmg/repos",
"events_url": "https://api.github.com/users/lab-csx-ufmg/events{/privacy}",
"received_events_url": "https://api.github.com/users/lab-csx-ufmg/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/lab-csx-ufmg/LinkedOntoGazetteer",
"description": "Repository with the artefacts created to implement the LinkedOntoGazetteer",
"fork": false,
"url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer",
"forks_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/forks",
"keys_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/teams",
"hooks_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/hooks",
"issue_events_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/issues/events{/number}",
"events_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/events",
"assignees_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/assignees{/user}",
"branches_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/branches{/branch}",
"tags_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/tags",
"blobs_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/statuses/{sha}",
"languages_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/languages",
"stargazers_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/stargazers",
"contributors_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/contributors",
"subscribers_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/subscribers",
"subscription_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/subscription",
"commits_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/contents/{+path}",
"compare_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/merges",
"archive_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/downloads",
"issues_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/issues{/number}",
"pulls_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/pulls{/number}",
"milestones_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/milestones{/number}",
"notifications_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/labels{/name}",
"releases_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/releases{/id}",
"deployments_url": "https://api.github.com/repos/lab-csx-ufmg/LinkedOntoGazetteer/deployments",
"created_at": "2016-03-14T23:56:00Z",
"updated_at": "2018-03-29T12:52:32Z",
"pushed_at": "2018-03-29T12:52:31Z",
"git_url": "git://github.com/lab-csx-ufmg/LinkedOntoGazetteer.git",
"ssh_url": "[email protected]:lab-csx-ufmg/LinkedOntoGazetteer.git",
"clone_url": "https://github.com/lab-csx-ufmg/LinkedOntoGazetteer.git",
"svn_url": "https://github.com/lab-csx-ufmg/LinkedOntoGazetteer",
"homepage": " http://aqui.io/log",
"size": 97,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Java",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master"
},
{
"id": 70271667,
"node_id": "MDEwOlJlcG9zaXRvcnk3MDI3MTY2Nw==",
"name": "omtg-designer",
"full_name": "lab-csx-ufmg/omtg-designer",
"private": false,
"owner": {
"login": "lab-csx-ufmg",
"id": 15199560,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE1MTk5NTYw",
"avatar_url": "https://avatars1.githubusercontent.com/u/15199560?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lab-csx-ufmg",
"html_url": "https://github.com/lab-csx-ufmg",
"followers_url": "https://api.github.com/users/lab-csx-ufmg/followers",
"following_url": "https://api.github.com/users/lab-csx-ufmg/following{/other_user}",
"gists_url": "https://api.github.com/users/lab-csx-ufmg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lab-csx-ufmg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lab-csx-ufmg/subscriptions",
"organizations_url": "https://api.github.com/users/lab-csx-ufmg/orgs",
"repos_url": "https://api.github.com/users/lab-csx-ufmg/repos",
"events_url": "https://api.github.com/users/lab-csx-ufmg/events{/privacy}",
"received_events_url": "https://api.github.com/users/lab-csx-ufmg/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/lab-csx-ufmg/omtg-designer",
"description": "Web tool for modeling geographic databases.",
"fork": true,
"url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer",
"forks_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/forks",
"keys_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/teams",
"hooks_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/hooks",
"issue_events_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/issues/events{/number}",
"events_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/events",
"assignees_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/assignees{/user}",
"branches_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/branches{/branch}",
"tags_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/tags",
"blobs_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/statuses/{sha}",
"languages_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/languages",
"stargazers_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/stargazers",
"contributors_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/contributors",
"subscribers_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/subscribers",
"subscription_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/subscription",
"commits_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/contents/{+path}",
"compare_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/merges",
"archive_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/downloads",
"issues_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/issues{/number}",
"pulls_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/pulls{/number}",
"milestones_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/milestones{/number}",
"notifications_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/labels{/name}",
"releases_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/releases{/id}",
"deployments_url": "https://api.github.com/repos/lab-csx-ufmg/omtg-designer/deployments",
"created_at": "2016-10-07T18:17:21Z",
"updated_at": "2018-07-27T07:54:51Z",
"pushed_at": "2018-07-27T07:54:50Z",
"git_url": "git://github.com/lab-csx-ufmg/omtg-designer.git",
"ssh_url": "[email protected]:lab-csx-ufmg/omtg-designer.git",
"clone_url": "https://github.com/lab-csx-ufmg/omtg-designer.git",
"svn_url": "https://github.com/lab-csx-ufmg/omtg-designer",
"homepage": "http://www.aqui.io/omtg/",
"size": 2416,
"stargazers_count": 1,
"watchers_count": 1,
"language": "JavaScript",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "master"
},
{
"id": 53261339,
"node_id": "MDEwOlJlcG9zaXRvcnk1MzI2MTMzOQ==",
"name": "omtg2gml",
"full_name": "lab-csx-ufmg/omtg2gml",
"private": false,
"owner": {
"login": "lab-csx-ufmg",
"id": 15199560,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE1MTk5NTYw",
"avatar_url": "https://avatars1.githubusercontent.com/u/15199560?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lab-csx-ufmg",
"html_url": "https://github.com/lab-csx-ufmg",
"followers_url": "https://api.github.com/users/lab-csx-ufmg/followers",
"following_url": "https://api.github.com/users/lab-csx-ufmg/following{/other_user}",
"gists_url": "https://api.github.com/users/lab-csx-ufmg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lab-csx-ufmg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lab-csx-ufmg/subscriptions",
"organizations_url": "https://api.github.com/users/lab-csx-ufmg/orgs",
"repos_url": "https://api.github.com/users/lab-csx-ufmg/repos",
"events_url": "https://api.github.com/users/lab-csx-ufmg/events{/privacy}",
"received_events_url": "https://api.github.com/users/lab-csx-ufmg/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/lab-csx-ufmg/omtg2gml",
"description": "Conceptual-physical mapping tool to generate GML schemes from an OMT-G scheme.",
"fork": false,
"url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml",
"forks_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/forks",
"keys_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/teams",
"hooks_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/hooks",
"issue_events_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/issues/events{/number}",
"events_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/events",
"assignees_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/assignees{/user}",
"branches_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/branches{/branch}",
"tags_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/tags",
"blobs_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/statuses/{sha}",
"languages_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/languages",
"stargazers_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/stargazers",
"contributors_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/contributors",
"subscribers_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/subscribers",
"subscription_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/subscription",
"commits_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/contents/{+path}",
"compare_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/merges",
"archive_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/downloads",
"issues_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/issues{/number}",
"pulls_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/pulls{/number}",
"milestones_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/milestones{/number}",
"notifications_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/labels{/name}",
"releases_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/releases{/id}",
"deployments_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2gml/deployments",
"created_at": "2016-03-06T15:21:46Z",
"updated_at": "2016-09-02T19:23:45Z",
"pushed_at": "2016-03-07T17:17:14Z",
"git_url": "git://github.com/lab-csx-ufmg/omtg2gml.git",
"ssh_url": "[email protected]:lab-csx-ufmg/omtg2gml.git",
"clone_url": "https://github.com/lab-csx-ufmg/omtg2gml.git",
"svn_url": "https://github.com/lab-csx-ufmg/omtg2gml",
"homepage": "",
"size": 1201,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Java",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master"
},
{
"id": 53262144,
"node_id": "MDEwOlJlcG9zaXRvcnk1MzI2MjE0NA==",
"name": "omtg2sql",
"full_name": "lab-csx-ufmg/omtg2sql",
"private": false,
"owner": {
"login": "lab-csx-ufmg",
"id": 15199560,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE1MTk5NTYw",
"avatar_url": "https://avatars1.githubusercontent.com/u/15199560?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lab-csx-ufmg",
"html_url": "https://github.com/lab-csx-ufmg",
"followers_url": "https://api.github.com/users/lab-csx-ufmg/followers",
"following_url": "https://api.github.com/users/lab-csx-ufmg/following{/other_user}",
"gists_url": "https://api.github.com/users/lab-csx-ufmg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lab-csx-ufmg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lab-csx-ufmg/subscriptions",
"organizations_url": "https://api.github.com/users/lab-csx-ufmg/orgs",
"repos_url": "https://api.github.com/users/lab-csx-ufmg/repos",
"events_url": "https://api.github.com/users/lab-csx-ufmg/events{/privacy}",
"received_events_url": "https://api.github.com/users/lab-csx-ufmg/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/lab-csx-ufmg/omtg2sql",
"description": "Conceptual-physical mapping tool to generate SQL schemes from an OMT-G scheme.",
"fork": false,
"url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql",
"forks_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/forks",
"keys_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/teams",
"hooks_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/hooks",
"issue_events_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/issues/events{/number}",
"events_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/events",
"assignees_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/assignees{/user}",
"branches_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/branches{/branch}",
"tags_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/tags",
"blobs_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/statuses/{sha}",
"languages_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/languages",
"stargazers_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/stargazers",
"contributors_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/contributors",
"subscribers_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/subscribers",
"subscription_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/subscription",
"commits_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/contents/{+path}",
"compare_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/merges",
"archive_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/downloads",
"issues_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/issues{/number}",
"pulls_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/pulls{/number}",
"milestones_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/milestones{/number}",
"notifications_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/labels{/name}",
"releases_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/releases{/id}",
"deployments_url": "https://api.github.com/repos/lab-csx-ufmg/omtg2sql/deployments",
"created_at": "2016-03-06T15:38:21Z",
"updated_at": "2016-09-02T19:23:20Z",
"pushed_at": "2016-03-07T17:17:00Z",
"git_url": "git://github.com/lab-csx-ufmg/omtg2sql.git",
"ssh_url": "[email protected]:lab-csx-ufmg/omtg2sql.git",
"clone_url": "https://github.com/lab-csx-ufmg/omtg2sql.git",
"svn_url": "https://github.com/lab-csx-ufmg/omtg2sql",
"homepage": "",
"size": 1142,
"stargazers_count": 1,
"watchers_count": 1,
"language": "Java",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 1,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 1,
"open_issues": 0,
"watchers": 1,
"default_branch": "master"
},
{
"id": 53343273,
"node_id": "MDEwOlJlcG9zaXRvcnk1MzM0MzI3Mw==",
"name": "onibusbh",
"full_name": "lab-csx-ufmg/onibusbh",
"private": false,
"owner": {
"login": "lab-csx-ufmg",
"id": 15199560,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE1MTk5NTYw",
"avatar_url": "https://avatars1.githubusercontent.com/u/15199560?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lab-csx-ufmg",
"html_url": "https://github.com/lab-csx-ufmg",
"followers_url": "https://api.github.com/users/lab-csx-ufmg/followers",
"following_url": "https://api.github.com/users/lab-csx-ufmg/following{/other_user}",
"gists_url": "https://api.github.com/users/lab-csx-ufmg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lab-csx-ufmg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lab-csx-ufmg/subscriptions",
"organizations_url": "https://api.github.com/users/lab-csx-ufmg/orgs",
"repos_url": "https://api.github.com/users/lab-csx-ufmg/repos",
"events_url": "https://api.github.com/users/lab-csx-ufmg/events{/privacy}",
"received_events_url": "https://api.github.com/users/lab-csx-ufmg/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/lab-csx-ufmg/onibusbh",
"description": "Itineraries of Belo Horizonte bus lines",
"fork": false,
"url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh",
"forks_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/forks",
"keys_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/teams",
"hooks_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/hooks",
"issue_events_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/issues/events{/number}",
"events_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/events",
"assignees_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/assignees{/user}",
"branches_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/branches{/branch}",
"tags_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/tags",
"blobs_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/statuses/{sha}",
"languages_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/languages",
"stargazers_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/stargazers",
"contributors_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/contributors",
"subscribers_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/subscribers",
"subscription_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/subscription",
"commits_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/contents/{+path}",
"compare_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/merges",
"archive_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/downloads",
"issues_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/issues{/number}",
"pulls_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/pulls{/number}",
"milestones_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/milestones{/number}",
"notifications_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/labels{/name}",
"releases_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/releases{/id}",
"deployments_url": "https://api.github.com/repos/lab-csx-ufmg/onibusbh/deployments",
"created_at": "2016-03-07T17:06:50Z",
"updated_at": "2018-07-20T15:37:59Z",
"pushed_at": "2016-03-07T17:16:41Z",
"git_url": "git://github.com/lab-csx-ufmg/onibusbh.git",
"ssh_url": "[email protected]:lab-csx-ufmg/onibusbh.git",
"clone_url": "https://github.com/lab-csx-ufmg/onibusbh.git",
"svn_url": "https://github.com/lab-csx-ufmg/onibusbh",
"homepage": null,
"size": 34313,
"stargazers_count": 1,
"watchers_count": 1,
"language": "HTML",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "master"
},
{
"id": 53901036,
"node_id": "MDEwOlJlcG9zaXRvcnk1MzkwMTAzNg==",
"name": "postgres-postgis-helpers",
"full_name": "lab-csx-ufmg/postgres-postgis-helpers",
"private": false,
"owner": {
"login": "lab-csx-ufmg",
"id": 15199560,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE1MTk5NTYw",
"avatar_url": "https://avatars1.githubusercontent.com/u/15199560?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lab-csx-ufmg",
"html_url": "https://github.com/lab-csx-ufmg",
"followers_url": "https://api.github.com/users/lab-csx-ufmg/followers",
"following_url": "https://api.github.com/users/lab-csx-ufmg/following{/other_user}",
"gists_url": "https://api.github.com/users/lab-csx-ufmg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lab-csx-ufmg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lab-csx-ufmg/subscriptions",
"organizations_url": "https://api.github.com/users/lab-csx-ufmg/orgs",
"repos_url": "https://api.github.com/users/lab-csx-ufmg/repos",
"events_url": "https://api.github.com/users/lab-csx-ufmg/events{/privacy}",
"received_events_url": "https://api.github.com/users/lab-csx-ufmg/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/lab-csx-ufmg/postgres-postgis-helpers",
"description": "Helper codes for Postgres and Postgis",
"fork": false,
"url": "https://api.github.com/repos/lab-csx-ufmg/postgres-postgis-helpers",
"forks_url": "https://api.github.com/repos/lab-csx-ufmg/postgres-postgis-helpers/forks",
"keys_url": "https://api.github.com/repos/lab-csx-ufmg/postgres-postgis-helpers/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/lab-csx-ufmg/postgres-postgis-helpers/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/lab-csx-ufmg/postgres-postgis-helpers/teams",
"hooks_url": "https://api.github.com/repos/lab-csx-ufmg/postgres-postgis-helpers/hooks",
"issue_events_url": "https://api.github.com/repos/lab-csx-ufmg/postgres-postgis-helpers/issues/events{/number}",
"events_url": "https://api.github.com/repos/lab-csx-ufmg/postgres-postgis-helpers/events",
"assignees_url": "https://api.github.com/repos/lab-csx-ufmg/postgres-postgis-helpers/assignees{/user}",
"branches_url": "https://api.github.com/repos/lab-csx-ufmg/postgres-postgis-helpers/branches{/branch}",
"tags_url": "https://api.github.com/repos/lab-csx-ufmg/postgres-postgis-helpers/tags",
"blobs_url": "https://api.github.com/repos/lab-csx-ufmg/postgres-postgis-helpers/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/lab-csx-ufmg/postgres-postgis-helpers/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/lab-csx-ufmg/postgres-postgis-helpers/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/lab-csx-ufmg/postgres-postgis-helpers/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/lab-csx-ufmg/postgres-postgis-helpers/statuses/{sha}",