AT&T · Schema

Product Order Request

Request to create an AT&T enterprise service order

Fortune 100TelecommunicationsFortune 100WirelessWirelineBroadbandEnterprise5GNetwork

Properties

Name Type Description
externalId string
description string
requestedStartDate string
orderItem array
View JSON Schema on GitHub

JSON Schema

enterprise-apis-product-order-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://devex-web.att.com/schemas/enterprise/product-order-request",
  "title": "Product Order Request",
  "description": "Request to create an AT&T enterprise service order",
  "type": "object",
  "required": [
    "orderItem"
  ],
  "properties": {
    "externalId": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "requestedStartDate": {
      "type": "string",
      "format": "date"
    },
    "orderItem": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "action": {
            "type": "string",
            "enum": [
              "add",
              "modify",
              "delete",
              "noChange"
            ]
          },
          "productOffering": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string"
              }
            }
          }
        }
      }
    }
  }
}