Skip to content

Commit

Permalink
Merge pull request #106 from freee/feature/update_schema_files_2021-0…
Browse files Browse the repository at this point in the history
…6-11-08-39

Update schema files
  • Loading branch information
zawazawazawazawa authored Jun 11, 2021
2 parents fe3ba03 + 21ccd41 commit c90d40b
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 3 deletions.
24 changes: 23 additions & 1 deletion v2020_06_15/open-api-3/api-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -12813,6 +12813,28 @@
},
"description": "申請者のユーザーID"
},
{
"name": "min_amount",
"in": "query",
"description": "金額で絞込:以上",
"schema": {
"type": "integer",
"format": "int64",
"minimum": -9223372036854775808,
"maximum": 9223372036854775807
}
},
{
"name": "max_amount",
"in": "query",
"description": "金額で絞込:以下",
"schema": {
"type": "integer",
"format": "int64",
"minimum": -9223372036854775808,
"maximum": 9223372036854775807
}
},
{
"name": "approver_id",
"in": "query",
Expand Down Expand Up @@ -15166,7 +15188,7 @@
},
"indirect_write_off_method_type": {
"type": "boolean",
"description": "間接控除時の累計額(法人のみ)(true: 資産分類別、false: 共通)'\n",
"description": "間接控除時の累計額(法人のみ)(true: 資産分類別、false: 共通)",
"example": false
},
"start_date": {
Expand Down
19 changes: 17 additions & 2 deletions v2020_06_15/open-api-3/api-schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -814,6 +814,22 @@ paths:
maximum: 2147483647
minimum: 1
type: integer
- description: 金額で絞込:以上
in: query
name: min_amount
schema:
format: int64
maximum: 9223372036854776000
minimum: -9223372036854776000
type: integer
- description: 金額で絞込:以下
in: query
name: max_amount
schema:
format: int64
maximum: 9223372036854776000
minimum: -9223372036854776000
type: integer
- description: 承認者のユーザーID
example: 1
in: query
Expand Down Expand Up @@ -14777,8 +14793,7 @@ components:
example: true
type: boolean
indirect_write_off_method_type:
description: |
間接控除時の累計額(法人のみ)(true: 資産分類別、false: 共通)'
description: '間接控除時の累計額(法人のみ)(true: 資産分類別、false: 共通)'
example: false
type: boolean
return_code:
Expand Down

0 comments on commit c90d40b

Please sign in to comment.