acuity-brands · JSON Structure

Acuity Brands Order Structure

An Acuity Brands order with status and shipment information

Type: object Properties: 9
Fortune 1000

Acuity Brands Order Structure is a JSON Structure definition published by acuity-brands, describing 9 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

orderId purchaseOrderNumber status orderDate estimatedShipDate actualShipDate lineItems totalAmount shipToAddress

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://structure.api-evangelist.com/acuity-brands/acuity-brands-order-structure.json",
  "title": "Order",
  "description": "An Acuity Brands order with status and shipment information",
  "type": "object",
  "properties": {
    "orderId": {
      "type": "string"
    },
    "purchaseOrderNumber": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "orderDate": {
      "type": "string"
    },
    "estimatedShipDate": {
      "type": "string"
    },
    "actualShipDate": {
      "type": "string"
    },
    "lineItems": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "totalAmount": {
      "type": "number"
    },
    "shipToAddress": {
      "type": "object"
    }
  }
}