* implement a selector for consumes options * fix incorrect comment, test names * add `consumesOptionsFor` selector * use `consumesOptionsFor` and drop `operationConsumes`
17 lines
381 B
YAML
17 lines
381 B
YAML
---
|
|
paths:
|
|
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: "body"
|
|
schema:
|
|
type: string
|
|
responses:
|
|
200:
|
|
description: ok |