AT&T · JSON Structure

Mvnx Api Product Order Structure

ProductOrder schema from AT&T API

Type: object Properties: 4
Fortune 100TelecommunicationsWirelessWirelineMessagingSpeechMobileBroadbandEnterprise

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

Properties

id href state externalId

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-structure.json",
  "description": "ProductOrder schema from AT&T API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique product order identifier",
      "example": "order-500123"
    },
    "href": {
      "type": "uri",
      "example": "https://devex-web.att.com/productOrder/order-500123"
    },
    "state": {
      "type": "string",
      "description": "Order state",
      "enum": [
        "inProgress",
        "completed",
        "cancelled",
        "failed"
      ],
      "example": "inProgress"
    },
    "externalId": {
      "type": "string",
      "description": "External order identifier",
      "example": "ext-order-500123"
    }
  },
  "name": "ProductOrder"
}