Files
fastapi-openapi-to-postman/test/data/toBundleExamples/nestedProperties/properties/prop.yaml
Erik Mendoza 446e8651e5 Resolving properties as a reusable component
Resolve each property as a different schema instead of inline
2022-06-08 18:15:03 -05:00

14 lines
230 B
YAML

type: object
properties:
firstName:
type: string
secondName:
type: string
age:
type: integer
nestedProp:
$ref: "./nestedProp.yaml"
country:
$ref: "./country.yaml"
warrior:
$ref: "./warrior.yaml"