# /pets/{petId}
get:
  summary: Info for a specific pet
  operationId: showPetById
  tags:
    $include: ../components/tags.yaml#/tags/pet
  parameters:
    - $include: ../components/parameters/PetId.yaml
      in: path
      required: true
  responses:
    '200':
      $ref: ../components/responses/Pet.yaml
    default:
      $ref: ../components/responses/Error.yaml
