Diagram
properties_Order.html#/properties/Order/properties/id properties_Order.html#/properties/Order/properties/petId properties_Order.html#/properties/Order/properties/quantity properties_Order.html#/properties/Order/properties/shipDate properties_Order.html#/properties/Order/properties/status properties_Order.html#/properties/Order/properties/complete diagram
Type object
Properties
Name Occurrence
id
petId
quantity
shipDate
status
complete
optional
optional
optional
optional
optional
optional
Used by
Schema
Order
Source

 "Order": {
  "type": "object",
  "xml": {"name": "Order"},
  "properties": {
    "id": {"type": "integer"},
    "petId": {"type": "integer"},
    "quantity": {"type": "integer"},
    "shipDate": {
      "type": "string",
      "format": "date-time"
    },
    "status": {
      "description": "Order Status",
      "type": "string",
      "enum": [
        "approved",
        "placed",
        "delivered"
      ]
    },
    "complete": {
      "default": false,
      "type": "boolean"
    }
  }
}

Diagram
diagram
Type object
All of
Choices
id : Schema (#/properties/Order/properties/id/0)
id : Schema (#/properties/Order/properties/id/1)
Used by
Schema
Order
Order/properties/id
Source

 "id": {"type": "integer"}

Diagram
diagram
Type number
Used by
Schema
Order/properties/id
Order/properties/id/0
Source

 "#/properties/Order/properties/id/0": {"type": "integer"}

Diagram
diagram
Type string
Used by
Schema
Order/properties/id
Order/properties/id/1
Source

 "#/properties/Order/properties/id/1": {}

Diagram
diagram
Type object
All of
Choices
petId : Schema (#/properties/Order/properties/id/0)
petId : Schema (#/properties/Order/properties/id/1)
Used by
Schema
Order
Order/properties/petId
Source

 "petId": {"type": "integer"}

Diagram
diagram
Type number
Used by
Schema
Order/properties/petId
Order/properties/id/0
Source

 "#/properties/Order/properties/id/0": {"type": "integer"}

Diagram
diagram
Type string
Used by
Schema
Order/properties/petId
Order/properties/id/1
Source

 "#/properties/Order/properties/id/1": {}

Diagram
diagram
Type object
All of
Choices
quantity : Schema (#/properties/Order/properties/id/0)
quantity : Schema (#/properties/Order/properties/id/1)
Used by
Schema
Order
Order/properties/quantity
Source

 "quantity": {"type": "integer"}

Diagram
diagram
Type number
Used by
Schema
Order/properties/quantity
Order/properties/id/0
Source

 "#/properties/Order/properties/id/0": {"type": "integer"}

Diagram
diagram
Type string
Used by
Schema
Order/properties/quantity
Order/properties/id/1
Source

 "#/properties/Order/properties/id/1": {}

Diagram
diagram
Type string
Constraints
Format : date-time
Used by
Schema
Order
Order/properties/shipDate
Source

 "shipDate": {
  "type": "string",
  "format": "date-time"
}

Annotations
Description  Order Status
Diagram
diagram
Type string
Enumeration
Values
approved
placed
delivered
Used by
Schema
Order
Order/properties/status
Source

 "status": {
  "description": "Order Status",
  "type": "string",
  "enum": [
    "approved",
    "placed",
    "delivered"
  ]
}

Diagram
diagram
Type boolean
Default value : false
Used by
Schema
Order
Order/properties/complete
Source

 "complete": {
  "default": false,
  "type": "boolean"
}