Advance Auto Parts · JSON Structure

Commerce Api Order Structure

A placed order.

Type: object Properties: 5
AutomotiveE-CommerceParts CatalogRetailSupply ChainFortune 500

Commerce Api Order Structure is a JSON Structure definition published by Advance Auto Parts, describing 5 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

id status total createdAt items

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "order-structure.json",
  "title": "Order",
  "description": "A placed order.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Order identifier."
    },
    "status": {
      "type": "string",
      "description": "Current order status."
    },
    "total": {
      "type": "float",
      "description": "Order total."
    },
    "createdAt": {
      "type": "datetime",
      "description": "Order creation timestamp."
    },
    "items": {
      "type": "array",
      "description": "Items in the order."
    }
  }
}