0
現在、APIを文書化するためにSwagger.ioを使用しています。カスタムjsonオブジェクトの送信を文書化する方法を理解しようとしています。コレクションのSwaggerでオブジェクトのJSON配列を挿入する方法は?
PUT/some_endpoint
MIME:アプリケーション/ JSON
カスタムデータ:
[ {"keyA": "a value", "keyB": "b value"}, {"keyA": "a value", "keyB": "b value"} ]
が闊歩でこれを文書化することは可能です?
/some_endpoint:
put:
description: |
desc goes here
parameters:
- name: guid
in: query
description:
required: true
type: string
format: string
# Expected responses for this operation
responses:
# Response code
200:
description: Successful response
'keyA'と' keyB'は固定プロパティ名か、それとも任意のキー名を持つマップですか? – Helen
@Helen固定プロパティ名 –