-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.yml
1192 lines (1165 loc) · 36.4 KB
/
openapi.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.3
info:
title: CV API
description: CV API
version: 1.0.0
servers:
- url: 'http://localhost:{port}'
description: "ローカル環境"
variables:
port:
description: "ポート番号"
enum: ["8080","3000"]
default: "8080"
tags:
- name: "skills"
description: "スキルに対するCRUD"
- name: "users"
description: "ユーザーに対するCRUD"
security: []
paths:
"/skilltags":
post:
summary: "スキルタグ登録"
description: "スキルタグを登録する。"
tags: ["skills"]
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/SkillTag"
responses:
"201":
description: "Created: 作成したスキルタグを返却する。"
content:
application/json:
schema:
$ref: "#/components/schemas/SkillTag"
"400":
$ref: "#/components/responses/400-BadRequest"
get:
summary: "全スキルタグ取得"
description: "全スキルタグを取得する。"
tags: ["skills"]
responses:
"200":
description: "OK: 全スキルタグを返却する。"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/SkillTag"
"/skilltags/{bySkillTagId}":
parameters:
- $ref: "#/components/parameters/skillTagId"
get:
summary: "指定スキルタグ取得"
description: "指定スキルタグを取得する。"
tags: ["skills"]
responses:
"200":
description: "OK: 指定スキルタグを返却する。"
content:
application/json:
schema:
$ref: "#/components/schemas/SkillTag"
"404":
$ref: "#/components/responses/404-NotFound"
"/skills":
parameters:
- $ref: "#/components/parameters/skillTagIdQuery"
post:
summary: "スキル登録"
description: "スキルを登録する。"
tags: ["skills"]
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/Skill"
responses:
"201":
description: "Created: 作成したスキルを返却する。"
content:
application/json:
schema:
$ref: "#/components/schemas/Skill"
"400":
$ref: "#/components/responses/400-BadRequest"
get:
summary: "スキル群取得"
description: "全スキルを取得する。パラメータ(tag)が指定された場合は該当するタグを持つスキルを取得する。"
tags: ["skills"]
responses:
"200":
description: "OK: スキル群を返却する。"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Skill"
"/skillrecords":
post:
summary: "スキル一括登録"
description: "スキルを一括登録する。"
tags: ["skills"]
requestBody:
required: true
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Skill"
responses:
"201":
description: "Created: 作成した全スキルを返却する。"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Skill"
"400":
$ref: "#/components/responses/400-BadRequest"
"/skills/{bySkillId}":
parameters:
- $ref: "#/components/parameters/skillId"
get:
summary: "指定スキル取得"
description: "指定スキルを取得する。"
tags: ["skills"]
responses:
"200":
description: "OK: 指定スキルを返却する。"
content:
application/json:
schema:
$ref: "#/components/schemas/Skill"
"404":
$ref: "#/components/responses/404-NotFound"
"/users":
post:
summary: "ユーザーアカウント登録"
description: "ユーザーアカウントを登録する。"
tags: ["users"]
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/UserAttribute"
responses:
"201":
description: "Created: 指定ユーザーの属性を返却する。"
content:
application/json:
schema:
$ref: "#/components/schemas/UserAttribute"
"400":
$ref: "#/components/responses/400-BadRequest"
get:
summary: "ユーザー一覧取得"
description: "ユーザー一覧を取得する。"
tags: ["users"]
responses:
"200":
description: "OK: ユーザーの一覧を返却する。"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/UserAttribute"
"/users/{byUserId}":
parameters:
- $ref: "#/components/parameters/userId"
delete:
summary: "指定ユーザーアカウント削除"
description: "指定ユーザーアカウントを削除する。"
tags: ["users"]
responses:
"204":
description: "No Content: 指定ユーザーアカウントの削除に成功。"
"404":
$ref: "#/components/responses/404-NotFound"
"/users/{byUserId}/attribute":
parameters:
- $ref: "#/components/parameters/userId"
put:
summary: "属性更新"
description: "指定ユーザーの属性を更新する。"
tags: ["users"]
requestBody:
description: "属性"
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/UserAttribute"
responses:
"200":
description: "OK: 指定ユーザーの属性を返却する。"
content:
application/json:
schema:
$ref: "#/components/schemas/UserAttribute"
"400":
$ref: "#/components/responses/400-BadRequest"
"404":
$ref: "#/components/responses/404-NotFound"
get:
summary: "属性取得"
description: "指定ユーザーの属性を取得する。"
tags: ["users"]
responses:
"200":
description: "OK: 指定ユーザーの属性を返却する。"
content:
application/json:
schema:
$ref: "#/components/schemas/UserAttribute"
"404":
$ref: "#/components/responses/404-NotFound"
"/users/{byUserId}/activities":
parameters:
- $ref: "#/components/parameters/userId"
put:
summary: "アクティビティ群最新化"
description: "指定ユーザーのアクティビティ群を最新化(総洗い替え)する。"
tags: ["users"]
requestBody:
description: "アクティビティ群"
required: true
content:
application/json:
schema:
type: array
description: "1ユーザーのアクティビティ群"
items:
$ref: "#/components/schemas/UserActivity"
responses:
"200":
description: "OK: 指定ユーザーのアクティビティ群を返却する。"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/UserActivity"
"400":
$ref: "#/components/responses/400-BadRequest"
"404":
$ref: "#/components/responses/404-NotFound"
get:
summary: "アクティビティ群取得"
description: "指定ユーザーのアクティビティ群を取得する。"
tags: ["users"]
responses:
"200":
description: "OK: 指定ユーザーのアクティビティ群を返却する。"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/UserActivity"
"404":
$ref: "#/components/responses/404-NotFound"
"/users/{byUserId}/qualifications":
parameters:
- $ref: "#/components/parameters/userId"
put:
summary: "資格情報群最新化"
description: "指定ユーザーの資格情報群を最新化(総洗い替え)する。"
tags: ["users"]
requestBody:
description: "資格情報群"
required: true
content:
application/json:
schema:
type: array
description: "1ユーザーの資格情報群"
items:
$ref: "#/components/schemas/UserQualification"
responses:
"200":
description: "OK: 指定ユーザーの資格情報群を返却する。"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/UserQualification"
"400":
$ref: "#/components/responses/400-BadRequest"
"404":
$ref: "#/components/responses/404-NotFound"
get:
summary: "資格情報群取得"
description: "指定ユーザーの資格情報群を取得する。"
tags: ["users"]
responses:
"200":
description: "OK: 指定ユーザーの資格情報群を返却する。"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/UserQualification"
"404":
$ref: "#/components/responses/404-NotFound"
"/users/{byUserId}/appeals":
parameters:
- $ref: "#/components/parameters/userId"
put:
summary: "アピール事項群最新化"
description: "指定ユーザーのアピール事項群を最新化(総洗い替え)する。"
tags: ["users"]
requestBody:
description: "アピール事項群"
required: true
content:
application/json:
schema:
type: array
description: "1ユーザーのアピール事項群"
items:
$ref: "#/components/schemas/UserAppeal"
responses:
"200":
description: "OK: 指定ユーザーのアピール事項群を返却する。"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/UserAppeal"
"400":
$ref: "#/components/responses/400-BadRequest"
"404":
$ref: "#/components/responses/404-NotFound"
get:
summary: "アピール事項群取得"
description: "指定ユーザーのアピール事項群を取得する。"
tags: ["users"]
responses:
"200":
description: "OK: 指定ユーザーのアピール事項群を返却する。"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/UserAppeal"
"404":
$ref: "#/components/responses/404-NotFound"
"/users/{byUserId}/solutions":
parameters:
- $ref: "#/components/parameters/userId"
put:
summary: "課題解決事例群最新化"
description: "指定ユーザーの課題解決事例群を最新化(総洗い替え)する。"
tags: ["users"]
requestBody:
description: "課題解決事例群"
required: true
content:
application/json:
schema:
type: array
description: "1ユーザーの課題解決事例群"
items:
$ref: "#/components/schemas/UserSolution"
responses:
"200":
description: "OK: 指定ユーザーの課題解決事例群を返却する。"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/UserSolution"
"400":
$ref: "#/components/responses/400-BadRequest"
"404":
$ref: "#/components/responses/404-NotFound"
get:
summary: "課題解決事例群取得"
description: "指定ユーザーの課題解決事例群を取得する。"
tags: ["users"]
responses:
"200":
description: "OK: 指定ユーザーの課題解決事例群を返却する。"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/UserSolution"
"404":
$ref: "#/components/responses/404-NotFound"
"/users/{byUserId}/careergroups":
parameters:
- $ref: "#/components/parameters/userId"
post:
summary: "キャリアグループ新規登録"
description: "キャリアグループを新規登録する。"
tags: ["users"]
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/UserCareerGroup"
responses:
"201":
description: "Created: 指定ユーザーのキャリアグループを返却する。"
content:
application/json:
schema:
$ref: "#/components/schemas/UserCareerGroup"
"400":
$ref: "#/components/responses/400-BadRequest"
"404":
$ref: "#/components/responses/404-NotFound"
get:
summary: "キャリアグループ群取得"
description: "指定ユーザーのキャリアグループ群を取得する。"
tags: ["users"]
responses:
"200":
description: "OK: 指定ユーザーのキャリアグループ群を返却する。"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/UserCareerGroup"
"404":
$ref: "#/components/responses/404-NotFound"
"/users/{byUserId}/careergroups/{byCareerGroupId}":
parameters:
- $ref: "#/components/parameters/userId"
- $ref: "#/components/parameters/careerGroupId"
get:
summary: "1キャリアグループ取得"
description: "指定ユーザーの指定1キャリアグループを取得する。"
tags: ["users"]
responses:
"200":
description: "OK: 指定ユーザーの指定1キャリアグループを返却する。"
content:
application/json:
schema:
$ref: "#/components/schemas/UserCareerGroup"
"404":
$ref: "#/components/responses/404-NotFound"
put:
summary: "【未実装】キャリアグループ更新"
description: "1キャリアグループを更新する。"
tags: ["users"]
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/UserCareerGroupOwn"
responses:
"200":
description: "OK: 指定ユーザーのキャリアグループ自身を返却する。"
content:
application/json:
schema:
$ref: "#/components/schemas/UserCareerGroupOwn"
"400":
$ref: "#/components/responses/400-BadRequest"
"404":
$ref: "#/components/responses/404-NotFound"
delete:
summary: "【未実装】キャリアグループ削除"
description: "1キャリアグループを削除する。"
tags: ["users"]
responses:
"204":
description: "No Content: 指定キャリアグループの削除に成功。"
"404":
$ref: "#/components/responses/404-NotFound"
"/users/{byUserId}/careergroups/{byCareerGroupId}/careers":
parameters:
- $ref: "#/components/parameters/userId"
- $ref: "#/components/parameters/careerGroupId"
post:
summary: "1キャリアグループ内の1キャリア登録"
description: "1キャリアグループ内の1キャリアを登録する。"
tags: ["users"]
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/UserCareer"
responses:
"201":
description: "Created: 作成した1キャリアを返却する。"
content:
application/json:
schema:
$ref: "#/components/schemas/UserCareer"
"400":
$ref: "#/components/responses/400-BadRequest"
put:
summary: "【未実装】キャリアグループ内キャリア群最新化"
description: "1キャリアグループ内のキャリア群を最新化(総洗い替え)する。"
tags: ["users"]
requestBody:
required: true
content:
application/json:
schema:
type: array
description: "1ユーザーのキャリアグループのキャリア群"
items:
$ref: "#/components/schemas/UserCareer"
responses:
"200":
description: "OK: 指定ユーザーの1キャリアグループ内のキャリア群を返却する。"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/UserCareer"
"400":
$ref: "#/components/responses/400-BadRequest"
"404":
$ref: "#/components/responses/404-NotFound"
"/users/{byUserId}/careergroups/{byCareerGroupId}/careers/{byCareerId}":
parameters:
- $ref: "#/components/parameters/userId"
- $ref: "#/components/parameters/careerGroupId"
- $ref: "#/components/parameters/careerId"
get:
summary: "1キャリア取得"
description: "指定ユーザーの指定1キャリアを取得する。"
tags: ["users"]
responses:
"200":
description: "OK: 指定ユーザーの指定1キャリアを返却する。"
content:
application/json:
schema:
$ref: "#/components/schemas/UserCareer"
"404":
$ref: "#/components/responses/404-NotFound"
"/users/{byUserId}/notes":
parameters:
- $ref: "#/components/parameters/userId"
post:
summary: "注釈新規登録"
description: "注釈を新規登録する。"
tags: ["users"]
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/UserNote"
responses:
"201":
description: "Created: 指定ユーザーの注釈を返却する。"
content:
application/json:
schema:
$ref: "#/components/schemas/UserNote"
"400":
$ref: "#/components/responses/400-BadRequest"
"404":
$ref: "#/components/responses/404-NotFound"
get:
summary: "注釈群取得"
description: "指定ユーザーの注釈群を取得する。"
tags: ["users"]
responses:
"200":
description: "OK: 指定ユーザーの注釈群を返却する。"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/UserNote"
"404":
$ref: "#/components/responses/404-NotFound"
"/users/{byUserId}/notes/{byNoteId}":
parameters:
- $ref: "#/components/parameters/userId"
- $ref: "#/components/parameters/noteId"
put:
summary: "【未実装】注釈更新"
description: "1注釈を更新する。"
tags: ["users"]
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/UserNoteOwn"
responses:
"200":
description: "OK: 指定ユーザーの注釈自身を返却する。"
content:
application/json:
schema:
$ref: "#/components/schemas/UserNoteOwn"
"400":
$ref: "#/components/responses/400-BadRequest"
"404":
$ref: "#/components/responses/404-NotFound"
delete:
summary: "【未実装】注釈削除"
description: "1注釈を削除する。"
tags: ["users"]
responses:
"204":
description: "No Content: 指定注釈の削除に成功。"
"404":
$ref: "#/components/responses/404-NotFound"
"/users/{byUserId}/notes/{byNoteId}/items":
parameters:
- $ref: "#/components/parameters/userId"
- $ref: "#/components/parameters/noteId"
put:
summary: "【未実装】注釈内要素群最新化"
description: "1注釈内の要素群を最新化(総洗い替え)する。"
tags: ["users"]
requestBody:
required: true
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/UserNoteItem"
responses:
"200":
description: "OK: 指定ユーザーの1注釈内の要素群を返却する。"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/UserNoteItem"
"400":
$ref: "#/components/responses/400-BadRequest"
"404":
$ref: "#/components/responses/404-NotFound"
"/users/{byUserId}/skills":
parameters:
- $ref: "#/components/parameters/userId"
get:
summary: "スキル群取得"
description: "指定ユーザーのスキル群を取得する。"
tags: ["users"]
responses:
"200":
description: "OK: 指定ユーザーのスキル群を返却する。"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/UserSkillTag"
"404":
$ref: "#/components/responses/404-NotFound"
components:
schemas:
SkillTagId:
type: integer
format: int
description: "スキルタグを一意に識別するキー"
example: 1
x-go-name: SkillTagID
SkillId:
type: integer
format: int
description: "スキルを一意に識別するキー"
example: 1
x-go-name: SkillID
SkillTag:
type: object
description: "1スキルタグの属性"
properties:
id:
$ref: "#/components/schemas/SkillTagId"
name:
$ref: "#/components/schemas/SkillTagName"
Skill:
type: object
description: "1スキルの属性"
properties:
id:
$ref: "#/components/schemas/SkillId"
name:
$ref: "#/components/schemas/SkillName"
url:
$ref: "#/components/schemas/Url"
tagId:
$ref: "#/components/schemas/SkillTagId"
UserId:
type: integer
format: int
description: "ユーザーを一意に識別するキー"
example: 1
x-go-name: UserID
UserName:
type: string
description: "ユーザーの本名"
example: "山田太郎"
UserNickName:
type: string
description: "ユーザーのニックネーム"
example: "ドカベン"
Url:
type: string
format: uri
description: "URL"
example: "https:/example.com/205e460b479e2e2248aec07710c08d50"
Year:
type: integer
format: int
description: "生年月日の「年」"
example: 2022
Month:
type: integer
format: int
description: "生年月日の「月」"
example: 9
Day:
type: integer
format: int
description: "生年月日の「日」"
example: 10
BirthDay:
type: object
description: "生年月日"
example: "{year: 2022, month: 9, day:10}"
properties:
year:
$ref: "#/components/schemas/Year"
month:
$ref: "#/components/schemas/Month"
day:
$ref: "#/components/schemas/Day"
Job:
type: string
description: "職業"
example: "エンジニア"
BelongTo:
type: string
description: "所属"
example: "フリー"
PR:
type: string
description: "PR"
example: "私は20年以上のキャリアを持ち、〜〜"
ActivityName:
type: string
description: "アクティビティ名"
example: "GitHub"
ActivityIcon:
type: string
description: "アクティビティアイコン"
example: "github"
QualificationName:
type: string
description: "資格名"
example: "Oracle Master"
QualificationOrg:
type: string
description: "組織名"
example: "Oracle"
QualificationGotDate:
type: string
format: date
description: "取得日"
example: "2022-09-10"
QualificationMemo:
type: string
description: "メモ"
example: "期限切れ"
AppealContent:
type: string
description: "アピール事項"
example: "20年以上、多様なプロジェクトに参画してきたので、大抵の現場には順応できます。"
SolutionContent:
type: string
description: "課題解決事例"
example: "Goroutineの導入で夜間バッチ実行時間を8時間から1時間に短縮した。"
CareerId:
type: integer
format: int
description: "キャリアを一意に識別するID"
example: 1
x-go-name: CareerID
CareerName:
type: string
description: "キャリア名"
example: "物流システム開発"
CareerDescription:
type: array
description: "キャリア説明"
example: "['静的サイトのリニューアル', '動画配信サイト構築']"
items:
type: string
description: "キャリア説明1文"
example: "静的サイトのリニューアル"
CareerPeriodFrom:
type: object
description: "キャリア期間年月From"
example: "{year: 2021, month: 9}"
properties:
year:
$ref: "#/components/schemas/Year"
month:
$ref: "#/components/schemas/Month"
CareerPeriodTo:
type: object
description: "キャリア期間年月To"
example: "{year: 2022, month: 10}"
properties:
year:
$ref: "#/components/schemas/Year"
month:
$ref: "#/components/schemas/Month"
CareerPeriodMonth:
type: integer
format: int
description: "キャリア期間(月)"
example: 6
CareerGroupLabel:
type: string
description: "キャリアグループラベル"
example: "某コンサルティング会社にて就労"
TaskName:
type: string
description: "タスク名"
example: "バックエンドの機能拡張、不具合改修。"
TaskDescription:
type: array
description: "タスク説明"
example: "['・分析APIのベース開発', '・各種バッチ開発']"
items:
type: string
description: "タスク説明1文"
example: "・分析APIのベース開発"
SkillTagName:
type: string
description: "スキルタグ名"
example: "AWS"
SkillName:
type: string
description: "スキル名"
example: "Golang"
SkillVersion:
type: string
description: "スキルバージョン"
example: "v1.19"
SkillGroupLabel:
type: string
description: "スキルグループラベル"
example: "Backend"
NoteId:
type: integer
format: int
description: "注釈を一意に識別するID"
example: 1
x-go-name: NoteID
NoteItemText:
type: string
description: "注釈内の1要素"
example: "GraphQLを使っている"
NoteLabel:
type: string
description: "ラベル"
example: "就労条件"
NoteMemo:
type: string
description: "メモ"
example: "以下、順不同。"
UserAttribute:
type: object
description: "1ユーザーの属性"
properties:
id:
$ref: "#/components/schemas/UserId"
name:
$ref: "#/components/schemas/UserName"
nickname:
$ref: "#/components/schemas/UserNickName"
avatarUrl:
$ref: "#/components/schemas/Url"
birthday:
$ref: "#/components/schemas/BirthDay"
job:
$ref: "#/components/schemas/Job"
belongTo:
$ref: "#/components/schemas/BelongTo"
pr:
$ref: "#/components/schemas/PR"
UserActivity:
type: object
description: "1ユーザーのアクティビティ"
properties:
name:
$ref: "#/components/schemas/ActivityName"
url:
$ref: "#/components/schemas/Url"
icon:
$ref: "#/components/schemas/ActivityIcon"
UserQualification:
type: object
description: "1ユーザーの資格情報"
properties:
name:
$ref: "#/components/schemas/QualificationName"
organization:
$ref: "#/components/schemas/QualificationOrg"
url:
$ref: "#/components/schemas/Url"
gotDate:
$ref: "#/components/schemas/QualificationGotDate"
memo:
$ref: "#/components/schemas/QualificationMemo"
UserAppeal:
type: object
description: "1ユーザーのアピール事項"
properties:
content:
$ref: "#/components/schemas/AppealContent"
UserSolution:
type: object
description: "1ユーザーの課題解決事例"
properties:
content:
$ref: "#/components/schemas/SolutionContent"
CareerTask:
type: object
description: "1キャリアのタスク"
properties:
name:
$ref: "#/components/schemas/TaskName"
description:
$ref: "#/components/schemas/TaskDescription"
CareerSkill:
type: object
description: "1キャリアのスキル"
properties:
skill:
$ref: "#/components/schemas/Skill"
version:
$ref: "#/components/schemas/SkillVersion"
CareerGroupId:
type: integer
format: int
description: "キャリアグループを一意に識別するID"
example: 1
x-go-name: CareerGroupID
CareerSkillGroup:
type: object