openapi: 3.1.0
info:
title: Swagger Petstore - OpenAPI 3.1
servers:
- url: https://petstore3.swagger.io/api/v3
paths:
/pet/findByStatus:
get:
tags:
- pet
summary: Finds Pets by status
description: Multiple status values can be provided with comma separated strings
operationId: findPetsByStatus
parameters:
- name: status
in: query
description: Status values that need to be considered for filter
required: false
explode: true
schema:
type:
- "array"
items:
type: "string"
enum:
- available
- pending
- sold
Q&A (please complete the following information)
Content & configuration
Example Swagger/OpenAPI definition:
Describe the bug you're encountering
status
is a free text inputTo reproduce...
status
parameter as documented aboveExpected behavior