@laboratoria/sdk-js 5.3.1 → 6.0.0-beta.0

Sign up to get free protection for your applications and to get access to all the features.
package/schemas/core.json DELETED
@@ -1,1945 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "definitions": {
4
- "Country": {
5
- "type": "object",
6
- "properties": {
7
- "code": {
8
- "type": "string"
9
- },
10
- "name": {
11
- "type": "string"
12
- },
13
- "incomeFilter": {
14
- "type": [
15
- "integer",
16
- "null"
17
- ]
18
- },
19
- "canApply": {
20
- "type": "boolean",
21
- "default": false
22
- },
23
- "capital": {
24
- "type": "array",
25
- "items": {
26
- "type": "string"
27
- }
28
- },
29
- "timeZone": {
30
- "type": [
31
- "string",
32
- "null"
33
- ]
34
- },
35
- "flag": {
36
- "type": [
37
- "string",
38
- "null"
39
- ]
40
- },
41
- "currency": {
42
- "anyOf": [
43
- {
44
- "$ref": "#/definitions/Currency"
45
- },
46
- {
47
- "type": "null"
48
- }
49
- ]
50
- },
51
- "contracts": {
52
- "type": "array",
53
- "items": {
54
- "$ref": "#/definitions/Contract"
55
- }
56
- },
57
- "users": {
58
- "type": "array",
59
- "items": {
60
- "$ref": "#/definitions/User"
61
- }
62
- },
63
- "applications": {
64
- "type": "array",
65
- "items": {
66
- "$ref": "#/definitions/Application"
67
- }
68
- },
69
- "applicationNationalities": {
70
- "type": "array",
71
- "items": {
72
- "$ref": "#/definitions/Application"
73
- }
74
- },
75
- "educationLevels": {
76
- "type": "array",
77
- "items": {
78
- "$ref": "#/definitions/EducationLevel"
79
- }
80
- },
81
- "universities": {
82
- "type": "array",
83
- "items": {
84
- "$ref": "#/definitions/University"
85
- }
86
- },
87
- "companies": {
88
- "type": "array",
89
- "items": {
90
- "$ref": "#/definitions/Company"
91
- }
92
- },
93
- "jobs": {
94
- "type": "array",
95
- "items": {
96
- "$ref": "#/definitions/Job"
97
- }
98
- }
99
- }
100
- },
101
- "Currency": {
102
- "type": "object",
103
- "properties": {
104
- "code": {
105
- "type": "string"
106
- },
107
- "name": {
108
- "type": "string"
109
- },
110
- "symbol": {
111
- "type": "string"
112
- },
113
- "countries": {
114
- "type": "array",
115
- "items": {
116
- "$ref": "#/definitions/Country"
117
- }
118
- }
119
- }
120
- },
121
- "User": {
122
- "type": "object",
123
- "properties": {
124
- "uid": {
125
- "type": "string"
126
- },
127
- "createdAt": {
128
- "type": "string",
129
- "format": "date-time"
130
- },
131
- "updatedAt": {
132
- "type": "string",
133
- "format": "date-time"
134
- },
135
- "createdBy": {
136
- "type": [
137
- "string",
138
- "null"
139
- ]
140
- },
141
- "email": {
142
- "type": "string"
143
- },
144
- "firstName": {
145
- "type": "string"
146
- },
147
- "lastName": {
148
- "type": [
149
- "string",
150
- "null"
151
- ]
152
- },
153
- "role": {
154
- "type": [
155
- "string",
156
- "null"
157
- ],
158
- "enum": [
159
- "staff",
160
- "manager",
161
- "finance",
162
- "admin"
163
- ]
164
- },
165
- "disabled": {
166
- "type": "boolean",
167
- "default": false
168
- },
169
- "lang": {
170
- "type": [
171
- "string",
172
- "null"
173
- ],
174
- "enum": [
175
- "en",
176
- "es",
177
- "pt"
178
- ]
179
- },
180
- "referralSource": {
181
- "type": [
182
- "string",
183
- "null"
184
- ],
185
- "enum": [
186
- "word_of_mouth",
187
- "codigo_m",
188
- "social",
189
- "google",
190
- "print",
191
- "tv",
192
- "radio",
193
- "other"
194
- ]
195
- },
196
- "identifiesAsFemale": {
197
- "type": [
198
- "boolean",
199
- "null"
200
- ]
201
- },
202
- "dateOfBirth": {
203
- "type": [
204
- "string",
205
- "null"
206
- ],
207
- "format": "date-time"
208
- },
209
- "identificationNumber": {
210
- "type": [
211
- "string",
212
- "null"
213
- ]
214
- },
215
- "mobileNumber": {
216
- "type": [
217
- "string",
218
- "null"
219
- ]
220
- },
221
- "github": {
222
- "type": [
223
- "string",
224
- "null"
225
- ]
226
- },
227
- "linkedin": {
228
- "type": [
229
- "string",
230
- "null"
231
- ]
232
- },
233
- "bio": {
234
- "type": [
235
- "string",
236
- "null"
237
- ]
238
- },
239
- "country": {
240
- "anyOf": [
241
- {
242
- "$ref": "#/definitions/Country"
243
- },
244
- {
245
- "type": "null"
246
- }
247
- ]
248
- },
249
- "signupCohort": {
250
- "anyOf": [
251
- {
252
- "$ref": "#/definitions/Cohort"
253
- },
254
- {
255
- "type": "null"
256
- }
257
- ]
258
- },
259
- "applications": {
260
- "type": "array",
261
- "items": {
262
- "$ref": "#/definitions/Application"
263
- }
264
- },
265
- "contractsAsCheckPilot": {
266
- "type": "array",
267
- "items": {
268
- "$ref": "#/definitions/Contract"
269
- }
270
- },
271
- "contracts": {
272
- "type": "array",
273
- "items": {
274
- "$ref": "#/definitions/Contract"
275
- }
276
- },
277
- "dropouts": {
278
- "type": "array",
279
- "items": {
280
- "$ref": "#/definitions/Dropout"
281
- }
282
- },
283
- "gigs": {
284
- "type": "array",
285
- "items": {
286
- "$ref": "#/definitions/Gig"
287
- }
288
- },
289
- "messages": {
290
- "type": "array",
291
- "items": {
292
- "$ref": "#/definitions/Message"
293
- }
294
- },
295
- "students": {
296
- "type": "array",
297
- "items": {
298
- "$ref": "#/definitions/Student"
299
- }
300
- },
301
- "activityLog": {
302
- "type": "array",
303
- "items": {
304
- "$ref": "#/definitions/ActivityLogEntry"
305
- }
306
- },
307
- "authoredActivityLog": {
308
- "type": "array",
309
- "items": {
310
- "$ref": "#/definitions/ActivityLogEntry"
311
- }
312
- },
313
- "jobValidityReviews": {
314
- "type": "array",
315
- "items": {
316
- "$ref": "#/definitions/JobValidityReview"
317
- }
318
- },
319
- "jobApplications": {
320
- "type": "array",
321
- "items": {
322
- "$ref": "#/definitions/JobApplication"
323
- }
324
- }
325
- }
326
- },
327
- "Track": {
328
- "type": "object",
329
- "properties": {
330
- "id": {
331
- "type": "integer"
332
- },
333
- "createdAt": {
334
- "type": "string",
335
- "format": "date-time"
336
- },
337
- "updatedAt": {
338
- "type": "string",
339
- "format": "date-time"
340
- },
341
- "name": {
342
- "type": "string"
343
- },
344
- "programs": {
345
- "type": "array",
346
- "items": {
347
- "$ref": "#/definitions/Program"
348
- }
349
- }
350
- }
351
- },
352
- "Program": {
353
- "type": "object",
354
- "properties": {
355
- "id": {
356
- "type": "integer"
357
- },
358
- "createdAt": {
359
- "type": "string",
360
- "format": "date-time"
361
- },
362
- "updatedAt": {
363
- "type": "string",
364
- "format": "date-time"
365
- },
366
- "name": {
367
- "type": "string"
368
- },
369
- "description": {
370
- "type": [
371
- "string",
372
- "null"
373
- ]
374
- },
375
- "langs": {
376
- "type": "array",
377
- "enum": [
378
- "en",
379
- "es",
380
- "pt"
381
- ]
382
- },
383
- "hidden": {
384
- "type": "boolean",
385
- "default": false
386
- },
387
- "track": {
388
- "$ref": "#/definitions/Track"
389
- },
390
- "cohorts": {
391
- "type": "array",
392
- "items": {
393
- "$ref": "#/definitions/Cohort"
394
- }
395
- },
396
- "stages": {
397
- "type": "array",
398
- "items": {
399
- "$ref": "#/definitions/Stage"
400
- }
401
- }
402
- }
403
- },
404
- "Stage": {
405
- "type": "object",
406
- "properties": {
407
- "id": {
408
- "type": "integer"
409
- },
410
- "createdAt": {
411
- "type": "string",
412
- "format": "date-time"
413
- },
414
- "updatedAt": {
415
- "type": "string",
416
- "format": "date-time"
417
- },
418
- "name": {
419
- "type": "string"
420
- },
421
- "order": {
422
- "type": "integer"
423
- },
424
- "program": {
425
- "$ref": "#/definitions/Program"
426
- },
427
- "cohorts": {
428
- "type": "array",
429
- "items": {
430
- "$ref": "#/definitions/Cohort"
431
- }
432
- }
433
- }
434
- },
435
- "Cohort": {
436
- "type": "object",
437
- "properties": {
438
- "id": {
439
- "type": "integer"
440
- },
441
- "createdAt": {
442
- "type": "string",
443
- "format": "date-time"
444
- },
445
- "updatedAt": {
446
- "type": "string",
447
- "format": "date-time"
448
- },
449
- "createdBy": {
450
- "type": [
451
- "string",
452
- "null"
453
- ]
454
- },
455
- "name": {
456
- "type": "string"
457
- },
458
- "lang": {
459
- "type": [
460
- "string",
461
- "null"
462
- ],
463
- "enum": [
464
- "en",
465
- "es",
466
- "pt"
467
- ]
468
- },
469
- "start": {
470
- "type": "string",
471
- "format": "date-time"
472
- },
473
- "end": {
474
- "type": "string",
475
- "format": "date-time"
476
- },
477
- "timeZone": {
478
- "type": [
479
- "string",
480
- "null"
481
- ]
482
- },
483
- "startTime": {
484
- "type": [
485
- "string",
486
- "null"
487
- ]
488
- },
489
- "endTime": {
490
- "type": [
491
- "string",
492
- "null"
493
- ]
494
- },
495
- "legacySlug": {
496
- "type": "string"
497
- },
498
- "vacancies": {
499
- "type": [
500
- "integer",
501
- "null"
502
- ]
503
- },
504
- "admissionStart": {
505
- "type": [
506
- "string",
507
- "null"
508
- ],
509
- "format": "date-time"
510
- },
511
- "admissionEnd": {
512
- "type": [
513
- "string",
514
- "null"
515
- ],
516
- "format": "date-time"
517
- },
518
- "admissionCountries": {
519
- "type": "array",
520
- "items": {
521
- "type": "string"
522
- }
523
- },
524
- "placementStart": {
525
- "type": [
526
- "string",
527
- "null"
528
- ],
529
- "format": "date-time"
530
- },
531
- "placementDuration": {
532
- "type": [
533
- "integer",
534
- "null"
535
- ]
536
- },
537
- "program": {
538
- "$ref": "#/definitions/Program"
539
- },
540
- "stage": {
541
- "$ref": "#/definitions/Stage"
542
- },
543
- "applications": {
544
- "type": "array",
545
- "items": {
546
- "$ref": "#/definitions/Application"
547
- }
548
- },
549
- "links": {
550
- "type": "array",
551
- "items": {
552
- "$ref": "#/definitions/CohortLink"
553
- }
554
- },
555
- "dropouts": {
556
- "type": "array",
557
- "items": {
558
- "$ref": "#/definitions/Dropout"
559
- }
560
- },
561
- "gigs": {
562
- "type": "array",
563
- "items": {
564
- "$ref": "#/definitions/Gig"
565
- }
566
- },
567
- "students": {
568
- "type": "array",
569
- "items": {
570
- "$ref": "#/definitions/Student"
571
- }
572
- },
573
- "signupUsers": {
574
- "type": "array",
575
- "items": {
576
- "$ref": "#/definitions/User"
577
- }
578
- },
579
- "activityLog": {
580
- "type": "array",
581
- "items": {
582
- "$ref": "#/definitions/ActivityLogEntry"
583
- }
584
- },
585
- "jobApplications": {
586
- "type": "array",
587
- "items": {
588
- "$ref": "#/definitions/JobApplication"
589
- }
590
- }
591
- }
592
- },
593
- "Student": {
594
- "type": "object",
595
- "properties": {
596
- "id": {
597
- "type": "integer"
598
- },
599
- "createdAt": {
600
- "type": "string",
601
- "format": "date-time"
602
- },
603
- "updatedAt": {
604
- "type": "string",
605
- "format": "date-time"
606
- },
607
- "createdBy": {
608
- "type": [
609
- "string",
610
- "null"
611
- ]
612
- },
613
- "legacyStudentCode": {
614
- "type": [
615
- "string",
616
- "null"
617
- ]
618
- },
619
- "cohort": {
620
- "$ref": "#/definitions/Cohort"
621
- },
622
- "user": {
623
- "$ref": "#/definitions/User"
624
- }
625
- }
626
- },
627
- "CohortLink": {
628
- "type": "object",
629
- "properties": {
630
- "id": {
631
- "type": "integer"
632
- },
633
- "url": {
634
- "type": "string"
635
- },
636
- "visibility": {
637
- "type": "string",
638
- "enum": [
639
- "public",
640
- "members",
641
- "staff",
642
- "team",
643
- "admin"
644
- ]
645
- },
646
- "cohort": {
647
- "$ref": "#/definitions/Cohort"
648
- }
649
- }
650
- },
651
- "Dropout": {
652
- "type": "object",
653
- "properties": {
654
- "id": {
655
- "type": "integer"
656
- },
657
- "createdAt": {
658
- "type": "string",
659
- "format": "date-time"
660
- },
661
- "updatedAt": {
662
- "type": "string",
663
- "format": "date-time"
664
- },
665
- "createdBy": {
666
- "type": [
667
- "string",
668
- "null"
669
- ]
670
- },
671
- "date": {
672
- "type": "string",
673
- "format": "date-time"
674
- },
675
- "reasonDetail": {
676
- "type": [
677
- "string",
678
- "null"
679
- ]
680
- },
681
- "notes": {
682
- "type": [
683
- "string",
684
- "null"
685
- ]
686
- },
687
- "staffSad": {
688
- "type": "boolean"
689
- },
690
- "covidRelated": {
691
- "type": [
692
- "boolean",
693
- "null"
694
- ]
695
- },
696
- "reason": {
697
- "type": "string",
698
- "enum": [
699
- "dropout",
700
- "noShow",
701
- "invitedToLeave",
702
- "changeCohort"
703
- ]
704
- },
705
- "completedProjects": {
706
- "type": "integer"
707
- },
708
- "lastProject": {
709
- "type": [
710
- "string",
711
- "null"
712
- ]
713
- },
714
- "cohort": {
715
- "$ref": "#/definitions/Cohort"
716
- },
717
- "user": {
718
- "$ref": "#/definitions/User"
719
- }
720
- }
721
- },
722
- "IscedLevel": {
723
- "type": "object",
724
- "properties": {
725
- "id": {
726
- "type": "integer"
727
- },
728
- "label": {
729
- "type": "string"
730
- },
731
- "educationLevels": {
732
- "type": "array",
733
- "items": {
734
- "$ref": "#/definitions/EducationLevel"
735
- }
736
- }
737
- }
738
- },
739
- "EducationLevel": {
740
- "type": "object",
741
- "properties": {
742
- "id": {
743
- "type": "integer"
744
- },
745
- "createdAt": {
746
- "type": "string",
747
- "format": "date-time"
748
- },
749
- "updatedAt": {
750
- "type": "string",
751
- "format": "date-time"
752
- },
753
- "lang": {
754
- "type": "string",
755
- "enum": [
756
- "en",
757
- "es",
758
- "pt"
759
- ]
760
- },
761
- "label": {
762
- "type": "string"
763
- },
764
- "country": {
765
- "$ref": "#/definitions/Country"
766
- },
767
- "iscedLevel": {
768
- "$ref": "#/definitions/IscedLevel"
769
- },
770
- "applications": {
771
- "type": "array",
772
- "items": {
773
- "$ref": "#/definitions/Application"
774
- }
775
- }
776
- }
777
- },
778
- "University": {
779
- "type": "object",
780
- "properties": {
781
- "id": {
782
- "type": "integer"
783
- },
784
- "createdAt": {
785
- "type": "string",
786
- "format": "date-time"
787
- },
788
- "updatedAt": {
789
- "type": "string",
790
- "format": "date-time"
791
- },
792
- "lang": {
793
- "type": "string",
794
- "enum": [
795
- "en",
796
- "es",
797
- "pt"
798
- ]
799
- },
800
- "name": {
801
- "type": "string"
802
- },
803
- "filter": {
804
- "type": "boolean"
805
- },
806
- "country": {
807
- "$ref": "#/definitions/Country"
808
- },
809
- "applications": {
810
- "type": "array",
811
- "items": {
812
- "$ref": "#/definitions/Application"
813
- }
814
- }
815
- }
816
- },
817
- "Application": {
818
- "type": "object",
819
- "properties": {
820
- "id": {
821
- "type": "integer"
822
- },
823
- "createdAt": {
824
- "type": "string",
825
- "format": "date-time"
826
- },
827
- "updatedAt": {
828
- "type": "string",
829
- "format": "date-time"
830
- },
831
- "createdBy": {
832
- "type": [
833
- "string",
834
- "null"
835
- ]
836
- },
837
- "dateOfBirth": {
838
- "type": "string",
839
- "format": "date-time"
840
- },
841
- "isAllowedToWork": {
842
- "type": "boolean"
843
- },
844
- "hasValidIdDocument": {
845
- "type": "boolean"
846
- },
847
- "locality": {
848
- "type": [
849
- "number",
850
- "string",
851
- "boolean",
852
- "object",
853
- "array",
854
- "null"
855
- ]
856
- },
857
- "householdSize": {
858
- "type": "integer"
859
- },
860
- "children": {
861
- "type": "integer"
862
- },
863
- "householdIncome": {
864
- "type": "integer"
865
- },
866
- "racialIdentity": {
867
- "type": [
868
- "string",
869
- "null"
870
- ]
871
- },
872
- "schoolType": {
873
- "type": [
874
- "string",
875
- "null"
876
- ],
877
- "enum": [
878
- "private",
879
- "public",
880
- "other",
881
- "subsidized",
882
- "mixed"
883
- ]
884
- },
885
- "educationSubject": {
886
- "type": [
887
- "string",
888
- "null"
889
- ],
890
- "enum": [
891
- "design_and_media",
892
- "software_engineering",
893
- "engineering",
894
- "management_and_business",
895
- "languages",
896
- "science",
897
- "health",
898
- "social_sciences",
899
- "arts",
900
- "comms_and_advertising",
901
- "education",
902
- "cooking",
903
- "tourism",
904
- "economics_and_accounting",
905
- "law",
906
- "other"
907
- ]
908
- },
909
- "isStudying": {
910
- "type": "boolean"
911
- },
912
- "englishLevel": {
913
- "type": [
914
- "string",
915
- "null"
916
- ],
917
- "enum": [
918
- "NO",
919
- "A1",
920
- "A2",
921
- "B1",
922
- "B2",
923
- "C1",
924
- "C2"
925
- ]
926
- },
927
- "workStatus": {
928
- "type": "string",
929
- "enum": [
930
- "never",
931
- "not_now",
932
- "yes"
933
- ]
934
- },
935
- "isLookingForWork": {
936
- "type": [
937
- "boolean",
938
- "null"
939
- ]
940
- },
941
- "monthsLookingForWork": {
942
- "type": [
943
- "integer",
944
- "null"
945
- ]
946
- },
947
- "monthsUnemployed": {
948
- "type": [
949
- "integer",
950
- "null"
951
- ]
952
- },
953
- "workRole": {
954
- "type": [
955
- "string",
956
- "null"
957
- ],
958
- "enum": [
959
- "waitress",
960
- "promoter",
961
- "manager",
962
- "cashier",
963
- "intern",
964
- "operative",
965
- "call_center",
966
- "receptionist",
967
- "sales_agent",
968
- "assistant",
969
- "professional",
970
- "technical",
971
- "consultant",
972
- "other"
973
- ]
974
- },
975
- "freelance": {
976
- "type": [
977
- "boolean",
978
- "null"
979
- ]
980
- },
981
- "workFormal": {
982
- "type": [
983
- "boolean",
984
- "null"
985
- ]
986
- },
987
- "workIncome": {
988
- "type": [
989
- "integer",
990
- "null"
991
- ]
992
- },
993
- "failedFilters": {
994
- "type": "array",
995
- "items": {
996
- "type": "string"
997
- }
998
- },
999
- "bypassFilters": {
1000
- "type": "boolean",
1001
- "default": false
1002
- },
1003
- "isReady": {
1004
- "type": "boolean",
1005
- "default": false
1006
- },
1007
- "isReturningApplicant": {
1008
- "type": [
1009
- "boolean",
1010
- "null"
1011
- ]
1012
- },
1013
- "legacyAdmissionCohortSlug": {
1014
- "type": [
1015
- "string",
1016
- "null"
1017
- ]
1018
- },
1019
- "cohort": {
1020
- "$ref": "#/definitions/Cohort"
1021
- },
1022
- "user": {
1023
- "$ref": "#/definitions/User"
1024
- },
1025
- "country": {
1026
- "$ref": "#/definitions/Country"
1027
- },
1028
- "nationality": {
1029
- "$ref": "#/definitions/Country"
1030
- },
1031
- "educationLevel": {
1032
- "$ref": "#/definitions/EducationLevel"
1033
- },
1034
- "university": {
1035
- "anyOf": [
1036
- {
1037
- "$ref": "#/definitions/University"
1038
- },
1039
- {
1040
- "type": "null"
1041
- }
1042
- ]
1043
- },
1044
- "challengeAssignments": {
1045
- "type": "array",
1046
- "items": {
1047
- "$ref": "#/definitions/ApplicationChallengeAssignment"
1048
- }
1049
- }
1050
- }
1051
- },
1052
- "ApplicationChallenge": {
1053
- "type": "object",
1054
- "properties": {
1055
- "id": {
1056
- "type": "integer"
1057
- },
1058
- "createdAt": {
1059
- "type": "string",
1060
- "format": "date-time"
1061
- },
1062
- "updatedAt": {
1063
- "type": "string",
1064
- "format": "date-time"
1065
- },
1066
- "createdBy": {
1067
- "type": [
1068
- "string",
1069
- "null"
1070
- ]
1071
- },
1072
- "slug": {
1073
- "type": "string"
1074
- },
1075
- "version": {
1076
- "type": "string"
1077
- },
1078
- "trackId": {
1079
- "type": "integer"
1080
- },
1081
- "langs": {
1082
- "type": "array",
1083
- "enum": [
1084
- "en",
1085
- "es",
1086
- "pt"
1087
- ]
1088
- },
1089
- "json": {
1090
- "type": "string"
1091
- },
1092
- "archived": {
1093
- "type": "boolean",
1094
- "default": false
1095
- },
1096
- "assignments": {
1097
- "type": "array",
1098
- "items": {
1099
- "$ref": "#/definitions/ApplicationChallengeAssignment"
1100
- }
1101
- }
1102
- }
1103
- },
1104
- "ApplicationChallengeAssignment": {
1105
- "type": "object",
1106
- "properties": {
1107
- "id": {
1108
- "type": "integer"
1109
- },
1110
- "createdAt": {
1111
- "type": "string",
1112
- "format": "date-time"
1113
- },
1114
- "updatedAt": {
1115
- "type": "string",
1116
- "format": "date-time"
1117
- },
1118
- "application": {
1119
- "$ref": "#/definitions/Application"
1120
- },
1121
- "challenge": {
1122
- "$ref": "#/definitions/ApplicationChallenge"
1123
- }
1124
- }
1125
- },
1126
- "ActivityLogEntry": {
1127
- "type": "object",
1128
- "properties": {
1129
- "id": {
1130
- "type": "integer"
1131
- },
1132
- "createdAt": {
1133
- "type": "string",
1134
- "format": "date-time"
1135
- },
1136
- "updatedAt": {
1137
- "type": "string",
1138
- "format": "date-time"
1139
- },
1140
- "type": {
1141
- "type": "string",
1142
- "enum": [
1143
- "challenge",
1144
- "application_filter",
1145
- "application_filter_bypass",
1146
- "application_cohort_change"
1147
- ]
1148
- },
1149
- "data": {
1150
- "type": [
1151
- "number",
1152
- "string",
1153
- "boolean",
1154
- "object",
1155
- "array",
1156
- "null"
1157
- ]
1158
- },
1159
- "path": {
1160
- "type": "string"
1161
- },
1162
- "author": {
1163
- "$ref": "#/definitions/User"
1164
- },
1165
- "user": {
1166
- "$ref": "#/definitions/User"
1167
- },
1168
- "cohort": {
1169
- "$ref": "#/definitions/Cohort"
1170
- }
1171
- }
1172
- },
1173
- "Contract": {
1174
- "type": "object",
1175
- "properties": {
1176
- "id": {
1177
- "type": "integer"
1178
- },
1179
- "createdAt": {
1180
- "type": "string",
1181
- "format": "date-time"
1182
- },
1183
- "updatedAt": {
1184
- "type": "string",
1185
- "format": "date-time"
1186
- },
1187
- "createdBy": {
1188
- "type": "string"
1189
- },
1190
- "isEmployment": {
1191
- "type": "boolean"
1192
- },
1193
- "feeAmount": {
1194
- "type": "integer"
1195
- },
1196
- "hoursPerWeek": {
1197
- "type": "integer"
1198
- },
1199
- "start": {
1200
- "type": "string",
1201
- "format": "date-time"
1202
- },
1203
- "end": {
1204
- "type": [
1205
- "string",
1206
- "null"
1207
- ],
1208
- "format": "date-time"
1209
- },
1210
- "isTrial": {
1211
- "type": "boolean",
1212
- "default": false
1213
- },
1214
- "source": {
1215
- "type": [
1216
- "string",
1217
- "null"
1218
- ],
1219
- "enum": [
1220
- "graduate",
1221
- "referral",
1222
- "jazzhr",
1223
- "web",
1224
- "linkedin",
1225
- "other"
1226
- ]
1227
- },
1228
- "checkPilot": {
1229
- "anyOf": [
1230
- {
1231
- "$ref": "#/definitions/User"
1232
- },
1233
- {
1234
- "type": "null"
1235
- }
1236
- ]
1237
- },
1238
- "country": {
1239
- "$ref": "#/definitions/Country"
1240
- },
1241
- "user": {
1242
- "$ref": "#/definitions/User"
1243
- },
1244
- "gigs": {
1245
- "type": "array",
1246
- "items": {
1247
- "$ref": "#/definitions/Gig"
1248
- }
1249
- }
1250
- }
1251
- },
1252
- "Gig": {
1253
- "type": "object",
1254
- "properties": {
1255
- "id": {
1256
- "type": "integer"
1257
- },
1258
- "createdAt": {
1259
- "type": "string",
1260
- "format": "date-time"
1261
- },
1262
- "updatedAt": {
1263
- "type": "string",
1264
- "format": "date-time"
1265
- },
1266
- "createdBy": {
1267
- "type": "string"
1268
- },
1269
- "role": {
1270
- "type": "string",
1271
- "enum": [
1272
- "bm",
1273
- "pdc",
1274
- "js",
1275
- "ux"
1276
- ]
1277
- },
1278
- "hoursPerWeek": {
1279
- "type": "integer"
1280
- },
1281
- "start": {
1282
- "type": "string",
1283
- "format": "date-time"
1284
- },
1285
- "end": {
1286
- "type": [
1287
- "string",
1288
- "null"
1289
- ],
1290
- "format": "date-time"
1291
- },
1292
- "cohort": {
1293
- "$ref": "#/definitions/Cohort"
1294
- },
1295
- "contract": {
1296
- "$ref": "#/definitions/Contract"
1297
- },
1298
- "user": {
1299
- "$ref": "#/definitions/User"
1300
- }
1301
- }
1302
- },
1303
- "Message": {
1304
- "type": "object",
1305
- "properties": {
1306
- "id": {
1307
- "type": "integer"
1308
- },
1309
- "createdAt": {
1310
- "type": "string",
1311
- "format": "date-time"
1312
- },
1313
- "updatedAt": {
1314
- "type": "string",
1315
- "format": "date-time"
1316
- },
1317
- "createdBy": {
1318
- "type": [
1319
- "string",
1320
- "null"
1321
- ]
1322
- },
1323
- "key": {
1324
- "type": "string"
1325
- },
1326
- "from": {
1327
- "type": "string"
1328
- },
1329
- "to": {
1330
- "type": "string"
1331
- },
1332
- "transport": {
1333
- "type": "string",
1334
- "enum": [
1335
- "mandrill",
1336
- "slack"
1337
- ]
1338
- },
1339
- "status": {
1340
- "type": "string",
1341
- "default": "PENDING",
1342
- "enum": [
1343
- "PENDING",
1344
- "QUEUED",
1345
- "ERROR",
1346
- "SENT"
1347
- ]
1348
- },
1349
- "data": {
1350
- "type": [
1351
- "number",
1352
- "string",
1353
- "boolean",
1354
- "object",
1355
- "array",
1356
- "null"
1357
- ]
1358
- },
1359
- "taskInfo": {
1360
- "type": [
1361
- "number",
1362
- "string",
1363
- "boolean",
1364
- "object",
1365
- "array",
1366
- "null"
1367
- ]
1368
- },
1369
- "user": {
1370
- "anyOf": [
1371
- {
1372
- "$ref": "#/definitions/User"
1373
- },
1374
- {
1375
- "type": "null"
1376
- }
1377
- ]
1378
- },
1379
- "logs": {
1380
- "type": "array",
1381
- "items": {
1382
- "$ref": "#/definitions/MessageLog"
1383
- }
1384
- }
1385
- }
1386
- },
1387
- "MessageLog": {
1388
- "type": "object",
1389
- "properties": {
1390
- "id": {
1391
- "type": "integer"
1392
- },
1393
- "createdAt": {
1394
- "type": "string",
1395
- "format": "date-time"
1396
- },
1397
- "statusText": {
1398
- "type": [
1399
- "string",
1400
- "null"
1401
- ]
1402
- },
1403
- "message": {
1404
- "$ref": "#/definitions/Message"
1405
- }
1406
- }
1407
- },
1408
- "Industry": {
1409
- "type": "object",
1410
- "properties": {
1411
- "id": {
1412
- "type": "integer"
1413
- },
1414
- "createdAt": {
1415
- "type": "string",
1416
- "format": "date-time"
1417
- },
1418
- "updatedAt": {
1419
- "type": "string",
1420
- "format": "date-time"
1421
- },
1422
- "createdBy": {
1423
- "type": [
1424
- "string",
1425
- "null"
1426
- ]
1427
- },
1428
- "name": {
1429
- "type": "string"
1430
- },
1431
- "companies": {
1432
- "type": "array",
1433
- "items": {
1434
- "$ref": "#/definitions/Company"
1435
- }
1436
- }
1437
- }
1438
- },
1439
- "Company": {
1440
- "type": "object",
1441
- "properties": {
1442
- "id": {
1443
- "type": "integer"
1444
- },
1445
- "createdAt": {
1446
- "type": "string",
1447
- "format": "date-time"
1448
- },
1449
- "updatedAt": {
1450
- "type": "string",
1451
- "format": "date-time"
1452
- },
1453
- "createdBy": {
1454
- "type": [
1455
- "string",
1456
- "null"
1457
- ]
1458
- },
1459
- "source": {
1460
- "type": "string"
1461
- },
1462
- "sourceId": {
1463
- "type": "string"
1464
- },
1465
- "name": {
1466
- "type": "string"
1467
- },
1468
- "size": {
1469
- "type": [
1470
- "string",
1471
- "null"
1472
- ],
1473
- "enum": [
1474
- "A_2_10",
1475
- "B_11_50",
1476
- "C_51_200",
1477
- "D_201_500",
1478
- "E_501_1000",
1479
- "F_1001_5000",
1480
- "G_5001_10000",
1481
- "H_10001_plus"
1482
- ]
1483
- },
1484
- "data": {
1485
- "type": [
1486
- "number",
1487
- "string",
1488
- "boolean",
1489
- "object",
1490
- "array",
1491
- "null"
1492
- ]
1493
- },
1494
- "web": {
1495
- "type": [
1496
- "string",
1497
- "null"
1498
- ]
1499
- },
1500
- "twitter": {
1501
- "type": [
1502
- "string",
1503
- "null"
1504
- ]
1505
- },
1506
- "github": {
1507
- "type": [
1508
- "string",
1509
- "null"
1510
- ]
1511
- },
1512
- "facebook": {
1513
- "type": [
1514
- "string",
1515
- "null"
1516
- ]
1517
- },
1518
- "country": {
1519
- "anyOf": [
1520
- {
1521
- "$ref": "#/definitions/Country"
1522
- },
1523
- {
1524
- "type": "null"
1525
- }
1526
- ]
1527
- },
1528
- "industry": {
1529
- "anyOf": [
1530
- {
1531
- "$ref": "#/definitions/Industry"
1532
- },
1533
- {
1534
- "type": "null"
1535
- }
1536
- ]
1537
- },
1538
- "jobs": {
1539
- "type": "array",
1540
- "items": {
1541
- "$ref": "#/definitions/Job"
1542
- }
1543
- },
1544
- "categories": {
1545
- "type": "array",
1546
- "enum": [
1547
- "Tech_Consultancy",
1548
- "Digital_Transformation",
1549
- "Agency",
1550
- "Startups",
1551
- "High_tech",
1552
- "Traditional_Consulting"
1553
- ]
1554
- }
1555
- }
1556
- },
1557
- "Job": {
1558
- "type": "object",
1559
- "properties": {
1560
- "id": {
1561
- "type": "integer"
1562
- },
1563
- "createdAt": {
1564
- "type": "string",
1565
- "format": "date-time"
1566
- },
1567
- "updatedAt": {
1568
- "type": "string",
1569
- "format": "date-time"
1570
- },
1571
- "createdBy": {
1572
- "type": [
1573
- "string",
1574
- "null"
1575
- ]
1576
- },
1577
- "source": {
1578
- "type": "string"
1579
- },
1580
- "sourceId": {
1581
- "type": "string"
1582
- },
1583
- "title": {
1584
- "type": "string"
1585
- },
1586
- "publishedAt": {
1587
- "type": "string",
1588
- "format": "date-time"
1589
- },
1590
- "modality": {
1591
- "type": "string"
1592
- },
1593
- "publicUrl": {
1594
- "type": [
1595
- "string",
1596
- "null"
1597
- ]
1598
- },
1599
- "location": {
1600
- "type": [
1601
- "string",
1602
- "null"
1603
- ]
1604
- },
1605
- "data": {
1606
- "type": [
1607
- "number",
1608
- "string",
1609
- "boolean",
1610
- "object",
1611
- "array",
1612
- "null"
1613
- ]
1614
- },
1615
- "description": {
1616
- "type": [
1617
- "string",
1618
- "null"
1619
- ]
1620
- },
1621
- "descriptionHTML": {
1622
- "type": [
1623
- "string",
1624
- "null"
1625
- ]
1626
- },
1627
- "functions": {
1628
- "type": [
1629
- "string",
1630
- "null"
1631
- ]
1632
- },
1633
- "functionsHTML": {
1634
- "type": [
1635
- "string",
1636
- "null"
1637
- ]
1638
- },
1639
- "seniority": {
1640
- "type": [
1641
- "string",
1642
- "null"
1643
- ]
1644
- },
1645
- "remote": {
1646
- "type": [
1647
- "boolean",
1648
- "null"
1649
- ]
1650
- },
1651
- "remoteOption": {
1652
- "type": [
1653
- "string",
1654
- "null"
1655
- ],
1656
- "enum": [
1657
- "remote_for_now",
1658
- "locally_remote",
1659
- "fully_remote",
1660
- "no_remote",
1661
- "mixed"
1662
- ]
1663
- },
1664
- "lang": {
1665
- "type": [
1666
- "string",
1667
- "null"
1668
- ],
1669
- "enum": [
1670
- "en",
1671
- "es",
1672
- "pt"
1673
- ]
1674
- },
1675
- "maxSalary": {
1676
- "type": [
1677
- "integer",
1678
- "null"
1679
- ]
1680
- },
1681
- "minSalary": {
1682
- "type": [
1683
- "integer",
1684
- "null"
1685
- ]
1686
- },
1687
- "tags": {
1688
- "type": "array",
1689
- "items": {
1690
- "type": "string"
1691
- }
1692
- },
1693
- "company": {
1694
- "$ref": "#/definitions/Company"
1695
- },
1696
- "country": {
1697
- "anyOf": [
1698
- {
1699
- "$ref": "#/definitions/Country"
1700
- },
1701
- {
1702
- "type": "null"
1703
- }
1704
- ]
1705
- },
1706
- "validityReviews": {
1707
- "type": "array",
1708
- "items": {
1709
- "$ref": "#/definitions/JobValidityReview"
1710
- }
1711
- },
1712
- "applications": {
1713
- "type": "array",
1714
- "items": {
1715
- "$ref": "#/definitions/JobApplication"
1716
- }
1717
- }
1718
- }
1719
- },
1720
- "JobValidityReview": {
1721
- "type": "object",
1722
- "properties": {
1723
- "id": {
1724
- "type": "integer"
1725
- },
1726
- "createdAt": {
1727
- "type": "string",
1728
- "format": "date-time"
1729
- },
1730
- "updatedAt": {
1731
- "type": "string",
1732
- "format": "date-time"
1733
- },
1734
- "isValid": {
1735
- "type": "boolean"
1736
- },
1737
- "profileType": {
1738
- "type": [
1739
- "string",
1740
- "null"
1741
- ],
1742
- "enum": [
1743
- "design",
1744
- "front_end",
1745
- "angular",
1746
- "react",
1747
- "vue",
1748
- "back_end",
1749
- "full_stack",
1750
- "ux",
1751
- "other"
1752
- ]
1753
- },
1754
- "invalidReason": {
1755
- "type": [
1756
- "string",
1757
- "null"
1758
- ],
1759
- "enum": [
1760
- "unrelated",
1761
- "experience",
1762
- "qualifications",
1763
- "other"
1764
- ]
1765
- },
1766
- "comment": {
1767
- "type": [
1768
- "string",
1769
- "null"
1770
- ]
1771
- },
1772
- "author": {
1773
- "$ref": "#/definitions/User"
1774
- },
1775
- "job": {
1776
- "$ref": "#/definitions/Job"
1777
- }
1778
- }
1779
- },
1780
- "JobApplication": {
1781
- "type": "object",
1782
- "properties": {
1783
- "id": {
1784
- "type": "integer"
1785
- },
1786
- "createdAt": {
1787
- "type": "string",
1788
- "format": "date-time"
1789
- },
1790
- "updatedAt": {
1791
- "type": "string",
1792
- "format": "date-time"
1793
- },
1794
- "createdBy": {
1795
- "type": [
1796
- "string",
1797
- "null"
1798
- ]
1799
- },
1800
- "status": {
1801
- "type": "string",
1802
- "default": "pending",
1803
- "enum": [
1804
- "pending",
1805
- "applied",
1806
- "interview",
1807
- "challenge",
1808
- "followup",
1809
- "hired",
1810
- "not_hired"
1811
- ]
1812
- },
1813
- "hireDate": {
1814
- "type": [
1815
- "string",
1816
- "null"
1817
- ],
1818
- "format": "date-time"
1819
- },
1820
- "jobStartDate": {
1821
- "type": [
1822
- "string",
1823
- "null"
1824
- ],
1825
- "format": "date-time"
1826
- },
1827
- "netSalary": {
1828
- "type": [
1829
- "integer",
1830
- "null"
1831
- ]
1832
- },
1833
- "grossSalary": {
1834
- "type": [
1835
- "integer",
1836
- "null"
1837
- ]
1838
- },
1839
- "currency": {
1840
- "type": [
1841
- "string",
1842
- "null"
1843
- ]
1844
- },
1845
- "job": {
1846
- "$ref": "#/definitions/Job"
1847
- },
1848
- "user": {
1849
- "$ref": "#/definitions/User"
1850
- },
1851
- "cohort": {
1852
- "anyOf": [
1853
- {
1854
- "$ref": "#/definitions/Cohort"
1855
- },
1856
- {
1857
- "type": "null"
1858
- }
1859
- ]
1860
- }
1861
- }
1862
- }
1863
- },
1864
- "type": "object",
1865
- "properties": {
1866
- "country": {
1867
- "$ref": "#/definitions/Country"
1868
- },
1869
- "currency": {
1870
- "$ref": "#/definitions/Currency"
1871
- },
1872
- "user": {
1873
- "$ref": "#/definitions/User"
1874
- },
1875
- "track": {
1876
- "$ref": "#/definitions/Track"
1877
- },
1878
- "program": {
1879
- "$ref": "#/definitions/Program"
1880
- },
1881
- "stage": {
1882
- "$ref": "#/definitions/Stage"
1883
- },
1884
- "cohort": {
1885
- "$ref": "#/definitions/Cohort"
1886
- },
1887
- "student": {
1888
- "$ref": "#/definitions/Student"
1889
- },
1890
- "cohortLink": {
1891
- "$ref": "#/definitions/CohortLink"
1892
- },
1893
- "dropout": {
1894
- "$ref": "#/definitions/Dropout"
1895
- },
1896
- "iscedLevel": {
1897
- "$ref": "#/definitions/IscedLevel"
1898
- },
1899
- "educationLevel": {
1900
- "$ref": "#/definitions/EducationLevel"
1901
- },
1902
- "university": {
1903
- "$ref": "#/definitions/University"
1904
- },
1905
- "application": {
1906
- "$ref": "#/definitions/Application"
1907
- },
1908
- "applicationChallenge": {
1909
- "$ref": "#/definitions/ApplicationChallenge"
1910
- },
1911
- "applicationChallengeAssignment": {
1912
- "$ref": "#/definitions/ApplicationChallengeAssignment"
1913
- },
1914
- "activityLogEntry": {
1915
- "$ref": "#/definitions/ActivityLogEntry"
1916
- },
1917
- "contract": {
1918
- "$ref": "#/definitions/Contract"
1919
- },
1920
- "gig": {
1921
- "$ref": "#/definitions/Gig"
1922
- },
1923
- "message": {
1924
- "$ref": "#/definitions/Message"
1925
- },
1926
- "messageLog": {
1927
- "$ref": "#/definitions/MessageLog"
1928
- },
1929
- "industry": {
1930
- "$ref": "#/definitions/Industry"
1931
- },
1932
- "company": {
1933
- "$ref": "#/definitions/Company"
1934
- },
1935
- "job": {
1936
- "$ref": "#/definitions/Job"
1937
- },
1938
- "jobValidityReview": {
1939
- "$ref": "#/definitions/JobValidityReview"
1940
- },
1941
- "jobApplication": {
1942
- "$ref": "#/definitions/JobApplication"
1943
- }
1944
- }
1945
- }