Skip to content

Commit

Permalink
refactor: move schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucky3028 committed Dec 9, 2022
1 parent 7a6329f commit ef48d38
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions schema/paths/forms/index.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,6 @@
post:
operationId: createForm
summary: フォームを作成する
responses:
'201':
description: フォームの作成に成功
content:
application/json:
schema:
type: object
properties:
id:
$ref: './types/form.yml#/schemas/form_id'
'400':
description: 構文エラー
'401':
description: 認証がされていない
'403':
description: 権限が不足
'415':
description: 対応していないメディア形式
'500':
description: データベースエラー
requestBody:
description: 作成するフォームの内容
required: true
Expand Down Expand Up @@ -58,6 +38,26 @@ post:
choices:
- 選択肢1
- 選択肢2
responses:
'201':
description: フォームの作成に成功
content:
application/json:
schema:
type: object
properties:
id:
$ref: './types/form.yml#/schemas/form_id'
'400':
description: 構文エラー
'401':
description: 認証がされていない
'403':
description: 権限が不足
'415':
description: 対応していないメディア形式
'500':
description: データベースエラー
get:
operationId: listForms
summary: フォームの一覧を取得する
Expand Down

0 comments on commit ef48d38

Please sign in to comment.