AT&T · JSON Structure

Mvnx Api Product Order Create Structure

ProductOrderCreate schema from AT&T API

Type: object Properties: 2
Fortune 100TelecommunicationsWirelessWirelineMessagingSpeechMobileBroadbandEnterprise

ProductOrderCreate is a JSON Structure definition published by AT&T, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

externalId orderItem

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/at-and-t/refs/heads/main/json-structure/mvnx-api-product-order-create-structure.json",
  "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"
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "name": "ProductOrderCreate"
}