-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #140 from freee/feature/update_schema_files_2022-0…
…2-21-09-00 Update schema files
- Loading branch information
Showing
1 changed file
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3504,6 +3504,16 @@ | |
"description": "指定日。指定日付時点における所属情報をリストで返します。(YYYY-MM-DD)(例:2018-07-31)", | ||
"example": "2018-07-31" | ||
}, | ||
{ | ||
"name": "with_no_payroll_calculation", | ||
"in": "query", | ||
"schema": { | ||
"type": "boolean", | ||
"default": false | ||
}, | ||
"description": "trueを指定すると給与計算対象外の従業員情報をレスポンスに含めます。", | ||
"example": true | ||
}, | ||
{ | ||
"name": "limit", | ||
"in": "query", | ||
|
@@ -4526,6 +4536,27 @@ | |
"nullable": true, | ||
"example": "[email protected]" | ||
}, | ||
"birth_date": { | ||
"type": "string", | ||
"description": "生年月日", | ||
"format": "date", | ||
"example": "2000-01-01" | ||
}, | ||
"gender": { | ||
"type": "string", | ||
"description": "性別 unselected: 未選択, male: 男性, female: 女性", | ||
"enum": [ | ||
"unselected", | ||
"male", | ||
"female" | ||
], | ||
"example": "male" | ||
}, | ||
"payroll_calculation": { | ||
"type": "boolean", | ||
"description": "給与計算対象従業員の場合trueを返します", | ||
"example": true | ||
}, | ||
"group_memberships": { | ||
"type": "array", | ||
"items": { | ||
|
@@ -4624,7 +4655,11 @@ | |
}, | ||
"role": { | ||
"type": "string", | ||
"description": "事業所におけるロール。\n- `company_admin`: 管理者ユーザ\n- `self_only`: 一般ユーザ" | ||
"description": "事業所におけるロール。\n- `company_admin`: 管理者ユーザ\n- `self_only`: 一般ユーザ", | ||
"enum": [ | ||
"company_admin", | ||
"self_only" | ||
] | ||
}, | ||
"external_cid": { | ||
"type": "string", | ||
|