これは、エンコーディング オブジェクトの例が OpenApi で行われる方法です https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md
requestBody:
content:
multipart/mixed:
schema:
type: object
properties:
id:
# default is text/plain
type: string
format: uuid
address:
# default is application/json
type: object
properties: {}
historyMetadata:
# need to declare XML format!
description: metadata in XML format
type: object
properties: {}
profileImage:
# default is application/octet-stream, need to declare an image type only!
type: string
format: binary
encoding:
historyMetadata:
# require XML Content-Type in utf-8 encoding
contentType: application/xml; charset=utf-8
profileImage:
# only accept png/jpeg
contentType: image/png, image/jpeg
headers:
X-Rate-Limit-Limit:
description: The number of allowed requests in the current period
schema:
type: integer
私は同じことを達成しようとしていますが、swagger-php を使用しています。私が知らないのは、デフォルトで次のようにエンコードされているため、プロパティを次のようencodings
に@OA\MediaType
エンコードするために渡す方法ですtest
multipart/form-data
application/json
元:
* @OA\Post(
* path="/admin/test",
* summary="Create new Test",
* description="Will attempt to create a new Test",
* tags={"Admin Test"},
* @OA\RequestBody(
* @OA\MediaType(
* mediaType="multipart/form-data",
* encoding={}
* @OA\Schema(
* type="object",
* @OA\Property(
* property="test",
* type="object",
* description="test"
* ref="#/components/schemas/MyTestSchema"
* )
* )
* )
ここにいくつかの例があります:
https://github.com/zircote/swagger-php/tree/master/Examples
しかし、エンコーディングに関する例は見つかりませんでした
ここでフィールドが定義されてい ます https://github.com/zircote/swagger-php/blob/master/src/Annotations/MediaType.php
/**
* A map between a property name and its encoding information.
* The key, being the property name, must exist in the schema as a property.
* The encoding object shall only apply to requestBody objects when the media type is multipart or application/x-www-form-urlencoded.
*/
public $encoding = UNDEFINED;
やってみencoding={"recommended"={"contentType"="multipart/form-data"}}
たけど駄目。