You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a path parameter is marked as deprecated there is no visual indicator in the UI. I think having some indicator to be useful, as that would prevent new consumers of an API from using a field/param that is meant to be deleted.
Version: 0.6.4
Commit: 0beb11b
Reproduction spec (taken from the Petstore spec):
openapi: 3.0.0servers: []info:
description: | Exampleversion: 1.0.0title: Swagger Petstore YAMLtags:
- name: petdescription: Everything about your Petspaths:
"/pet/{petId}":
get:
tags:
- petsummary: Find pet by IDdescription: Returns a single petoperationId: getPetByIdparameters:
- name: petIdin: pathdescription: ID of pet to returnrequired: falsedeprecated: trueschema:
type: integerformat: int64responses:
"200":
description: successful operationcontent:
application/json:
schema:
$ref: "#/components/schemas/Pet"components:
schemas:
Pet:
type: objectproperties:
name:
description: The name given to a pettype: stringexample: Guru
The text was updated successfully, but these errors were encountered:
If a path parameter is marked as
deprecated
there is no visual indicator in the UI. I think having some indicator to be useful, as that would prevent new consumers of an API from using a field/param that is meant to be deleted.Version: 0.6.4
Commit: 0beb11b
Reproduction spec (taken from the Petstore spec):
The text was updated successfully, but these errors were encountered: