Skip to content

Commit

Permalink
✨ 파트너 직업군 복수선택 가능하도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
waterfogSW committed Oct 5, 2024
1 parent 397d8da commit c315a1f
Showing 1 changed file with 22 additions and 20 deletions.
42 changes: 22 additions & 20 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -545,12 +545,12 @@ components:
properties:
birthYearRange:
$ref: '#/components/schemas/BirthYearRange'
jobOccupation:
$ref: '#/components/schemas/JobOccupation'
jobOccupations:
$ref: '#/components/schemas/JobOccupations'
preferDistance:
$ref: '#/components/schemas/PreferDistance'
required:
- jobOccupation
- jobOccupations
- preferDistance

BirthYearRange:
Expand Down Expand Up @@ -699,23 +699,25 @@ components:
enum: [ MALE, FEMALE ]
description: 사용자의 성별

JobOccupation:
type: string
enum: [
BUSINESS_ADMIN,
FINANCE_INSURANCE,
RESEARCH_ENGINEERING,
EDUCATION,
LAW,
POLICE_MILITARY,
IT_SOFTWARE,
DESIGN_ART,
SPORTS,
HEALTHCARE,
FREELANCER,
OTHER
]
description: 직업군 분류
JobOccupations:
type: array
items:
type: string
enum: [
BUSINESS_ADMIN,
FINANCE_INSURANCE,
RESEARCH_ENGINEERING,
EDUCATION,
LAW,
POLICE_MILITARY,
IT_SOFTWARE,
DESIGN_ART,
SPORTS,
HEALTHCARE,
FREELANCER,
OTHER
]
description: 직업군 분류

PreferDistance:
type: string
Expand Down

0 comments on commit c315a1f

Please sign in to comment.