23 lines
505 B
YAML
23 lines
505 B
YAML
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" |