Axerity

The Order object

An Order is a purchase placed in the store.

Attributes

id integer

Unique id for the order.

petId integer

The id of the pet being ordered.

quantity integer

How many of the pet are ordered.

shipDate string

When the order ships, as a date-time.

status enum

The order status.

Possible enum values
placed
The order has been placed.
approved
The order has been approved.
delivered
The order has been delivered.
complete boolean

Whether the order is complete.

The Order object
{	"id": 10,	"petId": 198772,	"quantity": 7,	"shipDate": "2024-01-01T10:00:00Z",	"status": "approved",	"complete": true}