-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4d-for-ios-formatter.json
1373 lines (1373 loc) · 79.1 KB
/
4d-for-ios-formatter.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
{
"incomplete_results": false,
"items": [
{
"allow_forking": true,
"archive_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/assignees{/user}",
"blobs_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/branches{/branch}",
"clone_url": "https://github.com/4d-go-mobile/formatter-Mail.git",
"collaborators_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/comments{/number}",
"commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/commits{/sha}",
"compare_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/contents/{+path}",
"contributors_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/contributors",
"created_at": "2019-06-05T11:26:35Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/deployments",
"description": "4D for iOS Data Formatter",
"disabled": false,
"downloads_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/downloads",
"events_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/events",
"fork": false,
"forks": 1,
"forks_count": 1,
"forks_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/forks",
"full_name": "4d-go-mobile/formatter-Mail",
"git_commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/git/tags{/sha}",
"git_url": "git://github.com/4d-go-mobile/formatter-Mail.git",
"has_downloads": true,
"has_issues": true,
"has_pages": false,
"has_projects": true,
"has_wiki": true,
"homepage": "https://developer.4d.com/4d-for-ios/docs/en/custom-data-formatters.html",
"hooks_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/hooks",
"html_url": "https://github.com/4d-go-mobile/formatter-Mail",
"id": 190382063,
"is_template": false,
"issue_comment_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/issues/events{/number}",
"issues_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/issues{/number}",
"keys_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/keys{/key_id}",
"labels_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/labels{/name}",
"language": "Swift",
"languages_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/languages",
"license": {
"key": "other",
"name": "Other",
"node_id": "MDc6TGljZW5zZTA=",
"spdx_id": "NOASSERTION",
"url": null
},
"merges_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/merges",
"milestones_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/milestones{/number}",
"mirror_url": null,
"name": "formatter-Mail",
"node_id": "MDEwOlJlcG9zaXRvcnkxOTAzODIwNjM=",
"notifications_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/notifications{?since,all,participating}",
"open_issues": 0,
"open_issues_count": 0,
"owner": {
"avatar_url": "https://avatars.githubusercontent.com/u/79459282?v=4",
"events_url": "https://api.github.com/users/4d-go-mobile/events{/privacy}",
"followers_url": "https://api.github.com/users/4d-go-mobile/followers",
"following_url": "https://api.github.com/users/4d-go-mobile/following{/other_user}",
"gists_url": "https://api.github.com/users/4d-go-mobile/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/4d-go-mobile",
"id": 79459282,
"login": "4d-go-mobile",
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc5NDU5Mjgy",
"organizations_url": "https://api.github.com/users/4d-go-mobile/orgs",
"received_events_url": "https://api.github.com/users/4d-go-mobile/received_events",
"repos_url": "https://api.github.com/users/4d-go-mobile/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/4d-go-mobile/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/4d-go-mobile/subscriptions",
"type": "Organization",
"url": "https://api.github.com/users/4d-go-mobile"
},
"permissions": {
"admin": false,
"maintain": false,
"pull": false,
"push": false,
"triage": false
},
"private": false,
"pulls_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/pulls{/number}",
"pushed_at": "2019-11-28T13:53:32Z",
"releases_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/releases{/id}",
"size": 28,
"ssh_url": "git@github.com:4d-go-mobile/formatter-Mail.git",
"stargazers_count": 0,
"stargazers_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/stargazers",
"statuses_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/subscribers",
"subscription_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/subscription",
"svn_url": "https://github.com/4d-go-mobile/formatter-Mail",
"tags_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/tags",
"teams_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/teams",
"topics": [
"4d-for-ios",
"4d-for-ios-formatter"
],
"trees_url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail/git/trees{/sha}",
"updated_at": "2021-07-01T13:50:05Z",
"url": "https://api.github.com/repos/4d-go-mobile/formatter-Mail",
"visibility": "public",
"watchers": 0,
"watchers_count": 0
},
{
"allow_forking": true,
"archive_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/assignees{/user}",
"blobs_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/branches{/branch}",
"clone_url": "https://github.com/4d-go-mobile/formatter-Url.git",
"collaborators_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/comments{/number}",
"commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/commits{/sha}",
"compare_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/contents/{+path}",
"contributors_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/contributors",
"created_at": "2019-06-05T11:32:50Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/deployments",
"description": "Open an url in external web view",
"disabled": false,
"downloads_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/downloads",
"events_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/events",
"fork": false,
"forks": 2,
"forks_count": 2,
"forks_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/forks",
"full_name": "4d-go-mobile/formatter-Url",
"git_commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/git/tags{/sha}",
"git_url": "git://github.com/4d-go-mobile/formatter-Url.git",
"has_downloads": true,
"has_issues": true,
"has_pages": false,
"has_projects": true,
"has_wiki": true,
"homepage": "https://developer.4d.com/4d-for-ios/docs/en/custom-data-formatters.html",
"hooks_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/hooks",
"html_url": "https://github.com/4d-go-mobile/formatter-Url",
"id": 190382839,
"is_template": false,
"issue_comment_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/issues/events{/number}",
"issues_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/issues{/number}",
"keys_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/keys{/key_id}",
"labels_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/labels{/name}",
"language": "Swift",
"languages_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/languages",
"license": {
"key": "other",
"name": "Other",
"node_id": "MDc6TGljZW5zZTA=",
"spdx_id": "NOASSERTION",
"url": null
},
"merges_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/merges",
"milestones_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/milestones{/number}",
"mirror_url": null,
"name": "formatter-Url",
"node_id": "MDEwOlJlcG9zaXRvcnkxOTAzODI4Mzk=",
"notifications_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/notifications{?since,all,participating}",
"open_issues": 0,
"open_issues_count": 0,
"owner": {
"avatar_url": "https://avatars.githubusercontent.com/u/79459282?v=4",
"events_url": "https://api.github.com/users/4d-go-mobile/events{/privacy}",
"followers_url": "https://api.github.com/users/4d-go-mobile/followers",
"following_url": "https://api.github.com/users/4d-go-mobile/following{/other_user}",
"gists_url": "https://api.github.com/users/4d-go-mobile/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/4d-go-mobile",
"id": 79459282,
"login": "4d-go-mobile",
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc5NDU5Mjgy",
"organizations_url": "https://api.github.com/users/4d-go-mobile/orgs",
"received_events_url": "https://api.github.com/users/4d-go-mobile/received_events",
"repos_url": "https://api.github.com/users/4d-go-mobile/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/4d-go-mobile/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/4d-go-mobile/subscriptions",
"type": "Organization",
"url": "https://api.github.com/users/4d-go-mobile"
},
"permissions": {
"admin": false,
"maintain": false,
"pull": false,
"push": false,
"triage": false
},
"private": false,
"pulls_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/pulls{/number}",
"pushed_at": "2019-11-28T13:53:37Z",
"releases_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/releases{/id}",
"size": 30,
"ssh_url": "git@github.com:4d-go-mobile/formatter-Url.git",
"stargazers_count": 0,
"stargazers_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/stargazers",
"statuses_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/subscribers",
"subscription_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/subscription",
"svn_url": "https://github.com/4d-go-mobile/formatter-Url",
"tags_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/tags",
"teams_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/teams",
"topics": [
"4d-for-ios",
"4d-for-ios-formatter"
],
"trees_url": "https://api.github.com/repos/4d-go-mobile/formatter-Url/git/trees{/sha}",
"updated_at": "2021-07-20T22:11:52Z",
"url": "https://api.github.com/repos/4d-go-mobile/formatter-Url",
"visibility": "public",
"watchers": 0,
"watchers_count": 0
},
{
"allow_forking": true,
"archive_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/assignees{/user}",
"blobs_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/branches{/branch}",
"clone_url": "https://github.com/4d-go-mobile/formatter-Phone.git",
"collaborators_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/comments{/number}",
"commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/commits{/sha}",
"compare_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/contents/{+path}",
"contributors_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/contributors",
"created_at": "2019-06-05T11:35:38Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/deployments",
"description": "when clicking on phone number open a menu to call or to add to user contact",
"disabled": false,
"downloads_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/downloads",
"events_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/events",
"fork": false,
"forks": 1,
"forks_count": 1,
"forks_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/forks",
"full_name": "4d-go-mobile/formatter-Phone",
"git_commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/git/tags{/sha}",
"git_url": "git://github.com/4d-go-mobile/formatter-Phone.git",
"has_downloads": true,
"has_issues": true,
"has_pages": false,
"has_projects": true,
"has_wiki": true,
"homepage": "",
"hooks_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/hooks",
"html_url": "https://github.com/4d-go-mobile/formatter-Phone",
"id": 190383205,
"is_template": false,
"issue_comment_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/issues/events{/number}",
"issues_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/issues{/number}",
"keys_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/keys{/key_id}",
"labels_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/labels{/name}",
"language": "Swift",
"languages_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/languages",
"license": {
"key": "other",
"name": "Other",
"node_id": "MDc6TGljZW5zZTA=",
"spdx_id": "NOASSERTION",
"url": null
},
"merges_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/merges",
"milestones_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/milestones{/number}",
"mirror_url": null,
"name": "formatter-Phone",
"node_id": "MDEwOlJlcG9zaXRvcnkxOTAzODMyMDU=",
"notifications_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/notifications{?since,all,participating}",
"open_issues": 1,
"open_issues_count": 1,
"owner": {
"avatar_url": "https://avatars.githubusercontent.com/u/79459282?v=4",
"events_url": "https://api.github.com/users/4d-go-mobile/events{/privacy}",
"followers_url": "https://api.github.com/users/4d-go-mobile/followers",
"following_url": "https://api.github.com/users/4d-go-mobile/following{/other_user}",
"gists_url": "https://api.github.com/users/4d-go-mobile/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/4d-go-mobile",
"id": 79459282,
"login": "4d-go-mobile",
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc5NDU5Mjgy",
"organizations_url": "https://api.github.com/users/4d-go-mobile/orgs",
"received_events_url": "https://api.github.com/users/4d-go-mobile/received_events",
"repos_url": "https://api.github.com/users/4d-go-mobile/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/4d-go-mobile/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/4d-go-mobile/subscriptions",
"type": "Organization",
"url": "https://api.github.com/users/4d-go-mobile"
},
"permissions": {
"admin": false,
"maintain": false,
"pull": false,
"push": false,
"triage": false
},
"private": false,
"pulls_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/pulls{/number}",
"pushed_at": "2020-03-18T15:27:28Z",
"releases_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/releases{/id}",
"size": 32,
"ssh_url": "git@github.com:4d-go-mobile/formatter-Phone.git",
"stargazers_count": 0,
"stargazers_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/stargazers",
"statuses_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/subscribers",
"subscription_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/subscription",
"svn_url": "https://github.com/4d-go-mobile/formatter-Phone",
"tags_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/tags",
"teams_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/teams",
"topics": [
"4d-for-ios",
"4d-for-ios-formatter"
],
"trees_url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone/git/trees{/sha}",
"updated_at": "2021-07-20T22:15:51Z",
"url": "https://api.github.com/repos/4d-go-mobile/formatter-Phone",
"visibility": "public",
"watchers": 0,
"watchers_count": 0
},
{
"allow_forking": true,
"archive_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/assignees{/user}",
"blobs_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/branches{/branch}",
"clone_url": "https://github.com/4d-go-mobile/formatter-Address.git",
"collaborators_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/comments{/number}",
"commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/commits{/sha}",
"compare_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/contents/{+path}",
"contributors_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/contributors",
"created_at": "2019-06-05T12:24:25Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/deployments",
"description": "Open the map app with the selected address",
"disabled": false,
"downloads_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/downloads",
"events_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/events",
"fork": false,
"forks": 1,
"forks_count": 1,
"forks_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/forks",
"full_name": "4d-go-mobile/formatter-Address",
"git_commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/git/tags{/sha}",
"git_url": "git://github.com/4d-go-mobile/formatter-Address.git",
"has_downloads": true,
"has_issues": true,
"has_pages": false,
"has_projects": true,
"has_wiki": true,
"homepage": "",
"hooks_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/hooks",
"html_url": "https://github.com/4d-go-mobile/formatter-Address",
"id": 190389765,
"is_template": false,
"issue_comment_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/issues/events{/number}",
"issues_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/issues{/number}",
"keys_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/keys{/key_id}",
"labels_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/labels{/name}",
"language": "Swift",
"languages_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/languages",
"license": {
"key": "other",
"name": "Other",
"node_id": "MDc6TGljZW5zZTA=",
"spdx_id": "NOASSERTION",
"url": null
},
"merges_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/merges",
"milestones_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/milestones{/number}",
"mirror_url": null,
"name": "formatter-Address",
"node_id": "MDEwOlJlcG9zaXRvcnkxOTAzODk3NjU=",
"notifications_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/notifications{?since,all,participating}",
"open_issues": 0,
"open_issues_count": 0,
"owner": {
"avatar_url": "https://avatars.githubusercontent.com/u/79459282?v=4",
"events_url": "https://api.github.com/users/4d-go-mobile/events{/privacy}",
"followers_url": "https://api.github.com/users/4d-go-mobile/followers",
"following_url": "https://api.github.com/users/4d-go-mobile/following{/other_user}",
"gists_url": "https://api.github.com/users/4d-go-mobile/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/4d-go-mobile",
"id": 79459282,
"login": "4d-go-mobile",
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc5NDU5Mjgy",
"organizations_url": "https://api.github.com/users/4d-go-mobile/orgs",
"received_events_url": "https://api.github.com/users/4d-go-mobile/received_events",
"repos_url": "https://api.github.com/users/4d-go-mobile/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/4d-go-mobile/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/4d-go-mobile/subscriptions",
"type": "Organization",
"url": "https://api.github.com/users/4d-go-mobile"
},
"permissions": {
"admin": false,
"maintain": false,
"pull": false,
"push": false,
"triage": false
},
"private": false,
"pulls_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/pulls{/number}",
"pushed_at": "2019-11-28T13:53:46Z",
"releases_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/releases{/id}",
"size": 27,
"ssh_url": "git@github.com:4d-go-mobile/formatter-Address.git",
"stargazers_count": 0,
"stargazers_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/stargazers",
"statuses_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/subscribers",
"subscription_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/subscription",
"svn_url": "https://github.com/4d-go-mobile/formatter-Address",
"tags_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/tags",
"teams_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/teams",
"topics": [
"4d-for-ios",
"4d-for-ios-formatter"
],
"trees_url": "https://api.github.com/repos/4d-go-mobile/formatter-Address/git/trees{/sha}",
"updated_at": "2021-07-20T22:12:35Z",
"url": "https://api.github.com/repos/4d-go-mobile/formatter-Address",
"visibility": "public",
"watchers": 0,
"watchers_count": 0
},
{
"allow_forking": true,
"archive_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/assignees{/user}",
"blobs_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/branches{/branch}",
"clone_url": "https://github.com/4d-go-mobile/formatter-IntegerToImage.git",
"collaborators_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/comments{/number}",
"commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/commits{/sha}",
"compare_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/contents/{+path}",
"contributors_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/contributors",
"created_at": "2019-06-05T12:29:02Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/deployments",
"description": "4D for iOS Data Formatter",
"disabled": false,
"downloads_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/downloads",
"events_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/events",
"fork": false,
"forks": 1,
"forks_count": 1,
"forks_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/forks",
"full_name": "4d-go-mobile/formatter-IntegerToImage",
"git_commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/git/tags{/sha}",
"git_url": "git://github.com/4d-go-mobile/formatter-IntegerToImage.git",
"has_downloads": true,
"has_issues": true,
"has_pages": false,
"has_projects": true,
"has_wiki": true,
"homepage": "https://developer.4d.com/4d-for-ios/docs/en/custom-data-formatters.html",
"hooks_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/hooks",
"html_url": "https://github.com/4d-go-mobile/formatter-IntegerToImage",
"id": 190390458,
"is_template": false,
"issue_comment_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/issues/events{/number}",
"issues_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/issues{/number}",
"keys_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/keys{/key_id}",
"labels_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/labels{/name}",
"language": null,
"languages_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/languages",
"license": {
"key": "other",
"name": "Other",
"node_id": "MDc6TGljZW5zZTA=",
"spdx_id": "NOASSERTION",
"url": null
},
"merges_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/merges",
"milestones_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/milestones{/number}",
"mirror_url": null,
"name": "formatter-IntegerToImage",
"node_id": "MDEwOlJlcG9zaXRvcnkxOTAzOTA0NTg=",
"notifications_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/notifications{?since,all,participating}",
"open_issues": 0,
"open_issues_count": 0,
"owner": {
"avatar_url": "https://avatars.githubusercontent.com/u/79459282?v=4",
"events_url": "https://api.github.com/users/4d-go-mobile/events{/privacy}",
"followers_url": "https://api.github.com/users/4d-go-mobile/followers",
"following_url": "https://api.github.com/users/4d-go-mobile/following{/other_user}",
"gists_url": "https://api.github.com/users/4d-go-mobile/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/4d-go-mobile",
"id": 79459282,
"login": "4d-go-mobile",
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc5NDU5Mjgy",
"organizations_url": "https://api.github.com/users/4d-go-mobile/orgs",
"received_events_url": "https://api.github.com/users/4d-go-mobile/received_events",
"repos_url": "https://api.github.com/users/4d-go-mobile/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/4d-go-mobile/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/4d-go-mobile/subscriptions",
"type": "Organization",
"url": "https://api.github.com/users/4d-go-mobile"
},
"permissions": {
"admin": false,
"maintain": false,
"pull": false,
"push": false,
"triage": false
},
"private": false,
"pulls_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/pulls{/number}",
"pushed_at": "2019-11-28T13:53:51Z",
"releases_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/releases{/id}",
"size": 68,
"ssh_url": "git@github.com:4d-go-mobile/formatter-IntegerToImage.git",
"stargazers_count": 0,
"stargazers_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/stargazers",
"statuses_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/subscribers",
"subscription_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/subscription",
"svn_url": "https://github.com/4d-go-mobile/formatter-IntegerToImage",
"tags_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/tags",
"teams_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/teams",
"topics": [
"4d-for-ios",
"4d-for-ios-formatter"
],
"trees_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage/git/trees{/sha}",
"updated_at": "2021-07-01T13:50:05Z",
"url": "https://api.github.com/repos/4d-go-mobile/formatter-IntegerToImage",
"visibility": "public",
"watchers": 0,
"watchers_count": 0
},
{
"allow_forking": true,
"archive_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/assignees{/user}",
"blobs_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/branches{/branch}",
"clone_url": "https://github.com/4d-go-mobile/formatter-IntToString.git",
"collaborators_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/comments{/number}",
"commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/commits{/sha}",
"compare_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/contents/{+path}",
"contributors_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/contributors",
"created_at": "2019-06-05T12:32:19Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/deployments",
"description": "4D for iOS Data Formatter",
"disabled": false,
"downloads_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/downloads",
"events_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/events",
"fork": false,
"forks": 1,
"forks_count": 1,
"forks_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/forks",
"full_name": "4d-go-mobile/formatter-IntToString",
"git_commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/git/tags{/sha}",
"git_url": "git://github.com/4d-go-mobile/formatter-IntToString.git",
"has_downloads": true,
"has_issues": true,
"has_pages": false,
"has_projects": true,
"has_wiki": true,
"homepage": "https://developer.4d.com/4d-for-ios/docs/en/custom-data-formatters.html",
"hooks_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/hooks",
"html_url": "https://github.com/4d-go-mobile/formatter-IntToString",
"id": 190390946,
"is_template": false,
"issue_comment_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/issues/events{/number}",
"issues_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/issues{/number}",
"keys_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/keys{/key_id}",
"labels_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/labels{/name}",
"language": null,
"languages_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/languages",
"license": {
"key": "other",
"name": "Other",
"node_id": "MDc6TGljZW5zZTA=",
"spdx_id": "NOASSERTION",
"url": null
},
"merges_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/merges",
"milestones_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/milestones{/number}",
"mirror_url": null,
"name": "formatter-IntToString",
"node_id": "MDEwOlJlcG9zaXRvcnkxOTAzOTA5NDY=",
"notifications_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/notifications{?since,all,participating}",
"open_issues": 0,
"open_issues_count": 0,
"owner": {
"avatar_url": "https://avatars.githubusercontent.com/u/79459282?v=4",
"events_url": "https://api.github.com/users/4d-go-mobile/events{/privacy}",
"followers_url": "https://api.github.com/users/4d-go-mobile/followers",
"following_url": "https://api.github.com/users/4d-go-mobile/following{/other_user}",
"gists_url": "https://api.github.com/users/4d-go-mobile/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/4d-go-mobile",
"id": 79459282,
"login": "4d-go-mobile",
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc5NDU5Mjgy",
"organizations_url": "https://api.github.com/users/4d-go-mobile/orgs",
"received_events_url": "https://api.github.com/users/4d-go-mobile/received_events",
"repos_url": "https://api.github.com/users/4d-go-mobile/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/4d-go-mobile/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/4d-go-mobile/subscriptions",
"type": "Organization",
"url": "https://api.github.com/users/4d-go-mobile"
},
"permissions": {
"admin": false,
"maintain": false,
"pull": false,
"push": false,
"triage": false
},
"private": false,
"pulls_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/pulls{/number}",
"pushed_at": "2019-11-28T13:53:56Z",
"releases_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/releases{/id}",
"size": 24,
"ssh_url": "git@github.com:4d-go-mobile/formatter-IntToString.git",
"stargazers_count": 0,
"stargazers_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/stargazers",
"statuses_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/subscribers",
"subscription_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/subscription",
"svn_url": "https://github.com/4d-go-mobile/formatter-IntToString",
"tags_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/tags",
"teams_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/teams",
"topics": [
"4d-for-ios",
"4d-for-ios-formatter"
],
"trees_url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString/git/trees{/sha}",
"updated_at": "2021-07-01T13:50:05Z",
"url": "https://api.github.com/repos/4d-go-mobile/formatter-IntToString",
"visibility": "public",
"watchers": 0,
"watchers_count": 0
},
{
"allow_forking": true,
"archive_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/assignees{/user}",
"blobs_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/branches{/branch}",
"clone_url": "https://github.com/4d-go-mobile/formatter-TextToImage.git",
"collaborators_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/comments{/number}",
"commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/commits{/sha}",
"compare_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/contents/{+path}",
"contributors_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/contributors",
"created_at": "2019-06-05T12:35:41Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/deployments",
"description": "4D for iOS Data Formatter",
"disabled": false,
"downloads_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/downloads",
"events_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/events",
"fork": false,
"forks": 1,
"forks_count": 1,
"forks_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/forks",
"full_name": "4d-go-mobile/formatter-TextToImage",
"git_commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/git/tags{/sha}",
"git_url": "git://github.com/4d-go-mobile/formatter-TextToImage.git",
"has_downloads": true,
"has_issues": true,
"has_pages": false,
"has_projects": true,
"has_wiki": true,
"homepage": "https://developer.4d.com/4d-for-ios/docs/en/custom-data-formatters.html",
"hooks_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/hooks",
"html_url": "https://github.com/4d-go-mobile/formatter-TextToImage",
"id": 190391454,
"is_template": false,
"issue_comment_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/issues/events{/number}",
"issues_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/issues{/number}",
"keys_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/keys{/key_id}",
"labels_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/labels{/name}",
"language": null,
"languages_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/languages",
"license": {
"key": "other",
"name": "Other",
"node_id": "MDc6TGljZW5zZTA=",
"spdx_id": "NOASSERTION",
"url": null
},
"merges_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/merges",
"milestones_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/milestones{/number}",
"mirror_url": null,
"name": "formatter-TextToImage",
"node_id": "MDEwOlJlcG9zaXRvcnkxOTAzOTE0NTQ=",
"notifications_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/notifications{?since,all,participating}",
"open_issues": 0,
"open_issues_count": 0,
"owner": {
"avatar_url": "https://avatars.githubusercontent.com/u/79459282?v=4",
"events_url": "https://api.github.com/users/4d-go-mobile/events{/privacy}",
"followers_url": "https://api.github.com/users/4d-go-mobile/followers",
"following_url": "https://api.github.com/users/4d-go-mobile/following{/other_user}",
"gists_url": "https://api.github.com/users/4d-go-mobile/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/4d-go-mobile",
"id": 79459282,
"login": "4d-go-mobile",
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc5NDU5Mjgy",
"organizations_url": "https://api.github.com/users/4d-go-mobile/orgs",
"received_events_url": "https://api.github.com/users/4d-go-mobile/received_events",
"repos_url": "https://api.github.com/users/4d-go-mobile/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/4d-go-mobile/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/4d-go-mobile/subscriptions",
"type": "Organization",
"url": "https://api.github.com/users/4d-go-mobile"
},
"permissions": {
"admin": false,
"maintain": false,
"pull": false,
"push": false,
"triage": false
},
"private": false,
"pulls_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/pulls{/number}",
"pushed_at": "2021-07-26T09:56:42Z",
"releases_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/releases{/id}",
"size": 399,
"ssh_url": "git@github.com:4d-go-mobile/formatter-TextToImage.git",
"stargazers_count": 0,
"stargazers_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/stargazers",
"statuses_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/subscribers",
"subscription_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/subscription",
"svn_url": "https://github.com/4d-go-mobile/formatter-TextToImage",
"tags_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/tags",
"teams_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/teams",
"topics": [
"4d-for-ios",
"4d-for-ios-formatter"
],
"trees_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage/git/trees{/sha}",
"updated_at": "2021-07-26T09:56:45Z",
"url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToImage",
"visibility": "public",
"watchers": 0,
"watchers_count": 0
},
{
"allow_forking": true,
"archive_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/assignees{/user}",
"blobs_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/branches{/branch}",
"clone_url": "https://github.com/4d-go-mobile/formatter-TextToString.git",
"collaborators_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/comments{/number}",
"commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/commits{/sha}",
"compare_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/contents/{+path}",
"contributors_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/contributors",
"created_at": "2019-06-05T12:42:13Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/deployments",
"description": "4D for iOS Data Formatter",
"disabled": false,
"downloads_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/downloads",
"events_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/events",
"fork": false,
"forks": 1,
"forks_count": 1,
"forks_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/forks",
"full_name": "4d-go-mobile/formatter-TextToString",
"git_commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/git/tags{/sha}",
"git_url": "git://github.com/4d-go-mobile/formatter-TextToString.git",
"has_downloads": true,
"has_issues": true,
"has_pages": false,
"has_projects": true,
"has_wiki": true,
"homepage": "https://developer.4d.com/4d-for-ios/docs/en/custom-data-formatters.html",
"hooks_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/hooks",
"html_url": "https://github.com/4d-go-mobile/formatter-TextToString",
"id": 190392462,
"is_template": false,
"issue_comment_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/issues/events{/number}",
"issues_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/issues{/number}",
"keys_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/keys{/key_id}",
"labels_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/labels{/name}",
"language": null,
"languages_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/languages",
"license": {
"key": "other",
"name": "Other",
"node_id": "MDc6TGljZW5zZTA=",
"spdx_id": "NOASSERTION",
"url": null
},
"merges_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/merges",
"milestones_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/milestones{/number}",
"mirror_url": null,
"name": "formatter-TextToString",
"node_id": "MDEwOlJlcG9zaXRvcnkxOTAzOTI0NjI=",
"notifications_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/notifications{?since,all,participating}",
"open_issues": 0,
"open_issues_count": 0,
"owner": {
"avatar_url": "https://avatars.githubusercontent.com/u/79459282?v=4",
"events_url": "https://api.github.com/users/4d-go-mobile/events{/privacy}",
"followers_url": "https://api.github.com/users/4d-go-mobile/followers",
"following_url": "https://api.github.com/users/4d-go-mobile/following{/other_user}",
"gists_url": "https://api.github.com/users/4d-go-mobile/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/4d-go-mobile",
"id": 79459282,
"login": "4d-go-mobile",
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc5NDU5Mjgy",
"organizations_url": "https://api.github.com/users/4d-go-mobile/orgs",
"received_events_url": "https://api.github.com/users/4d-go-mobile/received_events",
"repos_url": "https://api.github.com/users/4d-go-mobile/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/4d-go-mobile/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/4d-go-mobile/subscriptions",
"type": "Organization",
"url": "https://api.github.com/users/4d-go-mobile"
},
"permissions": {
"admin": false,
"maintain": false,
"pull": false,
"push": false,
"triage": false
},
"private": false,
"pulls_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/pulls{/number}",
"pushed_at": "2021-07-26T09:44:19Z",
"releases_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/releases{/id}",
"size": 23,
"ssh_url": "git@github.com:4d-go-mobile/formatter-TextToString.git",
"stargazers_count": 0,
"stargazers_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/stargazers",
"statuses_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/subscribers",
"subscription_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/subscription",
"svn_url": "https://github.com/4d-go-mobile/formatter-TextToString",
"tags_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/tags",
"teams_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/teams",
"topics": [
"4d-for-ios",
"4d-for-ios-formatter"
],
"trees_url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString/git/trees{/sha}",
"updated_at": "2021-07-26T09:44:22Z",
"url": "https://api.github.com/repos/4d-go-mobile/formatter-TextToString",
"visibility": "public",
"watchers": 0,
"watchers_count": 0
},
{
"allow_forking": true,
"archive_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/assignees{/user}",
"blobs_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/branches{/branch}",
"clone_url": "https://github.com/4d-go-mobile/formatter-BoolToImage.git",
"collaborators_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/comments{/number}",
"commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/commits{/sha}",
"compare_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/contents/{+path}",
"contributors_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/contributors",
"created_at": "2019-06-05T12:46:18Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/deployments",
"description": "4D for iOS Data Formatter",
"disabled": false,
"downloads_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/downloads",
"events_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/events",
"fork": false,
"forks": 1,
"forks_count": 1,
"forks_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/forks",
"full_name": "4d-go-mobile/formatter-BoolToImage",
"git_commits_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/git/tags{/sha}",
"git_url": "git://github.com/4d-go-mobile/formatter-BoolToImage.git",
"has_downloads": true,
"has_issues": true,
"has_pages": false,
"has_projects": true,
"has_wiki": true,
"homepage": "https://developer.4d.com/4d-for-ios/docs/en/custom-data-formatters.html",
"hooks_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/hooks",
"html_url": "https://github.com/4d-go-mobile/formatter-BoolToImage",
"id": 190393100,
"is_template": false,
"issue_comment_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/issues/events{/number}",
"issues_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/issues{/number}",
"keys_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/keys{/key_id}",
"labels_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/labels{/name}",
"language": null,
"languages_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/languages",
"license": {
"key": "other",
"name": "Other",
"node_id": "MDc6TGljZW5zZTA=",
"spdx_id": "NOASSERTION",
"url": null
},
"merges_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/merges",
"milestones_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/milestones{/number}",
"mirror_url": null,
"name": "formatter-BoolToImage",
"node_id": "MDEwOlJlcG9zaXRvcnkxOTAzOTMxMDA=",
"notifications_url": "https://api.github.com/repos/4d-go-mobile/formatter-BoolToImage/notifications{?since,all,participating}",
"open_issues": 0,
"open_issues_count": 0,
"owner": {
"avatar_url": "https://avatars.githubusercontent.com/u/79459282?v=4",
"events_url": "https://api.github.com/users/4d-go-mobile/events{/privacy}",
"followers_url": "https://api.github.com/users/4d-go-mobile/followers",
"following_url": "https://api.github.com/users/4d-go-mobile/following{/other_user}",
"gists_url": "https://api.github.com/users/4d-go-mobile/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/4d-go-mobile",
"id": 79459282,
"login": "4d-go-mobile",
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc5NDU5Mjgy",
"organizations_url": "https://api.github.com/users/4d-go-mobile/orgs",
"received_events_url": "https://api.github.com/users/4d-go-mobile/received_events",
"repos_url": "https://api.github.com/users/4d-go-mobile/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/4d-go-mobile/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/4d-go-mobile/subscriptions",
"type": "Organization",
"url": "https://api.github.com/users/4d-go-mobile"
},
"permissions": {
"admin": false,
"maintain": false,