acuity-brands · Schema

ShipmentList

List of shipments for an order

Fortune 1000

Properties

Name Type Description
shipments array
total integer
View JSON Schema on GitHub

JSON Schema

acuity-brands-shipment-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12",
  "$id": "https://schema.api-evangelist.com/acuity-brands/acuity-brands-shipment-list-schema.json",
  "title": "ShipmentList",
  "description": "List of shipments for an order",
  "type": "object",
  "properties": {
    "shipments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Shipment"
      }
    },
    "total": {
      "type": "integer",
      "example": 2
    }
  }
}