Advance Auto Parts · Schema

OrderList

List of orders.

AutomotiveE-CommerceParts CatalogRetailSupply ChainFortune 500

Properties

Name Type Description
orders array Array of orders.
total integer Total number of orders.
View JSON Schema on GitHub

JSON Schema

commerce-api-orderlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OrderList",
  "description": "List of orders.",
  "type": "object",
  "properties": {
    "orders": {
      "type": "array",
      "description": "Array of orders.",
      "items": {
        "$ref": "#/$defs/Order"
      }
    },
    "total": {
      "type": "integer",
      "description": "Total number of orders.",
      "example": 25
    }
  }
}