Files
swagger-ui/test/e2e-cypress/static/documents/features/parameter-array-missing-items.yaml
2022-08-12 10:14:27 -07:00

25 lines
599 B
YAML

openapi: 3.0.0
info:
title: test
version: "1.0.0"
paths:
/example1:
get:
description: test fetching
parameters:
- in: query
name: basicName
content:
application/json:
schema:
type: object
properties:
color:
oneOf:
- type: array # invalid definition b/c type: array is missing 'items'
- type: string
- type: integer
responses:
'200':
description: successful fetch