1
パラメーターとして配列を指定するにはどうすればよいですか?たとえば、投稿者/人に文字列username、firstname、lastname、と配列myArrayを渡すことができます。スワッガーで配列をパラメーターとして指定する
paths:
/persons:
post:
parameters:
- name: person_what_is_the_purpose_of_this
in: body
description: The person to create.
schema:
required:
- username
properties:
firstName:
type: string
lastName:
type: string
username:
type: string
myArray:
type: array
items:
properties:
myArrayElement:
type: string
responses:
200:
description: A list of Person
schema:
type: array
items:
required:
- username
properties:
firstName:
type: string
lastName:
type: string
username:
type: string
これは、リストではなく、配列を送信しています – Jeremie