tags:
  - store
summary: Place an order for a pet
description: ""
operationId: placeOrder
produces:
  - application/json
  - application/xml
parameters:
  - in: body
    name: body
    description: order placed for purchasing the pet
    required: false
    schema:
      $ref: "#/definitions/Order"
responses:
  "200":
    description: successful operation
    schema:
      $ref: "#/definitions/Order"
  "400":
    description: Invalid Order
