AT&T · Schema

ProductOrderCreate

ProductOrderCreate schema from AT&T API

Fortune 100TelecommunicationsWirelessWirelineMessagingSpeechMobileBroadbandEnterprise

Properties

Name Type Description
externalId string External order identifier for tracking
orderItem array
View JSON Schema on GitHub

JSON Schema

mvnx-api-product-order-create-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/at-and-t/refs/heads/main/json-schema/mvnx-api-product-order-create-schema.json",
  "title": "ProductOrderCreate",
  "description": "ProductOrderCreate schema from AT&T API",
  "type": "object",
  "properties": {
    "externalId": {
      "type": "string",
      "description": "External order identifier for tracking",
      "example": "ext-order-500123"
    },
    "orderItem": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "action": {
            "type": "string",
            "enum": [
              "add",
              "modify",
              "delete"
            ],
            "example": "add"
          },
          "product": {
            "type": "object",
            "properties": {
              "productOffering": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "example": "offer-unlimited-basic"
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}