Skip to content

Commit

Permalink
Merge pull request #140 from freee/feature/update_schema_files_2022-0…
Browse files Browse the repository at this point in the history
…2-21-09-00

Update schema files
  • Loading branch information
flipfrog authored Feb 21, 2022
2 parents f2b43f6 + 66b6131 commit bb034a5
Showing 1 changed file with 36 additions and 1 deletion.
37 changes: 36 additions & 1 deletion hr/open-api-3/api-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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": {
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit bb034a5

Please sign in to comment.