1234567891011121314151617181920212223 |
- openapi: "3.0.0"
- paths:
- /:
- post:
- requestBody:
- required: true
- content:
- multipart/form-data:
- schema:
- type: object
- properties:
- first:
- type: object
- example:
- one: abc
- two: 123
- second:
- type: array
- items:
- type: string
- example:
- - "hi"
|