-
Notifications
You must be signed in to change notification settings - Fork 33
Open
Description
Swagger 2.0 multipart/form-data defined as below:
consumes:
- multipart/form-data
produces:
- application/json
parameters:
- type: file
name: artifact
in: formData
required: true
- type: file
name: metadata
in: formDataAnd after converting, in OAS 3, it becomes:
requestBody:
content:
multipart/form-data:
schema:
required:
- artifact
properties:
artifact:
type: string
format: binary
metadata:
type: string
format: binaryUnder schema section, missing type: object property. It should be:
requestBody:
content:
multipart/form-data:
schema:
type: object
required:
- artifact
properties:
artifact:
type: string
format: binary
metadata:
type: string
format: binarypeakji, AlexisAmd, RockyMM and lxylxy123456
Metadata
Metadata
Assignees
Labels
No labels