{
  "openapi": "3.0.1",
  "info": {
    "title": "Unified Shopping Cart",
    "description": "The Unified Shopping Cart",
    "version": "v1",
    "contact": {}
  },
  "paths": {
    "/msapi/sales/shopping-cart-api/v1/query-carts": {
      "post": {
        "tags": [
          "Cart Operations"
        ],
        "summary": "Find Existing Shopping Cart",
        "description": "This operation list or find ShoppingCart(ProductOrder) entities based on filter criteria.",
        "operationId": "ListShoppingCarts",
        "parameters": [
          {
            "$ref": "#/components/parameters/idpctxuuid"
          },
          {
            "$ref": "#/components/parameters/mockscenario"
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "headers": {},
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/QueryCartResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "Shopping cart search params",
          "content": {
            "application/json;charset=utf-8": {
              "schema": {
                "$ref": "#/components/schemas/SearchCartEntity"
              }
            }
          },
          "required": true
        }
      }
    },
    "/msapi/sales/shopping-cart-api/v1/carts/initialize": {
      "post": {
        "operationId": "Inititalize Shopping Cart",
        "tags": [
          "Cart Operations"
        ],
        "summary": "Inititalize Shopping Cart",
        "description": "This operation initializes the shopping cart. It is responsible for creating a new cart and returning a valid cart ID, which is essential for all subsequent commerce operations. If a cart already exists for the user, this API will not create a new one; instead, it will return the existing cart ID.",
        "parameters": [
          {
            "$ref": "#/components/parameters/idpctxuuid"
          },
          {
            "$ref": "#/components/parameters/mockscenario"
          },
          {
            "$ref": "#/components/parameters/idpctxLinkedWirelessAccNums"
          },
          {
            "$ref": "#/components/parameters/idpctxAcctInfoCustType"
          }
        ],
        "requestBody": {
          "description": "Initialize Shopping Cart and retrieve cart id.",
          "content": {
            "application/json;charset=utf-8": {
              "schema": {
                "$ref": "#/components/schemas/InitializeCart_RequestBody"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Success",
            "headers": {},
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/ProductOrder"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/msapi/sales/shopping-cart-api/v1/carts/{cart-id}/save": {
      "post": {
        "tags": [
          "Cart Operations"
        ],
        "summary": "Save Shopping Cart",
        "description": "This API  is responsible for save a current cart by email which is used by marketing team to send an marketing email about pending cart.",
        "operationId": "saveCart",
        "parameters": [
          {
            "$ref": "#/components/parameters/cartId"
          },
          {
            "$ref": "#/components/parameters/idpctxuuid"
          },
          {
            "$ref": "#/components/parameters/mockscenario"
          }
        ],
        "requestBody": {
          "description": "Capture Email and save the cart",
          "content": {
            "application/json;charset=utf-8": {
              "schema": {
                "$ref": "#/components/schemas/SaveCart_RequestBody"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json;charset=utf-8": {
                "example": {
                  "status": "Success"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/msapi/sales/shopping-cart-api/v1/carts/{cart-id}": {
      "get": {
        "tags": [
          "Cart Operations"
        ],
        "summary": "Get Shopping Cart",
        "description": "This operation retrieves a ShoppingCart (ProductOrder) entity by the cart id. Attribute selection is enabled for all first level attributes.",
        "operationId": "retrieveProductOrder",
        "parameters": [
          {
            "$ref": "#/components/parameters/cartId"
          },
          {
            "$ref": "#/components/parameters/idpctxuuid"
          },
          {
            "$ref": "#/components/parameters/mockscenario"
          },
          {
            "schema": {
              "type": "boolean"
            },
            "in": "query",
            "name": "includeValidationResult",
            "description": "Validation result object inclusion/exclusion"
          },
          {
            "schema": {
              "type": "boolean"
            },
            "in": "query",
            "name": "excludePrices",
            "description": "Indicates if the operation should involve with price recalculation and/include prices in the response. Set to 'false' to recalculate prices and return them in the response."
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/ProductOrder"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      },
      "patch": {
        "tags": [
          "Cart Operations"
        ],
        "summary": "Patch Shopping Cart",
        "description": "This operation updates ShoppingCart (ProductOrder) entity and User order entity.",
        "operationId": "UpdateCartAttributes",
        "parameters": [
          {
            "$ref": "#/components/parameters/cartId"
          },
          {
            "$ref": "#/components/parameters/idpctxuuid"
          },
          {
            "$ref": "#/components/parameters/mockscenario"
          }
        ],
        "requestBody": {
          "description": "Update Cart Attributes by ID",
          "content": {
            "application/json;charset=utf-8": {
              "schema": {
                "$ref": "#/components/schemas/CartUpdateRequest"
              }
            }
          },
          "required": false
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/ProductOrder"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/msapi/sales/shopping-cart-api/v1/carts/{cart-id}/retrieveCart": {
      "put": {
        "tags": [
          "Cart Operations"
        ],
        "parameters": [
          {
            "$ref": "#/components/parameters/cartId"
          },
          {
            "$ref": "#/components/parameters/idpctxuuid"
          },
          {
            "$ref": "#/components/parameters/mockscenario"
          }
        ],
        "requestBody": {
          "description": "Replace channel information of the shopping cart. (Optional)",
          "content": {
            "application/json;charset=utf-8": {
              "schema": {
                "$ref": "#/components/schemas/AddItemsToCart_RequestBody"
              }
            }
          },
          "required": false
        },
        "summary": "Retrieves Shopping Cart",
        "description": " Retrieves user cart by cart id after doing session level validations and repricing if applicable.",
        "operationId": "retrievePersistedCart",
        "responses": {
          "200": {
            "description": "Success",
            "headers": {},
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/ProductOrder"
                },
                "examples": {
                  "Sample Response": {
                    "$ref": "#/components/examples/Sample_Response_Retrieve_Cart_PUT_200"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/msapi/sales/shopping-cart-api/v1/carts/{cart-id}/items": {
      "post": {
        "tags": [
          "Cart Operations"
        ],
        "summary": "Add to Cart",
        "description": "This operation add items to cart and generates cart id.",
        "operationId": "addItemsToCart",
        "parameters": [
          {
            "$ref": "#/components/parameters/cartId"
          },
          {
            "$ref": "#/components/parameters/idpctxuuid"
          },
          {
            "$ref": "#/components/parameters/channel"
          },
          {
            "$ref": "#/components/parameters/idpctxLinkedWirelessAccNums"
          },
          {
            "$ref": "#/components/parameters/idpctxAcctInfoCustType"
          }
        ],
        "requestBody": {
          "description": "The ProductOrder to be created",
          "content": {
            "application/json;charset=utf-8": {
              "schema": {
                "$ref": "#/components/schemas/AddItemsToCart_RequestBody"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/ProductOrder"
                },
                "examples": {
                  "Standalone TLG wireless - AAL - Device+Sim Response": {
                    "$ref": "#/components/examples/Standalone_TLG_wireless_Device_Sim_AAL_Response"
                  },
                  "Standalone TLG wireless - AAL - Plan Response": {
                    "$ref": "#/components/examples/Standalone_TLG_wireless_AAL_Plan_Response"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "Cart Operations"
        ],
        "summary": "Empty Cart",
        "description": "This operation deletes a ShoppingCart (ProductOrder) items.",
        "operationId": "deleteProductOrderLineItems",
        "parameters": [
          {
            "$ref": "#/components/parameters/cartId"
          },
          {
            "$ref": "#/components/parameters/idpctxuuid"
          },
          {
            "$ref": "#/components/parameters/mockscenario"
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/ProductOrder"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "Cart Operations"
        ],
        "summary": "Update Cart",
        "description": "This operation update cart items of the shopping cart for the given CartId",
        "operationId": "UpdateItemsToCart",
        "parameters": [
          {
            "$ref": "#/components/parameters/cartId"
          },
          {
            "$ref": "#/components/parameters/idpctxuuid"
          },
          {
            "$ref": "#/components/parameters/mockscenario"
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/ProductOrder"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "The ProductOrder to be created",
          "content": {
            "application/json;charset=utf-8": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/ProductOrderItem_InputRequest"
                }
              },
              "example": [
                {
                  "id": "58fadc56-5e82-4ff2-8cff-8513f01d51a0",
                  "itemType": "Equipment",
                  "product": {
                    "actionReason": [
                      {
                        "action": "managePlace",
                        "reason": "replace"
                      }
                    ],
                    "place": [
                      {
                        "id": "new_shipping_address",
                        "name": "ShippingAddress",
                        "role": "shipping"
                      }
                    ]
                  }
                },
                {
                  "id": "777adc56-5e82-4ff2-8cff-8513f01d51a0",
                  "itemType": "Equipment",
                  "product": {
                    "actionReason": [
                      {
                        "action": "managePlace",
                        "reason": "replace"
                      }
                    ],
                    "place": [
                      {
                        "id": "new_shipping_address_2",
                        "name": "ShippingAddress",
                        "role": "shipping"
                      }
                    ]
                  }
                }
              ]
            }
          },
          "required": true
        }
      }
    },
    "/msapi/sales/shopping-cart-api/v1/carts/{cart-id}/items/count": {
      "get": {
        "tags": [
          "Cart Operations"
        ],
        "summary": "Shopping Cart Items Count",
        "description": "This operation retrieves a ShoppingCart (ProductOrder) items count by the given cart id.",
        "operationId": "CartItemsCount",
        "parameters": [
          {
            "$ref": "#/components/parameters/cartId"
          },
          {
            "$ref": "#/components/parameters/idpctxuuid"
          },
          {
            "$ref": "#/components/parameters/mockscenario"
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/EntityCountGenericResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      },
      "parameters": []
    },
    "/msapi/sales/shopping-cart-api/v1/carts/{cart-id}/items/{item-id}": {
      "put": {
        "tags": [
          "Cart Operations"
        ],
        "summary": "Update Cart Item",
        "description": "This operation updates the shopping cart item with the given details",
        "operationId": "UpdateItemToCart",
        "parameters": [
          {
            "$ref": "#/components/parameters/cartId"
          },
          {
            "$ref": "#/components/parameters/idpctxuuid"
          },
          {
            "name": "item-id",
            "in": "path",
            "description": "Identifier of the Item",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/mockscenario"
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/ProductOrder"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "The ProductOrder to be created",
          "content": {
            "application/json;charset=utf-8": {
              "schema": {
                "$ref": "#/components/schemas/ProductOrderItem_InputRequest"
              }
            }
          },
          "required": true
        }
      },
      "delete": {
        "tags": [
          "Cart Operations"
        ],
        "summary": "Deletes Cart Item",
        "description": "This operation deletes the provided item from the cart.",
        "operationId": "DeleteCartItem",
        "parameters": [
          {
            "$ref": "#/components/parameters/cartId"
          },
          {
            "$ref": "#/components/parameters/idpctxuuid"
          },
          {
            "name": "item-id",
            "in": "path",
            "description": "Identifier of the OrderItem",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/mockscenario"
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/ProductOrder"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/msapi/sales/shopping-cart-api/v1/carts/{cart-id}/channel": {
      "patch": {
        "tags": [
          "Cart Operations"
        ],
        "summary": "Patch Channel information",
        "description": "This operation updates the ShoppingCart (ProductOrder) entity's channel information with provided details.",
        "operationId": "patchChannel",
        "parameters": [
          {
            "$ref": "#/components/parameters/cartId"
          },
          {
            "$ref": "#/components/parameters/idpctxuuid"
          },
          {
            "$ref": "#/components/parameters/mockscenario"
          }
        ],
        "requestBody": {
          "description": "Update/Add channel information to the shopping cart",
          "content": {
            "application/json;charset=utf-8": {
              "schema": {
                "$ref": "#/components/schemas/RelatedChannel"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProductOrder"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/msapi/sales/shopping-cart-api/v1/carts/{cart-id}/coupons": {
      "post": {
        "tags": [
          "Cart Operations"
        ],
        "summary": "Add Coupons",
        "description": "This API endpoint adds coupons to the shopping cart",
        "operationId": "AddCoupons",
        "parameters": [
          {
            "$ref": "#/components/parameters/cartId"
          },
          {
            "$ref": "#/components/parameters/idpctxuuid"
          },
          {
            "$ref": "#/components/parameters/mockscenario"
          }
        ],
        "requestBody": {
          "description": "The coupons to be added to the cart",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AddCoupons_RequestBody"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProductOrder"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    },
    "/msapi/sales/shopping-cart/v1/carts/{cart-id}/coupons/{coupon_id}": {
      "delete": {
        "tags": [
          "Cart Operations"
        ],
        "summary": "Deletes Coupon",
        "description": "This operation deletes a coupon from the cart",
        "operationId": "DeleteCoupon",
        "parameters": [
          {
            "$ref": "#/components/parameters/cartId"
          },
          {
            "$ref": "#/components/parameters/idpctxuuid"
          },
          {
            "name": "coupon_id",
            "in": "path",
            "description": "Identifier of the Coupon",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "$ref": "#/components/parameters/mockscenario"
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/ProductOrder"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                }
              }
            }
          }
        }
      }
    }
  },
  "tags": [
    {
      "name": "Cart Operations",
      "description": "APIs that aid in cart related operations."
    }
  ],
  "components": {
    "schemas": {
      "KeyValueObject": {
        "description": "ATT++::Describes a given characteristic of an object or entity through a name/value pair.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "name",
          "value"
        ],
        "properties": {
          "@baseType": {
            "description": "When sub-classing, this defines the super-class",
            "type": "string"
          },
          "@referredType": {
            "description": "The actual type of the target instance when needed for disambiguation.",
            "type": "string"
          },
          "@schemaLocation": {
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "type": "string",
            "format": "uri"
          },
          "@type": {
            "description": "When sub-classing, this defines the sub-class Extensible name",
            "type": "string"
          },
          "href": {
            "description": "Hyperlink reference",
            "type": "string",
            "format": "uri"
          },
          "id": {
            "description": "unique identifier",
            "type": "string"
          },
          "name": {
            "description": "Name of the characteristic",
            "type": "string"
          },
          "value": {
            "description": "Value of the characteristic",
            "type": "string"
          },
          "valueType": {
            "description": "Data type of the value of the characteristic",
            "type": "string"
          }
        }
      },
      "Money": {
        "description": "A base / value business entity used to represent money",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "unit": {
            "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
            "type": "string"
          },
          "value": {
            "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
            "type": "number",
            "format": "float"
          }
        }
      },
      "CouponsRequest": {
        "title": "CouponsRequest",
        "type": "object",
        "description": "ATT++::Coupons API Request Entity",
        "properties": {
          "code": {
            "type": "string",
            "description": "Coupon Code"
          },
          "type": {
            "type": "string",
            "description": "Coupon Type"
          }
        },
        "required": [
          "code"
        ]
      },
      "AddCoupons_RequestBody": {
        "title": "AddCoupons_RequestBody",
        "type": "object",
        "description": "ATT++::Add Coupons to the shooping cart",
        "properties": {
          "coupons": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CouponsRequest"
            }
          }
        },
        "required": [
          "coupons"
        ]
      },
      "PromotionAction": {
        "required": [
          "actionType"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the promotion action\n"
          },
          "name": {
            "type": "string",
            "description": "Name of the promotion action\n"
          },
          "description": {
            "type": "string",
            "description": "Description of the promotion action\n"
          },
          "actionType": {
            "type": "string",
            "description": "Type of the action. A valid value is *Price Alteration*, *Product Offering*.\n"
          },
          "actionValue": {
            "type": "integer",
            "description": "Value of the action. If the *actionType* is Price Alteration, the action value is '1'.\n"
          },
          "promotionPriceAlteration": {
            "$ref": "#/components/schemas/ProductOfferingPriceRef"
          },
          "productOfferingBenefit": {
            "type": "array",
            "description": "Reference to a product offering usaed as a free offer benefit by the promotion\n",
            "items": {
              "$ref": "#/components/schemas/ProductOfferingBenefit"
            }
          },
          "durationPolicy": {
            "$ref": "#/components/schemas/DurationPolicy"
          },
          "validFor": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "actionTerminationPolicy": {
            "type": "string",
            "description": "Defines the termination policy upon duration end date\n"
          },
          "relatedTriggerItem": {
            "type": "array",
            "description": "An optional relation from a specific promotion action to a specific trigger item.  \n",
            "items": {
              "$ref": "#/components/schemas/RelatedTriggerItem"
            }
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "TMF++::Action of the promotion. Customers can receive benefits associated with the action if the conditions in the promotion pattern are fulfilled.\n"
      },
      "DurationPolicy": {
        "type": "object",
        "properties": {
          "duration": {
            "$ref": "#/components/schemas/Quantity"
          },
          "startDatePolicy": {
            "type": "string",
            "description": "Start date of the policy, from which the duration is calculated\n"
          },
          "endDatePolicy": {
            "type": "string",
            "description": "End date of the policy, until which the duration is calculated\n"
          },
          "effectiveFor": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "terminationPolicy": {
            "type": "string",
            "description": "Defines the termination policy upon duration end date\n"
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "TMF++::Policy for calculting a limited duration for any entity\n"
      },
      "RelatedTriggerItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "The unique ID of the related trigger item\n"
          },
          "role": {
            "type": "string",
            "description": "The role of the related trigger item\n"
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "TMF++::A relation to a specific trigger item. For example, for promotion action with actionType = productOffering, this relation indicates a relevant trigger item to which the action should be related. The type of the relation is specified in 'role' field\n"
      },
      "ProductOfferingBenefit": {
        "type": "object",
        "properties": {
          "productOfferingId": {
            "type": "string",
            "description": "the id of the product offering granted as a benefit\n"
          },
          "promotionPriceAlteration": {
            "type": "array",
            "description": "referecne to price entity representing the actual monetary discount\n",
            "items": {
              "$ref": "#/components/schemas/ProductOfferingPriceRef"
            }
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "TMF++::Reference to a product offering used as a free offer benefit by the promotion"
      },
      "AddItemsToCart_RequestBody": {
        "title": "ProductOrderItem_RequestBody",
        "type": "object",
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "relatedParty": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedParty"
            }
          },
          "promotions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PromotionRequest"
            }
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOrderItem_InputRequest"
            }
          }
        },
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items."
      },
      "SaveCart_RequestBody": {
        "title": "SaveCart_RequestBody",
        "type": "object",
        "properties": {
          "email": {
            "type": "string",
            "description": "Customer's Email Address"
          }
        },
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items."
      },
      "CartUpdateRequest": {
        "title": "CartUpdateRequest",
        "type": "object",
        "properties": {
          "state": {
            "type": "string",
            "description": "state of the shoppingCart"
          },
          "extensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          }
        },
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items."
      },
      "ProductOrderItem_InputRequest": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Identifier of the product offer"
          },
          "itemType": {
            "type": "string",
            "description": "Type of the product offer"
          },
          "offerId": {
            "type": "string",
            "description": "Identifier of the product offer"
          },
          "requestedCompletionDate": {
            "type": "string",
            "description": "Requested delivery date from the requestor perspective.",
            "format": "date-time"
          },
          "variantId": {
            "type": "string",
            "description": "Variant Group Id of the product offer. Also known as SKU."
          },
          "groupOptionId": {
            "type": "string",
            "description": "Reference to the product offering group option from the product catalog"
          },
          "quantity": {
            "type": "integer",
            "description": "Quantity ordered"
          },
          "action": {
            "$ref": "#/components/schemas/OrderItemActionType"
          },
          "state": {
            "$ref": "#/components/schemas/ProductOrderItemStateType"
          },
          "billingAccount": {
            "$ref": "#/components/schemas/BillingAccountRef"
          },
          "itemTerm": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderTerm"
            }
          },
          "product": {
            "$ref": "#/components/schemas/ProductRefOrValue"
          },
          "itemRelationship": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderItemRelationship"
            }
          },
          "rootBundleProductOfferId": {
            "type": "string",
            "description": "The ID of the root bundle item.\n"
          },
          "rootBundleProductOrderItemId": {
            "type": "string",
            "description": "The ID of the root bundle order item.\n"
          },
          "rootOrderItemId": {
            "type": "string",
            "description": "The ID of the root order item.\n"
          },
          "itemTxnType": {
            "type": "string",
            "enum": [
              "ACC",
              "AL",
              "ALF",
              "AMEND",
              "CANCEL",
              "CHANGE",
              "DEVICE",
              "DISCONNECT",
              "NEW",
              "NO_CHANGE",
              "PARK",
              "PRICE_CHANGE",
              "REFERENCE",
              "REWARDS/GIFT",
              "UNIFY",
              "UNLOCK",
              "UP",
              "WINBACK",
              "WINOVER"
            ]
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOrderItem_InputRequest"
            }
          },
          "characteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "actionReason": {
            "$ref": "#/components/schemas/ActionReason"
          }
        }
      },
      "SearchCartEntity": {
        "title": "SearchCartEntity",
        "type": "object",
        "additionalProperties": true
      },
      "EntityCountGenericResponse": {
        "title": "EntityIDGenericResponse",
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "count": {
            "type": "integer"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        }
      },
      "QueryCartResponse": {
        "type": "array",
        "items": {
          "$ref": "#/components/schemas/SearchCartEntity"
        }
      },
      "MicroCartsResponse": {
        "properties": {
          "userId": {
            "type": "string",
            "description": "user profile id"
          },
          "carts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOrder"
            }
          },
          "cart-conflict-info": {
            "type": "object",
            "additionalProperties": true
          }
        }
      },
      "InitializeCart_RequestBody": {
        "title": "ProductOrderItem_RequestBody",
        "type": "object",
        "properties": {
          "cartType": {
            "type": "string",
            "description": "CartType"
          },
          "id": {
            "type": "string",
            "description": "id"
          },
          "extensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          },
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "relatedParty": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedParty"
            }
          }
        },
        "description": "ATT++::Initialize Cart Input Request Body"
      },
      "Configuration": {
        "type": "object",
        "properties": {
          "status": {
            "type": "string",
            "description": "Type of the component\n"
          },
          "type": {
            "type": "string",
            "description": "Type of the component\n"
          },
          "subtype": {
            "type": "string",
            "description": "Sub Type of the Component\n"
          },
          "properties": {
            "type": "array",
            "description": "Name/value pair\n",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          },
          "required": {
            "type": "boolean",
            "description": "Component required for Product Order Configuration\n"
          },
          "postOrderConfigurable": {
            "type": "boolean",
            "description": "Component Post Order Product Order Configuration\n"
          },
          "readOnly": {
            "type": "boolean",
            "description": "Component allowed for configuration or not.\n"
          },
          "resource": {
            "type": "array",
            "description": "Resource that is associated with the message\n",
            "items": {
              "$ref": "#/components/schemas/RelatedResource"
            }
          }
        },
        "description": "ATT++::Message associated with the validation failure\n"
      },
      "Promotion_RequestBody": {
        "title": "Promotion_RequestBody",
        "type": "object",
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items.",
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "productConfiguration": {
            "$ref": "#/components/schemas/ProductConfiguration"
          },
          "promotions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PromotionRequest"
            }
          },
          "billingAccount": {
            "$ref": "#/components/schemas/BillingAccountRef"
          },
          "extensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          }
        },
        "required": [
          "channel",
          "promotions"
        ]
      },
      "PromotionRequest": {
        "title": "PromotionRequest",
        "type": "object",
        "description": "ATT++::Promotion API Request Entity",
        "properties": {
          "immediatePromotionCharacteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ContextCharacteristic"
            }
          },
          "id": {
            "type": "string",
            "description": "Promotion Id"
          },
          "type": {
            "type": "string",
            "description": "Promotion Type.",
            "enum": [
              "manualpromotion"
            ]
          },
          "status": {
            "type": "string",
            "description": "Promotion Status"
          },
          "productPromotion": {
            "$ref": "#/components/schemas/ProductPromotionRef"
          },
          "reason": {
            "$ref": "#/components/schemas/Reason"
          },
          "promotion": {
            "$ref": "#/components/schemas/PromotionRef"
          },
          "triggerItem": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TriggerItem"
            }
          },
          "benefitItem": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BenefitItem"
            }
          },
          "extensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          }
        },
        "required": [
          "id",
          "type"
        ]
      },
      "ProductConfiguration": {
        "title": "ProductConfiguration",
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Product Id"
          }
        }
      },
      "Reason": {
        "title": "Reason",
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Reason Name"
          },
          "reasonText": {
            "type": "string",
            "description": "Reason Text"
          }
        },
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items."
      },
      "Encryption_Request": {
        "title": "Encryption Request",
        "type": "object",
        "properties": {
          "referralChannel": {
            "type": "string",
            "description": "Channel name"
          },
          "referralAgentId": {
            "type": "string",
            "description": "Rep Id"
          },
          "referralStoreId": {
            "type": "string",
            "description": "store Id"
          }
        },
        "description": "Request contents which need to be encrypted."
      },
      "Encryption_Response": {
        "title": "Encryption Response",
        "type": "object",
        "properties": {
          "referralToken": {
            "type": "string",
            "description": "Encrypted String"
          }
        },
        "description": "Encrypted response of the given content"
      },
      "ProductOrderItem_Extensions": {
        "title": "Extensions for ProductOrderItem",
        "type": "object",
        "properties": {
          "@baseType": {
            "description": "When sub-classing, this defines the super-class",
            "type": "string"
          },
          "@referredType": {
            "description": "The actual type of the target instance when needed for disambiguation.",
            "type": "string"
          },
          "@schemaLocation": {
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri",
            "type": "string"
          },
          "@type": {
            "description": "When sub-classing, this defines the sub-class Extensible name",
            "type": "string"
          },
          "href": {
            "description": "Hyperlink reference",
            "format": "uri",
            "type": "string"
          },
          "id": {
            "description": "unique identifier",
            "type": "string"
          },
          "initDeliveryByFromDate": {
            "format": "date-time",
            "type": "string"
          },
          "initDeliveryByToDate": {
            "format": "date-time",
            "type": "string"
          },
          "initPromiseFromDate": {
            "format": "date-time",
            "type": "string"
          },
          "initPromiseToDate": {
            "format": "date-time",
            "type": "string"
          },
          "lineSalesRep": {
            "type": "string"
          },
          "substitutionAction": {
            "type": "string"
          },
          "name": {
            "description": "Name of the related entity.",
            "type": "string"
          }
        }
      },
      "ActionReason": {
        "type": "object",
        "properties": {
          "action": {
            "description": "Name of the action performed on the instance of the product offering\n",
            "type": "string"
          },
          "name": {
            "description": "Name of the modification reason\n",
            "type": "string"
          },
          "reasonText": {
            "description": "Text of the modification reason. This property is populated if the type of the modification reason requires an input of a free text\n",
            "type": "string"
          }
        }
      },
      "AgreementItemRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "agreementItemId": {
            "type": "string",
            "description": "Identifier of the agreement"
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "Agreement reference. An agreement represents a contract or arrangement, either written or verbal and sometimes enforceable by law, such as a service level agreement or a customer price agreement. An agreement involves a number of other business entities, such as products, services, and resources and/or their specifications."
      },
      "AgreementRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the agreement"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          },
          "extensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          }
        },
        "description": "Agreement reference. An agreement represents a contract or arrangement, either written or verbal and sometimes enforceable by law, such as a service level agreement or a customer price agreement. An agreement involves a number of other business entities, such as products, services, and resources and/or their specifications.",
        "title": ""
      },
      "AppointmentRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "The identifier of the referred appointment"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "The reference of the appointment"
          },
          "description": {
            "type": "string",
            "description": "An explanatory text regarding the appointment made with a party"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation"
          }
        },
        "description": "Refers an appointment, such as a Customer presentation or internal meeting or site visit"
      },
      "BillingAccountRef": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the billing account"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the billing account"
          },
          "name": {
            "type": "string",
            "description": "Name of the billing account"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          },
          "characteristic": {
            "type": "array",
            "description": "a strucuture used to describe a characteristics of billing account",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          },
          "ratingType": {
            "type": "string",
            "description": "Indicates whether the account follows a specific payment option such as prepaid or postpaid"
          }
        },
        "description": "BillingAccount reference. A BillingAccount is a detailed description of a bill structure."
      },
      "Characteristic": {
        "required": [
          "name",
          "value"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of the characteristic"
          },
          "valueType": {
            "type": "string",
            "description": "Data type of the value of the characteristic"
          },
          "value": {
            "type": "string",
            "description": "Value of the characteristic"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "Describes a given characteristic of an object or entity through a name/value pair."
      },
      "FutureBillResponse": {
        "type": "object",
        "properties": {
          "futurebills": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/FutureBillEstimate"
            }
          }
        }
      },
      "FutureBillEstimate": {
        "type": "object",
        "properties": {
          "annualCost": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "additionalCharges": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "bundlePrice": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "description": {
            "type": "string",
            "description": "Description of the promotionDuration"
          },
          "discounts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Discount"
            }
          },
          "installmentCharge": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "installmentChannelCharge": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "monthTitleLength": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "oneTimeCost": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "sortOrder": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "subTotal": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "totalCount": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          }
        }
      },
      "Discount": {
        "type": "object",
        "properties": {
          "price": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "description": {
            "type": "string",
            "description": "Description of the discount"
          }
        }
      },
      "Note": {
        "required": [
          "text"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Identifier of the note within its containing entity (may or may not be globally unique, depending on provider implementation)"
          },
          "author": {
            "type": "string",
            "description": "Author of the note"
          },
          "date": {
            "type": "string",
            "description": "Date of the note",
            "format": "date-time"
          },
          "text": {
            "type": "string",
            "description": "Text of the note"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "Extra information about a given entity"
      },
      "OrderItemActionType": {
        "type": "string",
        "description": "action to be performed on the product",
        "enum": [
          "Metadata Change",
          "activate",
          "add",
          "add;port in",
          "add;swap",
          "agreement change",
          "amend",
          "backdated next item",
          "backdated previous item",
          "bundle",
          "bundle;relation change",
          "bundle;relation change;suspend",
          "bundle;unbundle",
          "bundle;unbundle;relation change",
          "cancel",
          "change",
          "change billing account",
          "change billing account;change",
          "change hierarchy",
          "change own",
          "change ownership from",
          "change ownership to",
          "change ownership to;bundle;relation change",
          "change ownership to;change",
          "change ownership to;change billing account",
          "change ownership to;change billing account;change related party",
          "change ownership to;change related party",
          "change ownership to;change;change billing account",
          "change ownership to;relation change",
          "change ownership to;relation change;replace offer from",
          "change ownership to;replace offer from",
          "change ownership to;terminate",
          "change ownership to;unbundle;relation change",
          "change place",
          "change related party",
          "change resource",
          "change resource;change",
          "change term",
          "change term;change",
          "change;agreement change",
          "change;bundle",
          "change;bundle;unbundle;relation change",
          "change;change resource",
          "change;related change",
          "change;relation change",
          "change;suspend",
          "child change",
          "child change;suspend",
          "child change;terminate",
          "contract change",
          "contract change;Metadata Change",
          "contract change;change",
          "contract change;change place",
          "contract change;change related party",
          "contract change;change term",
          "contract change;price change",
          "contract change;price change;terminate",
          "contract change;promotion change",
          "contract change;relation change",
          "contract change;terminate",
          "delete",
          "modify",
          "move from",
          "move from;terminate",
          "move to",
          "noChange",
          "port in",
          "port out",
          "port out;terminate",
          "preActivate",
          "price change",
          "promotion change",
          "promotion change;child change",
          "promotion change;child change;suspend",
          "promotion change;child change;terminate",
          "promotion change;terminate",
          "promotion change;unbundle;relation change",
          "reestablish",
          "reestablish;change",
          "reestablish;change place",
          "register",
          "related change",
          "related change;relation change",
          "relation change",
          "relation change;change",
          "relation change;price change",
          "remove",
          "replace",
          "replace offer from",
          "replace offer from;agreement change",
          "replace offer from;child change",
          "replace offer from;contract change",
          "replace offer from;reestablish",
          "replace offer keep from",
          "replace offer to",
          "replace offer to;agreement change",
          "replace offer to;change",
          "replace offer to;change billing account",
          "replace offer to;change related party",
          "replace offer to;change related party;change",
          "replace offer to;change term",
          "replace offer to;contract change",
          "replace offer to;contract change;change term",
          "replace offer to;contract change;price change",
          "replace offer to;contract change;relation change",
          "replace offer to;relation change",
          "resume",
          "resume from cancel",
          "resume;change",
          "resume;change billing account",
          "root virtual move",
          "suspend",
          "suspend-obsolete",
          "suspend;change",
          "suspend;change;change resource",
          "suspend;child change",
          "suspend;related change",
          "suspend;relation change",
          "suspend;unbundle;relation change",
          "swap",
          "swap;add",
          "terminate",
          "terminate;agreement change",
          "terminate;change",
          "terminate;change related party",
          "unbundle",
          "unbundle;bundle;relation change",
          "unbundle;relation change",
          "unbundle;relation change;suspend",
          "unify"
        ]
      },
      "OrderItemRelationship": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "relationshipType": {
            "type": "string",
            "description": "The type of order item relationship"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        }
      },
      "OrderPrice": {
        "type": "object",
        "properties": {
          "description": {
            "type": "string",
            "description": "A narrative that explains in detail the semantics of this order item price."
          },
          "name": {
            "type": "string",
            "description": "A short descriptive name such as \"Subscription price\"."
          },
          "priceType": {
            "type": "string",
            "description": "A category that describes the price, such as recurring, discount, allowance, penalty, and so forth"
          },
          "recurringChargePeriod": {
            "type": "string",
            "description": "Could be month, week..."
          },
          "unitOfMeasure": {
            "type": "string",
            "description": "Could be minutes, GB..."
          },
          "billingAccount": {
            "$ref": "#/components/schemas/BillingAccountRef"
          },
          "price": {
            "$ref": "#/components/schemas/Price"
          },
          "priceAlteration": {
            "type": "array",
            "description": "a strucuture used to describe a price alteration",
            "items": {
              "$ref": "#/components/schemas/PriceAlteration"
            }
          },
          "productOfferingPrice": {
            "$ref": "#/components/schemas/ProductOfferingPriceRef"
          },
          "recurringChargePeriodLength": {
            "type": "integer",
            "description": "TMF++::The period length of the recurring charge\n"
          },
          "finalPrice": {
            "$ref": "#/components/schemas/Price"
          },
          "standalonePrice": {
            "$ref": "#/components/schemas/Price"
          },
          "immediatePayOption": {
            "$ref": "#/components/schemas/ImmediatePayOption"
          },
          "installmentOption": {
            "$ref": "#/components/schemas/InstallmentOption"
          },
          "orderPriceRelationship": {
            "$ref": "#/components/schemas/OrderPriceRelationship"
          },
          "taxIncluded": {
            "type": "string",
            "description": "TMF++::Indicates whether the price is defined in CatalogONE as including tax or excluding tax. Valid values are Excluded and Included.\n"
          },
          "priceOverrideOption": {
            "$ref": "#/components/schemas/PriceOverrideOption"
          },
          "role": {
            "type": "string",
            "description": "TMF++::The role of the price, for example, price, bundle price alteration, and so on\n"
          },
          "payment": {
            "type": "array",
            "description": "TMF++::Payment performed for a specific order price\n",
            "items": {
              "$ref": "#/components/schemas/PaymentRef"
            }
          },
          "prorationFactor": {
            "type": "number",
            "description": "TMF++::Proration factor used to prorate this amount\n",
            "format": "double"
          },
          "periodCoverage": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "relatedAppliedBillingRate": {
            "$ref": "#/components/schemas/RelatedAppliedBillingRateRef"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "An amount, usually of money, that represents the actual price paid by the Customer for this item or this order"
      },
      "ImmediatePayOption": {
        "type": "object",
        "properties": {
          "payOption": {
            "type": "string",
            "description": "The immediate pay option:\n<ul>\n<li> *MUST* - The price must be paid immediately\n<li> *MAY* - The price might be paid immediately\n</ul>\n"
          },
          "payAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "minPayAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "payImmediately": {
            "type": "boolean",
            "description": "Indicates whether the prcie included in the immediate payment.\nIf the pay option is set to MUST, this indication is set to true.\nIf the pay option is set to MAY, this indication is set to either true or false based on a customer decission.\n"
          }
        },
        "description": "TMF++::The payment options for the product offering price payment. The payment options can indicate whether the price must or might be paid immediatelly.\nIn addition, the payment options include an indication whether the price should be included in the immediate payment or not.\nIf the payment option is set to must, this indication is set to true. Otherwise, if the payment option is set to might, the indication is set to either\ntrue or false based on a customer decission.\n"
      },
      "RelatedAppliedBillingRateRef": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the applied billing rate\n"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Hypertext reference to the applied billing rate\n"
          },
          "@referredType": {
            "type": "string",
            "description": "Type of the applied billing rate, for example, *AppliedCustomerBillingOneTimeCharge* or *AppliedCustomerBillingRecurringCharge*    \n"
          }
        },
        "description": "TMF++::Relation to another applied billing rate\n"
      },
      "PaymentAmount": {
        "type": "object",
        "properties": {
          "amount": {
            "$ref": "#/components/schemas/Money"
          },
          "percentage": {
            "type": "number",
            "description": "Represents the percentage that the amount represents out of the price\n",
            "format": "float"
          },
          "taxIncludedAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "dutyFreeAmount": {
            "$ref": "#/components/schemas/Money"
          }
        },
        "description": "TMF++::Represents a payment amount\n"
      },
      "OrderPriceRelationship": {
        "required": [
          "id",
          "type"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the related *OrderPrice* entity\n"
          },
          "type": {
            "type": "string",
            "description": "Type of the relationship\n"
          }
        },
        "description": "TMF++::Relationship between the *OrderPrice* entities\n"
      },
      "PriceOverrideOption": {
        "type": "object",
        "properties": {
          "overrideType": {
            "type": "string",
            "description": "Indicates which override option the CSR can apply. Valid Values &#58; waive, absolute, increase, decrease\n"
          },
          "overrideValue": {
            "$ref": "#/components/schemas/PaymentAmount"
          },
          "validFor": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "relatedParty": {
            "$ref": "#/components/schemas/RelatedParty"
          },
          "reason": {
            "$ref": "#/components/schemas/ModifyReason"
          }
        },
        "description": "TMF++::The waive and override data of a price\n"
      },
      "InstallmentOption": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "The identifier of the installment option\n"
          },
          "name": {
            "description": "Name of the related entity.",
            "type": "string"
          },
          "@type": {
            "description": "When sub-classing, this defines the sub-class Extensible name",
            "type": "string"
          },
          "installmentOption": {
            "type": "string",
            "description": "Indicates if installment options are optional / mandatory for the price\n",
            "readOnly": true
          },
          "numberOfInstallments": {
            "type": "integer",
            "description": "The number of installments\n"
          },
          "downPayment": {
            "$ref": "#/components/schemas/PaymentAmount"
          }
        },
        "description": "TMF++::Represents an installment option for an  price\n"
      },
      "OrderTerm": {
        "type": "object",
        "properties": {
          "description": {
            "type": "string",
            "description": "Description of the productOrderTerm"
          },
          "name": {
            "type": "string",
            "description": "Name of the productOrderTerm"
          },
          "duration": {
            "$ref": "#/components/schemas/Quantity"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "Description of a productTerm linked to this orderItem. This represent a commitment with a duration"
      },
      "PaymentRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "A name for the payment"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          },
          "characteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Characteristic"
            }
          }
        },
        "description": "If an immediate payment has been done at the product order submission, the payment information are captured and stored (as a reference) in the order."
      },
      "Price": {
        "type": "object",
        "properties": {
          "percentage": {
            "type": "number",
            "description": "Percentage to apply for ProdOfferPriceAlteration",
            "format": "float"
          },
          "taxRate": {
            "type": "number",
            "description": "Tax rate",
            "format": "float"
          },
          "dutyFreeAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "taxIncludedAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "marketingAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "taxAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "priceReduction": {
            "$ref": "#/components/schemas/Money"
          },
          "priceOverride": {
            "$ref": "#/components/schemas/Money"
          },
          "priceRecordId": {
            "type": "string",
            "description": "The unique identifier of the price in the pricing domain.\n"
          },
          "chargeType": {
            "type": "string",
            "description": "The charge type that the price represents. The supported values are&#58;<ul><li>debit<li>credit</ul>\n"
          },
          "impactingPriceParameter": {
            "type": "array",
            "description": "The parameters that impact the price\n",
            "items": {
              "$ref": "#/components/schemas/PriceParam"
            }
          },
          "appliedTax": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AppliedTax"
            }
          },
          "rateValidity": {
            "$ref": "#/components/schemas/TimePeriod"
          }
        },
        "description": "Provides all amounts (tax included, duty free, tax rate), used currency and percentage to apply for Price Alteration."
      },
      "PriceParam": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "The type of the parameter\n"
          },
          "name": {
            "type": "string",
            "description": "The name of the parameter\n"
          },
          "value": {
            "type": "string",
            "description": "The value of the parameter\n"
          }
        },
        "description": "TMF++::The parameters that may impact/impact the price\n"
      },
      "AppliedTax": {
        "required": [
          "taxAmount",
          "taxDefinition",
          "taxableAmount"
        ],
        "type": "object",
        "properties": {
          "taxDefinition": {
            "$ref": "#/components/schemas/TaxDefinition"
          },
          "taxAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "taxableAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "exemptAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "periodCoverage": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "characteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Characteristic"
            }
          },
          "extensions": {
            "$ref": "#/components/schemas/TaxExtensions"
          }
        },
        "description": "TMF++::Calculated tax response"
      },
      "TaxExtensions": {
        "type": "object",
        "properties": {
          "Tax": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Tax"
            }
          }
        }
      },
      "Tax": {
        "type": "object",
        "properties": {
          "key": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        }
      },
      "TaxDefinition": {
        "required": [
          "exemptionType",
          "isExemption",
          "taxJurisdiction",
          "taxRate",
          "taxType",
          "vaidFor"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "The display name of tax type"
          },
          "taxRate": {
            "type": "number",
            "description": "Rate of tax",
            "format": "float"
          },
          "taxType": {
            "type": "string",
            "description": "VAT/GST etc"
          },
          "category": {
            "type": "string",
            "description": "Luxury/Standard etc"
          },
          "isExemption": {
            "type": "boolean",
            "description": "Where the tax definition has exemption defined on it"
          },
          "exemptionType": {
            "type": "string",
            "description": "Exemption type. Valid Values - Customer, Service, Jurisdiction, None."
          },
          "vaidFor": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "taxJurisdiction": {
            "$ref": "#/components/schemas/TaxJurisdiction"
          }
        },
        "description": "TMF++::Tax definition"
      },
      "TaxJurisdiction": {
        "required": [
          "level",
          "name"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "level": {
            "type": "string"
          },
          "id": {
            "type": "string"
          }
        },
        "description": "TMF++::Tax Juristiction"
      },
      "PriceAlteration": {
        "required": [
          "price",
          "priceType"
        ],
        "type": "object",
        "properties": {
          "applicationDuration": {
            "type": "integer",
            "description": "Duration during which the alteration applies on the order item price (for instance 2 months free of charge for the recurring charge)"
          },
          "description": {
            "type": "string",
            "description": "A narrative that explains in detail the semantics of this order item price alteration"
          },
          "name": {
            "type": "string",
            "description": "Name of the order item price alteration"
          },
          "priceType": {
            "type": "string",
            "description": "A category that describes the price such as recurring, one time and usage."
          },
          "priority": {
            "type": "integer",
            "description": "Priority level for applying this alteration among all the defined alterations on the order item price"
          },
          "recurringChargePeriod": {
            "type": "string",
            "description": "Could be month, week..."
          },
          "unitOfMeasure": {
            "type": "string",
            "description": "Could be minutes, GB..."
          },
          "price": {
            "$ref": "#/components/schemas/Price"
          },
          "productOfferingPrice": {
            "$ref": "#/components/schemas/ProductOfferingPriceRef"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "recurringChargePeriodLength": {
            "type": "integer",
            "description": "TMF++::The period length of the recurring charge\n"
          },
          "alterationType": {
            "type": "string",
            "description": "TMF++::Type of the alteration\n"
          },
          "promotionActionId": {
            "type": "string",
            "description": "TMF++::Unique identifier of the promotion action triggering this price alteration\n"
          },
          "immediatePromotionId": {
            "type": "string",
            "description": "TMF++::Unique identifier of the promotion instance\n"
          },
          "alterationProductOfferingPriceId": {
            "type": "string",
            "description": "TMF++::Unique identifier of the product offering price on behalf of which the price alteration was given\n"
          },
          "alterationBundleProductOfferingId": {
            "type": "string",
            "description": "TMF++::Unique identifier of the bundle product offering on behalf of which the price alteration was given\n"
          },
          "alterationApplyOrder": {
            "type": "integer",
            "description": "TMF++::Order of the alteration price appliance\n"
          },
          "chargeType": {
            "type": "string",
            "description": "TMF++::Charge type represented by the price alteration. The supported values are&#58;<ul><li>debit<li>discount<li>credit</ul> \n"
          },
          "prorationFactor": {
            "type": "number",
            "description": "TMF++::Proration factor used to prorate this amount\n",
            "format": "double"
          },
          "periodCoverage": {
            "$ref": "#/components/schemas/TimePeriod"
          }
        },
        "description": "Is an amount, usually of money, that modifies the price charged for an order item."
      },
      "ProductOfferingPriceRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "priceType": {
            "type": "string",
            "description": "Price offered based on the type"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "ProductPriceOffering reference. An amount, usually of money, that is asked for or allowed when a ProductOffering is bought, rented, or leased"
      },
      "ProductOfferingQualificationItemRef": {
        "required": [
          "id",
          "productOfferingQualificationId"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Id of an item of a product offering qualification"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "productOfferingQualificationHref": {
            "type": "string",
            "description": "Reference of the related entity."
          },
          "productOfferingQualificationId": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "productOfferingQualificationName": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "It's a productOfferingQualification item that has been executed previously."
      },
      "ProductOfferingQualificationRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "It's a productOfferingQualification that has been executed previously"
      },
      "ProductOfferingRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "productOfferingType": {
            "type": "string",
            "description": "TMF++::Type of the product offering\n"
          },
          "productOfferingTypeGroup": {
            "type": "string",
            "description": "TMF++::Type of the product offering type group\n"
          },
          "productOfferingGroup": {
            "type": "string",
            "description": "TMF++::Type of the product offering group\n"
          },
          "primary": {
            "type": "boolean",
            "description": "TMF++::Indicates whether the product offering has a business significance for the customer&#58;\n- It is reflected as a product for the customer and it is actionable - the customer can perform ordering actions on it\n- An action performed on a primary offer can impact the actions available for its bundled or dependent offers (for example, when ownership of a primary offer is changed some internal offers cannot be added or removed)\n"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "ProductOffering reference. A product offering represents entities that are orderable from the provider of the catalog, this resource includes pricing information."
      },
      "ProductOrder": {
        "type": "object",
        "description": "A Product Order is a type of order which  can  be used to place an order between a customer and a service provider or between a service provider and a partner and vice versa,",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID created on repository side (OM system)"
          },
          "version": {
            "type": "integer",
            "description": "Version number for the Shopping Cart"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Hyperlink to access the order"
          },
          "coupon": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ImmediatePromotion"
            }
          },
          "cancellationDate": {
            "type": "string",
            "description": "Date when the order is cancelled. This is used when order is cancelled. ",
            "format": "date-time"
          },
          "cancellationReason": {
            "type": "string",
            "description": "Reason why the order is cancelled. This is used when order is cancelled. "
          },
          "category": {
            "type": "string",
            "description": "Used to categorize the order from a business perspective that can be useful for the OM system (e.g. \"enterprise\", \"residential\", ...)"
          },
          "completionDate": {
            "type": "string",
            "description": "Date when the order was completed",
            "format": "date-time"
          },
          "description": {
            "type": "string",
            "description": "Description of the product order"
          },
          "expectedCompletionDate": {
            "type": "string",
            "description": "Expected delivery date amended by the provider",
            "format": "date-time"
          },
          "externalId": {
            "type": "string",
            "description": "ID given by the consumer and only understandable by him (to facilitate his searches afterwards)"
          },
          "notificationContact": {
            "type": "string",
            "description": "Contact attached to the order to send back information regarding this order"
          },
          "orderDate": {
            "type": "string",
            "description": "Date when the order was created",
            "format": "date-time"
          },
          "lastUpdate": {
            "type": "string",
            "description": "TMF++::Date on which the product order was created\n",
            "format": "date-time",
            "readOnly": true
          },
          "orderPriceDate": {
            "type": "string",
            "description": "TMF++::Date on which the product order price was calculated\n",
            "format": "date-time",
            "readOnly": true
          },
          "priority": {
            "type": "string",
            "description": "A way that can be used by consumers to prioritize orders in OM system (from 0 to 4 : 0 is the highest priority, and 4 the lowest)"
          },
          "requestedCompletionDate": {
            "type": "string",
            "description": "Requested delivery date from the requestor perspective",
            "format": "date-time"
          },
          "requestedStartDate": {
            "type": "string",
            "description": "Order fulfillment start date wished by the requestor. This is used when, for any reason, requestor cannot allow seller to begin to operationally begin the fulfillment before a date. ",
            "format": "date-time"
          },
          "orderExtensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          },
          "productConfiguration": {
            "$ref": "#/components/schemas/ProductConfiguration"
          },
          "agreement": {
            "type": "array",
            "description": "A reference to an agreement defined in the context of the product order",
            "items": {
              "$ref": "#/components/schemas/AgreementRef"
            }
          },
          "billingAccount": {
            "$ref": "#/components/schemas/BillingAccountRef"
          },
          "channel": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedChannel"
            }
          },
          "note": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Note"
            }
          },
          "orderTotalPrice": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderPrice"
            }
          },
          "payment": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PaymentProductOrder"
            }
          },
          "productOfferingQualification": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOfferingQualificationRef"
            }
          },
          "productOrderItem": {
            "minItems": 1,
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOrderItem"
            }
          },
          "quote": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/QuoteRef"
            }
          },
          "relatedParty": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedParty"
            }
          },
          "state": {
            "$ref": "#/components/schemas/ProductOrderStateType"
          },
          "subState": {
            "type": "string",
            "description": "Substatus value"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "immediatePromotion": {
            "type": "array",
            "readOnly": true,
            "items": {
              "$ref": "#/components/schemas/ImmediatePromotion"
            }
          },
          "validation": {
            "$ref": "#/components/schemas/Validation"
          }
        },
        "required": [
          "productOrderItem"
        ],
        "x-examples": {}
      },
      "ProductOrderItem": {
        "required": [
          "action",
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Identifier of the line item (generally it is a sequence number 01, 02, 03, ...)"
          },
          "quantity": {
            "type": "integer",
            "description": "Quantity ordered"
          },
          "action": {
            "$ref": "#/components/schemas/OrderItemActionType"
          },
          "appointment": {
            "$ref": "#/components/schemas/AppointmentRef"
          },
          "billingAccount": {
            "$ref": "#/components/schemas/BillingAccountRef"
          },
          "agreement": {
            "type": "array",
            "description": "A reference to an agreement defined in the context of the product order",
            "items": {
              "$ref": "#/components/schemas/AgreementRef"
            }
          },
          "itemPrice": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderPrice"
            }
          },
          "itemTerm": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderTerm"
            }
          },
          "itemTotalPrice": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderPrice"
            }
          },
          "payment": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PaymentRef"
            }
          },
          "product": {
            "$ref": "#/components/schemas/ProductRefOrValue"
          },
          "productOffering": {
            "$ref": "#/components/schemas/ProductOfferingRef"
          },
          "productOfferingQualificationItem": {
            "$ref": "#/components/schemas/ProductOfferingQualificationItemRef"
          },
          "productOrderItem": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOrderItem"
            }
          },
          "productOrderItemRelationship": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderItemRelationship"
            }
          },
          "qualification": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOfferingQualificationRef"
            }
          },
          "quoteItem": {
            "$ref": "#/components/schemas/QuoteItemRef"
          },
          "state": {
            "$ref": "#/components/schemas/ProductOrderItemStateType"
          },
          "subState": {
            "type": "string",
            "description": "Substatus value"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "readOnly": {
            "type": "boolean",
            "description": "TMF++::Indicates whether the order item can be reconfigured\n",
            "readOnly": true
          },
          "completionDate": {
            "type": "string",
            "description": "TMF++::Date on which the order item was completed\n",
            "format": "date-time",
            "readOnly": true
          },
          "requestedStartDate": {
            "type": "string",
            "description": "TMF++::Date on which the order item was requested to be started\n",
            "format": "date-time"
          },
          "requestedCompletionDate": {
            "type": "string",
            "description": "TMF++::Date on which the order item was requested to be completed\n",
            "format": "date-time"
          },
          "expectedCompletionDate": {
            "type": "string",
            "description": "TMF++::Date on which the order item is expected to be completed\n",
            "format": "date-time",
            "readOnly": true
          },
          "retroactiveChangeDate": {
            "type": "string",
            "description": "TMF++::Past date of a retroactive change performed on the order item\n",
            "format": "date-time"
          },
          "creationDate": {
            "type": "string",
            "description": "TMF++::Item creation date \n",
            "format": "date-time"
          },
          "itemPriceDate": {
            "type": "string",
            "description": "TMF++::Date according to which the product order item was quoted\n",
            "format": "date-time"
          },
          "productOfferingGroupOption": {
            "$ref": "#/components/schemas/ProductOfferingGroupOption"
          },
          "modifyReason": {
            "type": "array",
            "description": "TMF++::Modify Reason",
            "items": {
              "$ref": "#/components/schemas/ModifyReason"
            }
          },
          "nextAction": {
            "type": "array",
            "description": "TMF++::Next Action",
            "items": {
              "$ref": "#/components/schemas/NextAction"
            }
          },
          "relatedImmediatePromotion": {
            "type": "array",
            "description": "TMF++::List of immediate promotions related to the order item\n",
            "readOnly": true,
            "items": {
              "$ref": "#/components/schemas/RelatedImmediatePromotion"
            }
          },
          "characteristic": {
            "type": "array",
            "description": "TMF++::Characteristics of the product offering\n",
            "items": {
              "$ref": "#/components/schemas/Characteristic"
            }
          },
          "fulfillmentMethod": {
            "type": "string"
          },
          "extensions": {
            "$ref": "#/components/schemas/ProductOrderItem_Extensions"
          },
          "actionReason": {
            "items": {
              "description": "The action and complementary reason associated with a customer-owned product or a newly provided product offering\n",
              "properties": {
                "action": {
                  "description": "Name of the action performed on the instance of the product offering\n",
                  "type": "string"
                },
                "metadata": {
                  "description": "Metadata of the Modify Reason\n",
                  "items": {
                    "description": "Metadata\n",
                    "properties": {
                      "metadataType": {
                        "description": "Type of the metadata\n",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the metadata\n",
                        "type": "string"
                      },
                      "value": {
                        "description": "Value of the metadata\n",
                        "type": "string"
                      }
                    },
                    "type": "object"
                  },
                  "type": "array"
                },
                "reason": {
                  "description": "Name of the modification reason\n",
                  "type": "string"
                },
                "reasonText": {
                  "description": "Text of the modification reason. This property is populated if the type of the modification reason requires an input of a free text\n",
                  "type": "string"
                }
              },
              "required": [
                "reason"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "description": "An identified part of the order. A product order is decomposed into one or more order items."
      },
      "ProductOfferingGroupOption": {
        "type": "object",
        "properties": {
          "groupOptionId": {
            "type": "string",
            "description": "Unique identifier of the product offering group option in the product catalog\n"
          }
        },
        "description": "TMF++::Reference to the product offering group option from the product catalog\n"
      },
      "NextAction": {
        "type": "object",
        "properties": {
          "nextActionType": {
            "type": "string",
            "description": "next action type can be catalog define limit duration product, catalog define limit duration promotion or customer defined temporary action\n"
          },
          "action": {
            "type": "string",
            "description": "Action applied to the order item (for example - add, suspend, resume, terminate, and so on). \n"
          },
          "durationPolicy": {
            "$ref": "#/components/schemas/DurationPolicy"
          },
          "modifyReason": {
            "$ref": "#/components/schemas/ModifyReason"
          },
          "calculateEffectiveDate": {
            "type": "string",
            "description": "the date that will be recalculated by the order handling for the next action\n",
            "format": "date-time"
          }
        },
        "description": "TMF++::Next action in the same order that can be complementary action (for example suspend will have next action resume)\n"
      },
      "RelatedImmediatePromotion": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the immediate promotion\n"
          },
          "itemQualificationType": {
            "type": "string",
            "description": "Type of the qualification result for an item - *trigger* or *benefit*\n"
          },
          "itemStatus": {
            "type": "string",
            "description": "Status of the item in the promotion:\n- *add* - A new item in the product promotion\n- *keep* - An existing item that remains as the result of reevaluation in the product promotion\n- *revoke* - An existing item that is revoked as the result of reevaluation in the product promotion\n"
          }
        },
        "description": "TMF++::Reference to the full immediate promotion\n"
      },
      "ProductOrderItemStateType": {
        "type": "string",
        "description": "Possible values for the state of the product order item",
        "enum": [
          "acknowledged",
          "Amended",
          "pending",
          "held",
          "inProgress",
          "cancelled",
          "Fallout",
          "Partial",
          "PendingAmend",
          "PendingCancel",
          "completed",
          "failed",
          "Draft",
          "Submitted",
          "Cloned"
        ]
      },
      "ProductOrderStateType": {
        "type": "string",
        "description": "Possible values for the state of the order",
        "enum": [
          "acknowledged",
          "rejected",
          "pending",
          "held",
          "inProgress",
          "cancelled",
          "completed",
          "failed",
          "partial",
          "assessingCancellation",
          "pendingCancellation",
          "Draft",
          "Submitted"
        ]
      },
      "ProductPrice": {
        "required": [
          "price",
          "priceType"
        ],
        "type": "object",
        "properties": {
          "description": {
            "type": "string",
            "description": "A narrative that explains in detail the semantics of this product price."
          },
          "name": {
            "type": "string",
            "description": "A short descriptive name such as \"Subscription price\"."
          },
          "priceType": {
            "type": "string",
            "description": "A category that describes the price, such as recurring, discount, allowance, penalty, and so forth."
          },
          "recurringChargePeriod": {
            "type": "string",
            "description": "Could be month, week..."
          },
          "unitOfMeasure": {
            "type": "string",
            "description": "Could be minutes, GB..."
          },
          "billingAccount": {
            "$ref": "#/components/schemas/BillingAccountRef"
          },
          "price": {
            "$ref": "#/components/schemas/Price"
          },
          "productOfferingPrice": {
            "$ref": "#/components/schemas/ProductOfferingPriceRef"
          },
          "productPriceAlteration": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PriceAlteration"
            }
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "An amount, usually of money, that represents the actual price paid by a Customer for a purchase, a rent or a lease of a Product. The price is valid for a defined period of time."
      },
      "ProductRefOrValue": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the product"
          },
          "referenceId": {
            "description": "TMF++::Reference ID of the product\n",
            "type": "string"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the product"
          },
          "description": {
            "type": "string",
            "description": "Is the description of the product. It could be copied from the description of the Product Offering."
          },
          "isBundle": {
            "type": "boolean",
            "description": "If true, the product is a ProductBundle which is an instantiation of a BundledProductOffering. If false, the product is a ProductComponent which is an instantiation of a SimpleProductOffering."
          },
          "isCustomerVisible": {
            "type": "boolean",
            "description": "If true, the product is visible by the customer."
          },
          "name": {
            "type": "string",
            "description": "Name of the product. It could be the same as the name of the product offering"
          },
          "orderDate": {
            "type": "string",
            "description": "Is the date when the product was ordered",
            "format": "date-time"
          },
          "productSerialNumber": {
            "type": "string",
            "description": "Is the serial number for the product. This is typically applicable to tangible products e.g. Broadband Router."
          },
          "startDate": {
            "type": "string",
            "description": "Is the date from which the product starts",
            "format": "date-time"
          },
          "terminationDate": {
            "type": "string",
            "description": "Is the date when the product was terminated",
            "format": "date-time"
          },
          "agreement": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AgreementItemRef"
            }
          },
          "billingAccount": {
            "$ref": "#/components/schemas/BillingAccountRef"
          },
          "place": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedPlaceRefOrValue"
            }
          },
          "product": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductRefOrValue"
            }
          },
          "productCharacteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Characteristic"
            }
          },
          "characteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Characteristic"
            }
          },
          "productOffering": {
            "$ref": "#/components/schemas/ProductOfferingRef"
          },
          "productOrderItem": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedProductOrderItem"
            }
          },
          "productPrice": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductPrice"
            }
          },
          "productRelationship": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductRelationship"
            }
          },
          "productSpecification": {
            "$ref": "#/components/schemas/ProductSpecificationRef"
          },
          "productTerm": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductTerm"
            }
          },
          "realizingResource": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ResourceRef"
            }
          },
          "realizingService": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ServiceRef"
            }
          },
          "relatedParty": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedParty"
            }
          },
          "status": {
            "$ref": "#/components/schemas/ProductStatusType"
          },
          "primaryProductId": {
            "type": "string",
            "description": "Unique identifier of the primary product. This property is populated only when the product is a product reference for the *Enable By* relation, and the referenced product is a product in the inventory and is not part of the order. In this case, the property contains the ID of the product ancestor that is marked as primary. This property and *productOrderRef* are mutually exclusive"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "A product to be created defined by value or existing defined by reference. The polymorphic attributes @type, @schemaLocation & @referredType are related to the product entity and not the RelatedProductRefOrValue class itself"
      },
      "ProductRelationship": {
        "required": [
          "relationshipType"
        ],
        "type": "object",
        "properties": {
          "relationshipType": {
            "type": "string",
            "description": "Type of the product relationship, such as [bundled] if the product is a bundle and you want to describe the bundled products inside this bundle; [reliesOn] if the product needs another already owned product to rely on (e.g. an option on an already owned mobile access product) [targets] or [isTargeted] (depending on the way of expressing the link) for any other kind of links that may be useful"
          },
          "relationshipSubtype": {
            "type": "string",
            "description": "Refers to relationship.id"
          },
          "product": {
            "$ref": "#/components/schemas/ProductRefOrValue"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "Linked products to the one instantiate, such as [bundled] if the product is a bundle and you want to describe the bundled products inside this bundle; [reliesOn] if the product needs another already owned product to rely on (e.g. an option on an already owned mobile access product) [targets] or [isTargeted] (depending on the way of expressing the link) for any other kind of links that may be useful"
      },
      "ProductSpecificationRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "version": {
            "type": "string",
            "description": "Version of the product specification"
          },
          "productSpecificationType": {
            "type": "string"
          },
          "productSpecificationTypeId": {
            "type": "string"
          },
          "targetProductSchema": {
            "$ref": "#/components/schemas/TargetProductSchema"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "Product specification reference: A ProductSpecification is a detailed description of a tangible or intangible object made available externally in the form of a ProductOffering to customers or other parties playing a party role."
      },
      "ProductStatusType": {
        "type": "string",
        "description": "Possible values for the status of the product",
        "enum": [
          "created",
          "pendingActive",
          "cancelled",
          "active",
          "pendingTerminate",
          "terminated",
          "suspended",
          "aborted "
        ]
      },
      "ProductTerm": {
        "type": "object",
        "properties": {
          "description": {
            "type": "string",
            "description": "Description of the productTerm"
          },
          "name": {
            "type": "string",
            "description": "Name of the productTerm"
          },
          "duration": {
            "$ref": "#/components/schemas/Quantity"
          },
          "validFor": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "Description of a productTerm linked to this product. This represent a commitment with a duration"
      },
      "Quantity": {
        "type": "object",
        "properties": {
          "amount": {
            "type": "integer",
            "description": "Numeric value in a given unit",
            "default": 1
          },
          "units": {
            "type": "string",
            "description": "Unit"
          }
        },
        "description": "An amount in a given unit"
      },
      "QuoteItemRef": {
        "required": [
          "id",
          "quoteId"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Id of an item of a quote"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "quoteHref": {
            "type": "string",
            "description": "Reference of the related entity."
          },
          "quoteId": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "quoteName": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "It's a Quote item that has been executed previously."
      },
      "QuoteRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "It's a Quote that has been executed previously"
      },
      "RelatedChannel": {
        "required": [
          "name"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the channel."
          },
          "role": {
            "type": "string",
            "description": "Role playing by the channel."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          },
          "extensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          }
        },
        "description": "Related channel to another entity. May be online web, mobile app, social ,etc."
      },
      "RelatedParty": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "role": {
            "type": "string",
            "description": "Role played by the related party"
          },
          "extensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "Related Entity reference. A related party defines party or party role linked to a specific entity."
      },
      "RelatedPlaceRefOrValue": {
        "required": [
          "role"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the place"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Unique reference of the place"
          },
          "name": {
            "type": "string",
            "description": "A user-friendly name for the place, such as [Paris Store], [London Store], [Main Home]"
          },
          "role": {
            "type": "string"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          },
          "characteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          }
        },
        "description": "Related Entity reference. A related place defines a place described by reference or by value linked to a specific entity. The polymorphic attributes @type, @schemaLocation & @referredType are related to the place entity and not the RelatedPlaceRefOrValue class itself"
      },
      "RelatedProductOrderItem": {
        "required": [
          "orderItemId",
          "productOrderId"
        ],
        "type": "object",
        "properties": {
          "orderItemAction": {
            "type": "string",
            "description": "Action of the order item for this product"
          },
          "orderItemId": {
            "type": "string",
            "description": "Identifier of the order item where the product was managed"
          },
          "productOrderHref": {
            "type": "string",
            "description": "Reference of the related entity."
          },
          "productOrderId": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "role": {
            "type": "string",
            "description": "role of the product order item for this product"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "RelatedProductOrderItem (ProductOrder item) .The product order item which triggered product creation/change/termination."
      },
      "ResourceRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the resource"
          },
          "value": {
            "type": "string",
            "description": "The resource value that can be used to identify a resource with a public key (e.g.: a tel nr, an msisdn)"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        }
      },
      "ServiceRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "Service reference, for when Service is used by other entities"
      },
      "TargetProductSchema": {
        "required": [
          "@schemaLocation",
          "@type"
        ],
        "type": "object",
        "properties": {
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "This field provides a link to the schema describing the target product"
          },
          "@type": {
            "type": "string",
            "description": "Class type of the target product"
          }
        },
        "description": "The reference object to the schema and type of target product which is described by product specification"
      },
      "TimePeriod": {
        "type": "object",
        "properties": {
          "endDateTime": {
            "type": "string",
            "description": "End of the time period, using IETC-RFC-3339 format",
            "format": "date-time"
          },
          "startDateTime": {
            "type": "string",
            "description": "Start of the time period, using IETC-RFC-3339 format. If you define a start, you must also define an end",
            "format": "date-time"
          }
        },
        "description": "A period of time, either as a deadline (endDateTime only) a startDateTime only, or both"
      },
      "Error": {
        "required": [
          "code",
          "reason"
        ],
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "description": "Application relevant detail, defined in the API or a common list."
          },
          "reason": {
            "type": "string",
            "description": "Explanation of the reason for the error which can be shown to a client user."
          },
          "message": {
            "type": "string",
            "description": "More details and corrective actions related to the error which can be shown to a client user."
          },
          "status": {
            "type": "string",
            "description": "HTTP Error code extension"
          },
          "referenceError": {
            "type": "string",
            "description": "URI of documentation describing the error.",
            "format": "uri"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class."
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name."
          }
        },
        "description": "Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)"
      },
      "PaymentProductOrder": {
        "description": "Representation of a payment method",
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique id of the payment method in the server"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "URI where to perform actions on the payment method"
          },
          "role": {
            "type": "string",
            "description": "URI where to perform actions on the payment method"
          },
          "name": {
            "type": "string",
            "description": "Screen name of the payment method"
          },
          "description": {
            "type": "string",
            "description": "Description of the payment method"
          },
          "amount": {
            "$ref": "#/components/schemas/Money"
          },
          "taxAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "totalAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "validFor": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "account": {
            "type": "array",
            "description": "Account that owns or can use the payment method",
            "items": {
              "$ref": "#/components/schemas/BillingAccountRef"
            }
          },
          "preferred": {
            "type": "boolean",
            "description": "Defines whether this particular method is the preferred one"
          },
          "relatedParty": {
            "type": "array",
            "description": "Account that owns the payment method",
            "items": {
              "$ref": "#/components/schemas/RelatedParty"
            }
          },
          "paymentItem": {
            "type": "array",
            "description": "Payment order item reference id",
            "items": {
              "$ref": "#/components/schemas/PaymentItemRef"
            }
          },
          "@type": {
            "type": "string",
            "enum": [
              "cash",
              "digitalWallet",
              "tokenizedCard",
              "bankAccountTransfer",
              "bankAccountDebit",
              "bankCard",
              "account",
              "bucket",
              "voucher",
              "check",
              "loyaltyAccount"
            ],
            "description": "Payment method type. The content of the details field depends on the value of this one"
          },
          "authorizationCode": {
            "type": "string",
            "description": "Authorization code provided by a financial institution. Typically this would be populated for recurring payments using the method, as payments have an authorization code of their own."
          },
          "status": {
            "type": "string",
            "description": "Current status of the payment method"
          },
          "statusDate": {
            "format": "date-time",
            "type": "string",
            "description": "Last time the status changed"
          },
          "details": {
            "$ref": "#/components/schemas/ProductOrderPaymentDetails"
          },
          "characteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Characteristic"
            }
          }
        },
        "required": [
          "id",
          "href",
          "@type",
          "details"
        ]
      },
      "ProductOrderPaymentDetails": {
        "title": "details",
        "type": "object",
        "properties": {
          "token": {
            "type": "string",
            "description": "Payment Details token"
          },
          "tokenType": {
            "type": "string",
            "description": "Payment Details tokenType"
          },
          "type": {
            "type": "string",
            "description": "Payment Details type"
          },
          "issuer": {
            "type": "string",
            "description": "Payment Details issuer"
          },
          "brand": {
            "type": "string",
            "description": "Payment Details brand"
          },
          "lastFourDigits": {
            "type": "number",
            "description": "Payment Details lastFourDigits"
          }
        }
      },
      "PaymentItemRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "ProductOrder (ProductOrder) .The product order which the recommendation is related with."
      },
      "Validation": {
        "type": "object",
        "description": "TMF++::Validation result that is associated with the product order\n",
        "properties": {
          "status": {
            "type": "string",
            "description": "Validation status\n"
          },
          "readyToCheckout": {
            "type": "boolean",
            "description": "Ready To Checkout\n"
          },
          "readyToSubmit": {
            "type": "boolean",
            "description": "Ready to Submit\n"
          },
          "error": {
            "$ref": "#/components/schemas/Error"
          },
          "validationMessage": {
            "type": "array",
            "description": "Validation message\n",
            "items": {
              "$ref": "#/components/schemas/ValidationMessage"
            }
          },
          "configurationChange": {
            "type": "array",
            "description": "Configuration change\n",
            "items": {
              "$ref": "#/components/schemas/ConfigurationChange"
            }
          },
          "configuration": {
            "type": "array",
            "description": "Configuration Components\n",
            "items": {
              "$ref": "#/components/schemas/Configuration"
            }
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "x-examples": {}
      },
      "ValidationMessage": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Non-localized name identifier of the validation message\n"
          },
          "text": {
            "type": "string",
            "description": "Localized descriptive validation message\n"
          },
          "type": {
            "type": "string",
            "description": "Type of the validation message\n"
          },
          "subtype": {
            "type": "string",
            "description": "Distinct code which represents the issue\n"
          },
          "parameter": {
            "type": "array",
            "description": "Name/value pair of the validation message\n",
            "items": {
              "$ref": "#/components/schemas/ValidationMessageParameter"
            }
          },
          "severity": {
            "type": "string",
            "description": "Severity of the validation message\n"
          },
          "path": {
            "type": "string",
            "description": "Path to the resource part to which the validation message is related\n"
          },
          "resource": {
            "type": "array",
            "description": "Resource that is associated with the message\n",
            "items": {
              "$ref": "#/components/schemas/RelatedResource"
            }
          }
        },
        "description": "TMF++::Message associated with the validation failure\n"
      },
      "ValidationMessageParameter": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of the parameter\n"
          },
          "value": {
            "type": "array",
            "description": "Value of the parameter\n",
            "items": {
              "type": "string"
            }
          }
        },
        "description": "TMF++::Name/value pair of the validation message parameter\n"
      },
      "RelatedResource": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Type of the resource\n"
          },
          "id": {
            "type": "string",
            "description": "Unique identifier of the resource\n"
          },
          "variable": {
            "type": "array",
            "description": "Variables related to the resource\n",
            "items": {
              "$ref": "#/components/schemas/Variable"
            }
          },
          "containedResource": {
            "type": "array",
            "description": "Other resources, specs, or offers that are linked to the message but did not trigger the validation message\n",
            "items": {
              "$ref": "#/components/schemas/ContainedResource"
            }
          }
        },
        "description": "TMF++::Resource that is associated with the validation message (that is, triggered the validation failure)\n"
      },
      "Variable": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Type of the variable\n"
          },
          "id": {
            "type": "string",
            "description": "Unique identifier of the variable\n"
          },
          "value": {
            "type": "array",
            "description": "Value(s) of the variable\n",
            "items": {
              "type": "string"
            }
          }
        },
        "description": "Variable that is associated with a resource\n"
      },
      "ContainedResource": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Type of the resource\n"
          },
          "id": {
            "type": "string",
            "description": "Unique identifier of the resource\n"
          },
          "variable": {
            "type": "array",
            "description": "Variables that are related to the resource\n",
            "items": {
              "$ref": "#/components/schemas/Variable"
            }
          }
        },
        "description": "TMF++::Resources that are contained in the validation message\n"
      },
      "ConfigurationChange": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the configuration change\n"
          },
          "text": {
            "type": "string",
            "description": "Localized descriptive configuration change message\n"
          },
          "type": {
            "type": "string",
            "description": "Implementation discriminator of the configuration change\n"
          },
          "parameter": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ConfigurationChangeParameter"
            }
          },
          "severity": {
            "type": "string",
            "description": "Severity of the configuration change\n"
          },
          "path": {
            "type": "string",
            "description": "Path to the configuration change in the resource model\n"
          },
          "skipRevalidation": {
            "type": "boolean",
            "description": "Indicates whether revalidation of the configuration change is required\n"
          },
          "patchElement": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PatchElement"
            }
          },
          "configurationChangeSource": {
            "type": "array",
            "description": "Holds a list of the impacting components that are involved in action rule\n- enablmentRelation - The action rule has impacting enablment relation functionality or was created by this functionality.\n- commertialRelation - The action rule has impacting commertial relation functionality or was created by this functionality.\n- subscriptionRelation - The action rule has impacting subscription relation or was created by this functionality. functionality\n- catalog - The action rule was created by catalog.\n",
            "items": {
              "type": "string"
            }
          }
        },
        "description": "TMF++::Configuration change recommended for a validated resource\n"
      },
      "ConfigurationChangeParameter": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of the parameter\n"
          },
          "value": {
            "type": "array",
            "description": "Value(s) of the parameter\n",
            "items": {
              "type": "string"
            }
          },
          "valueType": {
            "type": "string",
            "description": "Types of each Value in the parameter array\nAs a default - when empty - the type is string.\nAlso will be supported-\n** HashMap - a jason format representation of key value <string,string> map.\n"
          }
        },
        "description": "TMF++::Name/value pair of the configuration change parameters\n"
      },
      "PatchElement": {
        "type": "object",
        "description": "TMF++::Patched resource part\n",
        "properties": {
          "op": {
            "type": "string",
            "description": "Operation that is associated with the patched resource part. Valid values are *add*, *remove*, or *replace*.\n"
          },
          "path": {
            "type": "string",
            "description": "Path of this resource part within the patched resource, for example, */note*, */name*, or */orderItem/quantity*\n"
          },
          "value": {
            "type": "object",
            "description": "Value of the patched resource part\n"
          }
        }
      },
      "ImmediatePromotion": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the immediate promotion\n"
          },
          "status": {
            "type": "string",
            "description": "Status of the instance of the immediate promotion\n"
          },
          "state": {
            "type": "string",
            "description": "The apply state of the qualified promotion. The state can have the following values:\n- 'applied' - For an immediate promotion that all of it's benefits are applied\n- 'notApplied' - For an immediate promotion that none of it's benefits are applied - future\n- 'partiallyApplied' - For an immediate promotion that part of it's benefits are applied - future\n- 'pendingApply' - Received in the request for an immediate promotion for which certain benefits, which are selected externally by a consuming application, should be applied\n"
          },
          "promotion": {
            "$ref": "#/components/schemas/PromotionRef"
          },
          "productPromotion": {
            "$ref": "#/components/schemas/ProductPromotionRef"
          },
          "triggerItem": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TriggerItem"
            }
          },
          "benefitItem": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BenefitItem"
            }
          },
          "immediatePromotionCharacteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ContextCharacteristic"
            }
          },
          "reason": {
            "$ref": "#/components/schemas/ModifyReason"
          },
          "relatedParty": {
            "$ref": "#/components/schemas/RelatedParty"
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "TMF++::Immediate promotion\n"
      },
      "ModifyReason": {
        "required": [
          "action",
          "name"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of the modification reason\n"
          },
          "reasonText": {
            "type": "string",
            "description": "Text of the modification reason. This property is populated if the type of the modification reason requires an input of a free text.\n"
          },
          "action": {
            "type": "string",
            "description": "Action performed on the instance of the product offering\n"
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "TMF++::Modification reason associated with the action performed on the product offering that is related to the order item\n"
      },
      "PromotionRef": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the promotion\n"
          },
          "name": {
            "type": "string",
            "description": "Name of the promotion\n"
          },
          "description": {
            "type": "string",
            "description": "Promotion description for a business user\n"
          },
          "validFor": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "type": {
            "type": "string",
            "description": "The type of the promotion\n"
          },
          "priority": {
            "type": "integer",
            "description": "The priority of the promotion\n"
          },
          "applyPolicy": {
            "type": "string",
            "description": "Defines the policy to apply the promotion - can be manual or automatic \n"
          },
          "href": {
            "type": "string",
            "description": "Hypertext reference to the promotion\n",
            "format": "url",
            "readOnly": true
          }
        },
        "description": "TMF++::Reference to the promotion\n"
      },
      "ProductPromotionRef": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the product promotion\n"
          },
          "href": {
            "type": "string",
            "description": "Hypertext reference to the product promotion\n",
            "format": "url",
            "readOnly": true
          }
        },
        "description": "TMF++::Reference to the product promotion.\n"
      },
      "TriggerItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the trigger item\n"
          },
          "href": {
            "type": "string",
            "description": "Hypertext reference to the trigger item\n",
            "format": "url"
          },
          "itemType": {
            "type": "string",
            "description": "Type of the trigger item\n"
          },
          "promotionCriteriaGroupId": {
            "type": "string",
            "description": "Unique identifier of the promotion criteria group (root or nested) as part of which this item is qualified as trigger item\n"
          },
          "itemStatus": {
            "type": "string",
            "description": "Status of the trigger item in the promotion&#58;\n- *add* - A new trigger item in the product promotion\n- *keep* - An existing trigger item that remains as the result of reevaluation in the product promotion\n- *revoke* - An existing trigger item that is revoked as the result of reevaluation in the product promotion\n"
          },
          "pathToRoot": {
            "type": "string",
            "description": "Path from the current item in the product offering structure to the root. Populated if the trigger item is a nested item.\n"
          },
          "triggerItemCharacteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ContextCharacteristic"
            }
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "TMF++::Item that participated in the promotion qualification\n"
      },
      "ContextCharacteristic": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "The name of the characteristic\n"
          },
          "contextType": {
            "type": "string",
            "description": "The context type of the characteristic\n"
          },
          "valueType": {
            "type": "string",
            "description": "The value type of the characteristic \n"
          },
          "value": {
            "type": "array",
            "description": "The value of the characteristic\n",
            "items": {
              "type": "string"
            }
          }
        },
        "description": "TMF++::The list of dynamic characteristics related to a specific context\n"
      },
      "BenefitItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the benefit item \n"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Hypertext reference to the benefit item\n"
          },
          "itemType": {
            "type": "string",
            "description": "Type of the benefit item\n"
          },
          "promotionCriteriaGroupId": {
            "type": "string",
            "description": "Unique identifier of the promotion criteria group (root or nested) as part of which this item is qualified as a benefit item\n"
          },
          "itemStatus": {
            "type": "string",
            "description": "Status of the benefit item in the promotion&#58;\n- *add* - A new benefit item in the product promotion\n- *keep* - An existing benefit item that remains as the result of reevaluation in the product promotion\n- *revoke* - An existing benefit item that is revoked as the result of reevaluation in the product promotion\n"
          },
          "itemState": {
            "type": "string",
            "description": "The apply state of the benefit on a benefit item. The state can have the following values&#58;\n- 'applied' - For a benefit that is applied\n- 'notApplied' - For a benefit that is not applied\n- 'pendingApply' - Received in the request for a benefit, for which the relevant benefit item is selected and should be applied\n"
          },
          "pathToRoot": {
            "type": "string",
            "description": "Path from the current item in the product offering structure to the root. Populated if the benefit item is a nested item.\n"
          },
          "action": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PromotionAction"
            }
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "TMF++::Item that received the promotion benefit, which is a benefit granted through the promotion - can be discount, allowance, free services\n"
      }
    },
    "examples": {
      "Standalone_TLG_wireless_AAL_Plan_Response": {
        "value": {
          "id": "cd427280-614f-11f0-94c4-c9b439b0caf3",
          "category": "Mobile_Offer",
          "orderDate": "2025-07-15T07:46:22.248Z",
          "lastUpdate": "2025-07-15T07:46:33.164Z",
          "orderPriceDate": "2025-07-15T07:46:27.725Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "sessionid_6007"
            }
          ],
          "channel": [
            {
              "id": "SelfService",
              "name": "SelfService",
              "extensions": [
                {
                  "name": "Application",
                  "value": "websales"
                }
              ]
            }
          ],
          "orderTotalPrice": [
            {
              "priceType": "immediate",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 132
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 132
                },
                "appliedTax": [
                  {
                    "taxDefinition": {
                      "name": "Sales Tax",
                      "taxRate": 0.0825,
                      "isExemption": false,
                      "exemptionType": "none",
                      "taxJurisdiction": {
                        "name": "Sales Tax",
                        "level": "Sales Tax",
                        "id": "DUMMY ID"
                      }
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 132
                    },
                    "taxableAmount": {
                      "unit": "USD",
                      "value": 1599
                    },
                    "characteristic": [
                      {
                        "name": "taxableInd",
                        "value": "X"
                      },
                      {
                        "name": "taxAuditInfo"
                      },
                      {
                        "name": "printGroup"
                      },
                      {
                        "name": "taxOnTaxAmount"
                      },
                      {
                        "name": "SKUSpecificInd",
                        "value": "false"
                      },
                      {
                        "name": "taxGeneralLedgerAccount"
                      },
                      {
                        "name": "displayOrder",
                        "value": "0"
                      },
                      {
                        "name": "percentTaxable",
                        "value": "X"
                      },
                      {
                        "name": "taxCode",
                        "value": "SALESTAX"
                      },
                      {
                        "name": "taxDate",
                        "value": "2025-07-15T12:00:00"
                      },
                      {
                        "name": "impositionType"
                      },
                      {
                        "name": "geoCodeInfo"
                      },
                      {
                        "name": "taxLineID",
                        "value": "1"
                      },
                      {
                        "name": "imposition"
                      },
                      {
                        "name": "taxCategoryCode",
                        "value": "SALESTAX"
                      },
                      {
                        "name": "revenueBase"
                      },
                      {
                        "name": "memoGL",
                        "value": "SALESTAX"
                      },
                      {
                        "name": "orderTaxAreaID",
                        "value": "390950000"
                      },
                      {
                        "name": "taxableMSRP",
                        "value": "1599.99"
                      },
                      {
                        "name": "shipToTaxAreaID",
                        "value": "440857820"
                      },
                      {
                        "name": "shipFromTaxAreaID",
                        "value": "431570560"
                      },
                      {
                        "name": "taxableCost",
                        "value": "1599.0"
                      }
                    ],
                    "extensions": {
                      "Tax": [
                        {
                          "key": "printGroup",
                          "value": "TAX"
                        }
                      ]
                    }
                  }
                ]
              },
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 132
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 132
                }
              },
              "immediatePayOption": {
                "payImmediately": true
              }
            },
            {
              "priceType": "RC",
              "recurringChargePeriod": "month",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 140.44
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 140.44
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "priceAlteration": [
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 5.56
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 5.56
                    }
                  },
                  "alterationType": "promotion",
                  "immediatePromotionId": "PROMO_ITEM_02",
                  "chargeType": "Credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 10
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 10
                    }
                  },
                  "alterationType": "promotion",
                  "immediatePromotionId": "PROMO_ITEM_01"
                }
              ],
              "recurringChargePeriodLength": 36,
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 124.88
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 128.37
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 3.49
                }
              }
            },
            {
              "priceType": "OC",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              }
            }
          ],
          "productOrderItem": [
            {
              "id": "68b5a165-b16b-4f49-bb6a-d37be3305135",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "id": "177084428124",
                "characteristic": [
                  {
                    "name": "System_of_Record",
                    "value": "TLG"
                  },
                  {
                    "name": "accountStatus",
                    "value": "O"
                  }
                ],
                "ratingType": "postpaid"
              },
              "itemPrice": [
                {
                  "name": "Activation Fee",
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  },
                  "taxIncluded": "Included",
                  "role": "DueAtFirstBill"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 132
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 132
                    },
                    "appliedTax": [
                      {
                        "taxDefinition": {
                          "name": "Sales Tax",
                          "taxRate": 0.0825,
                          "isExemption": false,
                          "exemptionType": "none",
                          "taxJurisdiction": {
                            "name": "Sales Tax",
                            "level": "Sales Tax",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 1599
                        },
                        "characteristic": [
                          {
                            "name": "taxableInd",
                            "value": "X"
                          },
                          {
                            "name": "taxAuditInfo"
                          },
                          {
                            "name": "printGroup"
                          },
                          {
                            "name": "taxOnTaxAmount"
                          },
                          {
                            "name": "SKUSpecificInd",
                            "value": "false"
                          },
                          {
                            "name": "taxGeneralLedgerAccount"
                          },
                          {
                            "name": "displayOrder",
                            "value": "0"
                          },
                          {
                            "name": "percentTaxable",
                            "value": "X"
                          },
                          {
                            "name": "taxCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "taxDate",
                            "value": "2025-07-15T12:00:00"
                          },
                          {
                            "name": "impositionType"
                          },
                          {
                            "name": "geoCodeInfo"
                          },
                          {
                            "name": "taxLineID",
                            "value": "1"
                          },
                          {
                            "name": "imposition"
                          },
                          {
                            "name": "taxCategoryCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "revenueBase"
                          },
                          {
                            "name": "memoGL",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "orderTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableMSRP",
                            "value": "1599.99"
                          },
                          {
                            "name": "shipToTaxAreaID",
                            "value": "440857820"
                          },
                          {
                            "name": "shipFromTaxAreaID",
                            "value": "431570560"
                          },
                          {
                            "name": "taxableCost",
                            "value": "1599.0"
                          }
                        ],
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 132
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 132
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": true
                  }
                },
                {
                  "priceType": "RC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 140.44
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 140.44
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 5.56
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 5.56
                        }
                      },
                      "alterationType": "promotion",
                      "immediatePromotionId": "PROMO_ITEM_02",
                      "chargeType": "Credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 10
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 10
                        }
                      },
                      "alterationType": "promotion",
                      "immediatePromotionId": "PROMO_ITEM_01"
                    }
                  ],
                  "recurringChargePeriodLength": 36,
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 124.88
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 128.37
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 3.49
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  }
                },
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  }
                }
              ],
              "product": {
                "productCharacteristic": [
                  {
                    "name": "billingCode",
                    "value": "6638E"
                  },
                  {
                    "name": "deviceCategory",
                    "value": "smartphone"
                  },
                  {
                    "name": "priceType",
                    "value": "OC"
                  },
                  {
                    "name": "fulfillmentWaiver",
                    "value": "overnight"
                  },
                  {
                    "name": "productKey",
                    "value": "prod32812"
                  },
                  {
                    "name": "sku",
                    "value": "sku32812v13"
                  },
                  {
                    "name": "maxSKUQtyPerOrder",
                    "value": "5"
                  },
                  {
                    "name": "defaultFreeOvernightShip",
                    "value": "none"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "Indirect_Delivery_Shipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "nextDayDeliveryShipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "twoDayDeliveryShipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "Pick_In_Store"
                  }
                ]
              },
              "productOffering": {
                "id": "legacy-wireless-dummy-offer-id",
                "productOfferingType": "Mobile_Offer",
                "productOfferingGroup": "CT_Mobility"
              },
              "productOrderItem": [
                {
                  "id": "67d63395-d1d2-4507-961b-58bf185d2332",
                  "quantity": 1,
                  "action": "add",
                  "billingAccount": {
                    "id": "177084428124",
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "ratingType": "postpaid"
                  },
                  "itemPrice": [
                    {
                      "description": "AT&T Installment Plan",
                      "name": "Monthly Installment Amount",
                      "priceType": "RC",
                      "priceCategory": "equipmentRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 5.56
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 5.56
                            }
                          },
                          "alterationType": "promotion",
                          "immediatePromotionId": "PROMO_ITEM_02",
                          "chargeType": "Credit"
                        }
                      ],
                      "recurringChargePeriodLength": 36,
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 38.89
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 38.89
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      },
                      "installmentOption": {
                        "id": "10300001",
                        "name": "NE36MNUP",
                        "@type": "LEASE",
                        "installmentOption": "mandatory",
                        "numberOfInstallments": 36
                      },
                      "taxIncluded": "Included"
                    },
                    {
                      "name": "Device Finance",
                      "priceType": "OC",
                      "priceCategory": "equipmentOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "chargeType": "Credit"
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "chargeType": "Credit"
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "taxIncluded": "Included",
                      "role": "DueUponFulfillment"
                    },
                    {
                      "name": "Device MSRP",
                      "priceType": "OC",
                      "priceCategory": "equipmentOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1731.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 132
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 1599
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "1599.99"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "1599.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1731.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 132
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 1599
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "1599.99"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "1599.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "taxIncluded": "Included",
                      "role": "DueUponFulfillment"
                    },
                    {
                      "description": "AT&T Installment Plan Down payment",
                      "name": "Device downpayment",
                      "priceType": "OC",
                      "priceCategory": "equipmentOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "role": "DWNPAY"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 132
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 1599
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "1599.99"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "1599.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 132
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      }
                    },
                    {
                      "priceType": "RC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 5.56
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 5.56
                            }
                          },
                          "alterationType": "promotion",
                          "immediatePromotionId": "PROMO_ITEM_02",
                          "chargeType": "Credit"
                        }
                      ],
                      "recurringChargePeriodLength": 36,
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 38.89
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 38.89
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      }
                    }
                  ],
                  "product": {
                    "productCharacteristic": [
                      {
                        "name": "billingCode",
                        "value": "6638E"
                      },
                      {
                        "name": "deviceCategory",
                        "value": "smartphone"
                      },
                      {
                        "name": "priceType",
                        "value": "OC"
                      },
                      {
                        "name": "fulfillmentWaiver",
                        "value": "overnight"
                      },
                      {
                        "name": "sku",
                        "value": "sku32812v13"
                      },
                      {
                        "name": "productKey",
                        "value": "prod32812"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "Pick_In_Store"
                      },
                      {
                        "name": "defaultFreeOvernightShip",
                        "value": "none"
                      },
                      {
                        "name": "maxSKUQtyPerOrder",
                        "value": "5"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "Indirect_Delivery_Shipping"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "nextDayDeliveryShipping"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "twoDayDeliveryShipping"
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "Mobile_Device_prod32812_sku32812v13",
                    "name": "Apple iPhone 16 Pro Max - 1TB - Black Titanium",
                    "productOfferingType": "Mobile_Device"
                  },
                  "creationDate": "2025-07-15T07:46:26.226Z",
                  "characteristic": [
                    {
                      "name": "commitmentTermId",
                      "value": "10300001"
                    },
                    {
                      "name": "contractLength",
                      "value": "36"
                    },
                    {
                      "name": "contractType",
                      "value": "monthly"
                    },
                    {
                      "name": "commitmentTerm",
                      "value": "NE36MNUP"
                    }
                  ]
                },
                {
                  "id": "8dac31aa-5819-458d-8c28-6ddd46b92e80",
                  "quantity": 1,
                  "action": "add",
                  "billingAccount": {
                    "id": "177084428124",
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "ratingType": "postpaid"
                  },
                  "itemPrice": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "0.0"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "0.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "0.0"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "0.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "taxIncluded": "Included",
                      "role": "DueUponFulfillment"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "0.0"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "0.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      }
                    }
                  ],
                  "product": {
                    "productCharacteristic": [
                      {
                        "name": "billingCode",
                        "value": "7999C"
                      },
                      {
                        "name": "simType",
                        "value": "eSIM"
                      },
                      {
                        "name": "priceType",
                        "value": "OC"
                      },
                      {
                        "name": "sku",
                        "value": "27100010-sku9350228"
                      },
                      {
                        "name": "productKey",
                        "value": "27100010"
                      },
                      {
                        "name": "SIM_Type",
                        "value": "eSIM"
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "Mobile_Sim_27100010_27100010-sku9350228",
                    "name": "Electronic SIM for device - 7999C",
                    "productOfferingType": "SIM"
                  },
                  "creationDate": "2025-07-15T07:46:26.226Z"
                },
                {
                  "id": "b69d2dff-b87e-4160-b46b-0420410397e2",
                  "quantity": 1,
                  "action": "add",
                  "billingAccount": {
                    "id": "177084428124",
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "ratingType": "postpaid"
                  },
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      },
                      "taxIncluded": "Included"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      }
                    }
                  ],
                  "product": {
                    "productCharacteristic": [
                      {
                        "name": "billingCode",
                        "value": "UNLIMTSDG"
                      },
                      {
                        "name": "priceType",
                        "value": "RC"
                      },
                      {
                        "name": "productKey",
                        "value": "prod10690221"
                      },
                      {
                        "name": "sku",
                        "value": "sku10060281"
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "Mobile_Share_Group_prod10690221_sku10060281",
                    "name": "AT&T Unlimited Your Way®",
                    "productOfferingType": "Mobile_Share_Group"
                  },
                  "creationDate": "2025-07-15T07:46:31.370Z",
                  "characteristic": [
                    {
                      "name": "mobileGroupId",
                      "value": "G16871476"
                    }
                  ]
                },
                {
                  "id": "41ea9871-95fb-434c-a099-974b127bb3f4",
                  "quantity": 1,
                  "action": "add",
                  "billingAccount": {
                    "id": "177084428124",
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "ratingType": "postpaid"
                  },
                  "itemPrice": [
                    {
                      "description": "The basic plan recurring charge",
                      "name": "Basic Plan RC",
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 95.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 95.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 10
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 10
                            }
                          },
                          "alterationType": "promotion",
                          "immediatePromotionId": "PROMO_ITEM_01"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 85.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 89.48
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 3.49
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "AT&T Administrative/Regulatory Cost Recovery Fee"
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 3.49
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 0
                            }
                          }
                        ]
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      },
                      "taxIncluded": "Included"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 95.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 95.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 10
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 10
                            }
                          },
                          "alterationType": "promotion",
                          "immediatePromotionId": "PROMO_ITEM_01"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 85.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 89.48
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 3.49
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      }
                    }
                  ],
                  "product": {
                    "productCharacteristic": [
                      {
                        "name": "billingCode",
                        "value": "LPMTOP1"
                      },
                      {
                        "name": "priceType",
                        "value": "RC"
                      },
                      {
                        "name": "productKey",
                        "value": "prod12010230"
                      },
                      {
                        "name": "sku",
                        "value": "sku11590232"
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "Mobile_Share_Feature_prod12010230_sku11590232",
                    "name": "AT&T Unlimited Premium® PL plan",
                    "productOfferingType": "Mobile_Share_Feature"
                  },
                  "creationDate": "2025-07-15T07:46:31.370Z"
                },
                {
                  "id": "10c0bead-6784-491c-917c-038c2c3bddc2",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      },
                      "taxIncluded": "Included"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      }
                    }
                  ],
                  "product": {
                    "referenceId": "c93e2434-d5d0-4354-a8e3-f00e2d8356e5",
                    "productCharacteristic": [
                      {
                        "name": "billingCode",
                        "value": "SDDVRP"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "68b5a165-b16b-4f49-bb6a-d37be3305135"
                        }
                      },
                      {
                        "relationshipType": "enabledBy",
                        "product": {
                          "referenceId": "41ea9871-95fb-434c-a099-974b127bb3f4"
                        }
                      }
                    ],
                    "productSpecification": {
                      "id": "620be78e-2da8-42a5-9e8d-a5fa8b493dc1",
                      "name": "Mobile Share Plan"
                    }
                  },
                  "productOffering": {
                    "id": "Mobile_Plan_prod6130421_sku6220543",
                    "name": "Mobile Share Plan",
                    "productOfferingType": "Mobile_Plan"
                  }
                }
              ],
              "creationDate": "2025-07-15T07:46:26.226Z"
            }
          ],
          "relatedParty": [
            {
              "id": "177084428124",
              "role": "owner",
              "@referredType": "TLGAccount"
            },
            {
              "id": "uuid_6008",
              "role": "Profile",
              "extensions": [
                {
                  "name": "user-type",
                  "value": "registered"
                }
              ]
            },
            {
              "id": "177084428124",
              "role": "customer",
              "extensions": [
                {
                  "name": "customerType",
                  "value": "Consumer"
                },
                {
                  "name": "zipCode",
                  "value": "94801"
                },
                {
                  "name": "customerSubType",
                  "value": "Individual"
                }
              ],
              "@referredType": "TLGAccount"
            }
          ],
          "state": "inProgress",
          "@type": "DEFAULT",
          "immediatePromotion": [
            {
              "id": "PROMO_ITEM_01",
              "promotion": {
                "id": "wrlspr-25750",
                "name": "AutoPay and paperless billing discount",
                "description": "AutoPay and paperless billing discount",
                "type": "PROMOTION",
                "applyPolicy": "AUTOMATIC"
              },
              "triggerItem": [
                {
                  "id": "41ea9871-95fb-434c-a099-974b127bb3f4"
                }
              ],
              "benefitItem": [
                {
                  "id": "41ea9871-95fb-434c-a099-974b127bb3f4"
                }
              ]
            },
            {
              "id": "PROMO_ITEM_02",
              "promotion": {
                "id": "wrlspr-40762",
                "name": "ONLINE ONLY: You're getting a $200 bill credit with new voice on elig. unlimited plan (speed restr's apply). Credits start within 3 bills.",
                "description": "ONLINE ONLY: You're getting a $200 bill credit with new voice on elig. unlimited plan (speed restr's apply). Credits start within 3 bills.",
                "type": "BILLCREDITWITHQUALIFIER",
                "applyPolicy": "AUTOMATIC"
              },
              "triggerItem": [
                {
                  "id": "67d63395-d1d2-4507-961b-58bf185d2332"
                }
              ],
              "benefitItem": [
                {
                  "id": "67d63395-d1d2-4507-961b-58bf185d2332"
                }
              ]
            }
          ],
          "validation": {
            "readyToCheckout": true
          }
        }
      },
      "Standalone_TLG_wireless_Device_Sim_AAL_Response": {
        "value": {
          "id": "5c4d2840-614a-11f0-a1dd-93da74cde74b",
          "category": "Mobile_Offer",
          "orderDate": "2025-07-15T07:07:25.252Z",
          "lastUpdate": "2025-07-15T07:07:50.637Z",
          "orderPriceDate": "2025-07-15T07:07:50.637Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "sessionid_6007"
            }
          ],
          "channel": [
            {
              "id": "SelfService",
              "name": "SelfService",
              "extensions": [
                {
                  "name": "Application",
                  "value": "websales"
                }
              ]
            }
          ],
          "orderTotalPrice": [
            {
              "priceType": "immediate",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "appliedTax": [
                  {
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  }
                ]
              },
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "immediatePayOption": {
                "payImmediately": true
              }
            },
            {
              "priceType": "RC",
              "recurringChargePeriod": "month",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 44.45
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 44.45
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "priceAlteration": [
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "promotion",
                  "immediatePromotionId": "PROMO_ITEM_01",
                  "chargeType": "Credit"
                }
              ],
              "recurringChargePeriodLength": 36,
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 44.45
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 44.45
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              }
            },
            {
              "priceType": "OC",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              }
            }
          ],
          "productOrderItem": [
            {
              "id": "9d77610c-50ce-4c94-b364-01f94aebb9e0",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "id": "554646504216",
                "characteristic": [
                  {
                    "name": "System_of_Record",
                    "value": "TLG"
                  }
                ],
                "ratingType": "postpaid"
              },
              "itemPrice": [
                {
                  "name": "Activation Fee",
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  },
                  "taxIncluded": "Excluded",
                  "role": "DueAtFirstBill"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "appliedTax": [
                      {
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      }
                    ]
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": true
                  }
                },
                {
                  "priceType": "RC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 44.45
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 44.45
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "promotion",
                      "immediatePromotionId": "PROMO_ITEM_01",
                      "chargeType": "Credit"
                    }
                  ],
                  "recurringChargePeriodLength": 36,
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 44.45
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 44.45
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  }
                },
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  }
                }
              ],
              "product": {
                "productCharacteristic": [
                  {
                    "name": "billingCode",
                    "value": "6638E"
                  },
                  {
                    "name": "deviceCategory",
                    "value": "smartphone"
                  },
                  {
                    "name": "priceType",
                    "value": "OC"
                  },
                  {
                    "name": "fulfillmentWaiver",
                    "value": "overnight"
                  },
                  {
                    "name": "productKey",
                    "value": "prod32812"
                  },
                  {
                    "name": "sku",
                    "value": "sku32812v13"
                  },
                  {
                    "name": "maxSKUQtyPerOrder",
                    "value": "5"
                  },
                  {
                    "name": "defaultFreeOvernightShip",
                    "value": "none"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "Indirect_Delivery_Shipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "nextDayDeliveryShipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "twoDayDeliveryShipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "Pick_In_Store"
                  }
                ]
              },
              "productOffering": {
                "id": "legacy-wireless-dummy-offer-id",
                "productOfferingType": "Mobile_Offer",
                "productOfferingGroup": "CT_Mobility"
              },
              "productOrderItem": [
                {
                  "id": "ef38a63d-d765-4f50-9499-9b1b4576e17b",
                  "quantity": 1,
                  "action": "add",
                  "billingAccount": {
                    "id": "554646504216",
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "ratingType": "postpaid"
                  },
                  "itemPrice": [
                    {
                      "description": "AT&T Installment Plan",
                      "name": "Monthly Installment Amount",
                      "priceType": "RC",
                      "priceCategory": "equipmentRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "promotion",
                          "immediatePromotionId": "PROMO_ITEM_01",
                          "chargeType": "Credit"
                        }
                      ],
                      "recurringChargePeriodLength": 36,
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      },
                      "installmentOption": {
                        "id": "10300001",
                        "name": "NE36MNUP",
                        "@type": "LEASE",
                        "installmentOption": "mandatory",
                        "numberOfInstallments": 36
                      },
                      "taxIncluded": "Excluded"
                    },
                    {
                      "name": "Device Finance",
                      "priceType": "OC",
                      "priceCategory": "equipmentOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "chargeType": "Credit"
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "chargeType": "Credit"
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "taxIncluded": "Included",
                      "role": "DueUponFulfillment"
                    },
                    {
                      "name": "Device MSRP",
                      "priceType": "OC",
                      "priceCategory": "equipmentOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "taxIncluded": "Included",
                      "role": "DueUponFulfillment"
                    },
                    {
                      "description": "AT&T Installment Plan Down payment",
                      "name": "Device downpayment",
                      "priceType": "OC",
                      "priceCategory": "equipmentOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "role": "DWNPAY"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      }
                    },
                    {
                      "priceType": "RC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "promotion",
                          "immediatePromotionId": "PROMO_ITEM_01",
                          "chargeType": "Credit"
                        }
                      ],
                      "recurringChargePeriodLength": 36,
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      }
                    }
                  ],
                  "product": {
                    "productCharacteristic": [
                      {
                        "name": "billingCode",
                        "value": "6638E"
                      },
                      {
                        "name": "deviceCategory",
                        "value": "smartphone"
                      },
                      {
                        "name": "priceType",
                        "value": "OC"
                      },
                      {
                        "name": "fulfillmentWaiver",
                        "value": "overnight"
                      },
                      {
                        "name": "productKey",
                        "value": "prod32812"
                      },
                      {
                        "name": "sku",
                        "value": "sku32812v13"
                      },
                      {
                        "name": "maxSKUQtyPerOrder",
                        "value": "5"
                      },
                      {
                        "name": "defaultFreeOvernightShip",
                        "value": "none"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "Indirect_Delivery_Shipping"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "nextDayDeliveryShipping"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "twoDayDeliveryShipping"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "Pick_In_Store"
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "Mobile_Device_prod32812_sku32812v13",
                    "name": "Apple iPhone 16 Pro Max - 1TB - Black Titanium",
                    "productOfferingType": "Mobile_Device"
                  },
                  "creationDate": "2025-07-15T07:07:48.663Z",
                  "characteristic": [
                    {
                      "name": "commitmentTermId",
                      "value": "10300001"
                    },
                    {
                      "name": "contractLength",
                      "value": "36"
                    },
                    {
                      "name": "contractType",
                      "value": "monthly"
                    },
                    {
                      "name": "commitmentTerm",
                      "value": "NE36MNUP"
                    }
                  ]
                },
                {
                  "id": "160b4b5c-662c-4b43-80d9-6f8f9fb39c71",
                  "quantity": 1,
                  "action": "add",
                  "billingAccount": {
                    "id": "554646504216",
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "ratingType": "postpaid"
                  },
                  "itemPrice": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "appliedTax": [
                          {
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            }
                          }
                        ]
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "appliedTax": [
                          {
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            }
                          }
                        ]
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "taxIncluded": "Excluded",
                      "role": "DueUponFulfillment"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "appliedTax": [
                          {
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            }
                          }
                        ]
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      }
                    }
                  ],
                  "product": {},
                  "productOffering": {
                    "id": "Mobile_Sim_27100010_27100010-sku9350228",
                    "productOfferingType": "SIM"
                  },
                  "creationDate": "2025-07-15T07:07:48.663Z"
                }
              ],
              "creationDate": "2025-07-15T07:07:48.663Z"
            }
          ],
          "relatedParty": [
            {
              "id": "554646504216",
              "role": "owner",
              "@referredType": "TLGAccount"
            },
            {
              "id": "uuid_6006",
              "role": "Profile",
              "extensions": [
                {
                  "name": "user-type",
                  "value": "registered"
                }
              ]
            },
            {
              "id": "554646504216",
              "role": "customer",
              "extensions": [
                {
                  "name": "zipCode",
                  "value": "94801"
                },
                {
                  "name": "customerType",
                  "value": "Consumer"
                },
                {
                  "name": "customerSubType",
                  "value": "Individual"
                }
              ],
              "@referredType": "TLGAccount"
            }
          ],
          "state": "inProgress",
          "@type": "DEFAULT",
          "immediatePromotion": [
            {
              "id": "PROMO_ITEM_01",
              "promotion": {
                "id": "wrlspr-40762",
                "name": "ONLINE ONLY: You're getting a $200 bill credit with new voice on elig. unlimited plan (speed restr's apply). Credits start within 3 bills.",
                "description": "ONLINE ONLY: You're getting a $200 bill credit with new voice on elig. unlimited plan (speed restr's apply). Credits start within 3 bills.",
                "type": "BILLCREDITWITHQUALIFIER",
                "applyPolicy": "AUTOMATIC"
              },
              "triggerItem": [
                {
                  "id": "ef38a63d-d765-4f50-9499-9b1b4576e17b"
                }
              ],
              "benefitItem": [
                {
                  "id": "ef38a63d-d765-4f50-9499-9b1b4576e17b"
                }
              ]
            }
          ],
          "validation": {
            "readyToCheckout": false
          }
        }
      },
      "Sample_Response_Retrieve_Cart_PUT_200": {
        "value": {
          "@type": "DEFAULT",
          "agreement": [
            {
              "extensions": [
                {
                  "name": "TermsandConditionsAcceptance",
                  "value": "Y"
                },
                {
                  "name": "TermsandConditionsVersion",
                  "value": "v5"
                },
                {
                  "name": "TermsandConditionsAcceptanceDate",
                  "value": "2022-03-23T11:38:46.421Z"
                },
                {
                  "name": "TermsandConditionsContentCategory",
                  "value": "TnC"
                },
                {
                  "name": "TermsandConditionsKey",
                  "value": "ECONSENT"
                },
                {
                  "name": "TermsandConditionsConsentText",
                  "value": "I have read and agree to the Consent to Electronic Delivery of Disclosures and Communications"
                }
              ],
              "name": "ECONSENT"
            },
            {
              "extensions": [
                {
                  "name": "TermsandConditionsVersion",
                  "value": "v4"
                },
                {
                  "name": "TermsandConditionsAcceptance",
                  "value": "Y"
                },
                {
                  "name": "TermsandConditionsConsentText",
                  "value": "I have read and agree to the AT&T Consumer Service Agreement and the included provisions for binding individual arbitration."
                },
                {
                  "name": "TermsandConditionsAcceptanceDate",
                  "value": "2022-03-23T11:38:46.421Z"
                },
                {
                  "name": "TermsandConditionsContentCategory",
                  "value": "TnC"
                },
                {
                  "name": "TermsandConditionsKey",
                  "value": "CSA"
                }
              ],
              "name": "CSA"
            },
            {
              "extensions": [
                {
                  "name": "TermsandConditionsKey",
                  "value": "PAPERLESS_DISCLOSURE"
                },
                {
                  "name": "TermsandConditionsAcceptance",
                  "value": "Y"
                },
                {
                  "name": "TermsandConditionsContentCategory",
                  "value": "Disclosure"
                },
                {
                  "name": "TermsandConditionsVersion",
                  "value": "v1"
                },
                {
                  "name": "TermsandConditionsAcceptanceDate",
                  "value": "2022-03-23T11:38:46.421Z"
                },
                {
                  "name": "TermsandConditionsConsentText",
                  "value": "<empty/>"
                }
              ],
              "name": "PAPERLESS_DISCLOSURE"
            },
            {
              "extensions": [
                {
                  "name": "TermsandConditionsAcceptance",
                  "value": "Y"
                },
                {
                  "name": "TermsandConditionsConsentText",
                  "value": "NA"
                },
                {
                  "name": "TermsandConditionsKey",
                  "value": "AE"
                },
                {
                  "name": "TermsandConditionsAcceptanceDate",
                  "value": "2022-03-23T11:38:46.421Z"
                },
                {
                  "name": "TermsandConditionsContentCategory",
                  "value": "TnC"
                },
                {
                  "name": "TermsandConditionsVersion",
                  "value": "NA"
                }
              ],
              "name": "AE"
            }
          ],
          "category": "WBB_Offer",
          "channel": [
            {
              "id": "SelfService",
              "name": "SelfService",
              "role": "Customer"
            }
          ],
          "externalId": "24-248035274711460",
          "id": "97da50d0-aa9c-11ec-818f-01c49e663c0c",
          "immediatePromotion": [
            {
              "id": "b54980e8-46b1-4347-91af-6f913e7396f4",
              "promotion": {
                "applyPolicy": "automatic",
                "description": "$5 off for customer maintaining AutoPay",
                "id": "a61be2e9-1cd9-4086-bf38-d760dafe7deb",
                "name": "$5 off for Autopay - WBB5DABP"
              }
            }
          ],
          "lastUpdate": "2022-03-23T11:35:20.000Z",
          "orderDate": "2022-03-23T11:38:58.000Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "zz5Hi54VV9cnckA0mYLh_NK4MUt9sdZV0gvWdoghvfA"
            },
            {
              "name": "application",
              "value": "CAAS"
            }
          ],
          "orderTotalPrice": [
            {
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 45
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 45
                }
              },
              "immediatePayOption": {
                "payImmediately": false
              },
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 50
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 50
                }
              },
              "priceAlteration": [
                {
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 5
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 5
                    }
                  },
                  "priceType": "RC"
                }
              ],
              "priceType": "RC",
              "recurringChargePeriod": "month",
              "recurringChargePeriodLength": 1
            },
            {
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "immediatePayOption": {
                "payImmediately": false
              },
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "priceType": "OC"
            },
            {
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "immediatePayOption": {
                "payImmediately": true
              },
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "priceType": "Immediate"
            },
            {
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "immediatePayOption": {
                "payImmediately": true
              },
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "priceType": "OC"
            },
            {
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 100
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 100
                }
              },
              "immediatePayOption": {
                "payImmediately": true,
                "payOption": "Mandatory"
              },
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 100
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 100
                }
              },
              "priceType": "OC",
              "role": "ADVPAY"
            }
          ],
          "payment": [
            {
              "amount": {
                "unit": "USD"
              },
              "characteristic": [
                {
                  "name": "ownerType",
                  "value": "Customer"
                }
              ],
              "id": "RTB,XX,b012b9f7-73fd-403e-aa21-08903b2dc727,24-248035274711460",
              "role": "autopay"
            }
          ],
          "productOrderItem": [
            {
              "action": "add",
              "billingAccount": {
                "@type": "billingAccount",
                "id": "552912021473"
              },
              "id": "74edc45c-6cd2-4553-94b6-9e4f97553208",
              "itemPrice": [
                {
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 100
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 100
                    }
                  },
                  "id": "PO_ITEM_ID_ADVPAY_01",
                  "immediatePayOption": {
                    "payImmediately": true,
                    "payOption": "Mandatory"
                  },
                  "name": "Advanced Pay",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 100
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 100
                    }
                  },
                  "priceType": "OC",
                  "role": "ADVPAY"
                }
              ],
              "itemTotalPrice": [
                {
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 45
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 45
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "priceAlteration": [
                    {
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 5
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 5
                        }
                      },
                      "priceType": "RC"
                    }
                  ],
                  "priceType": "RC",
                  "recurringChargePeriod": "month",
                  "recurringChargePeriodLength": 1
                },
                {
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 100
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 100
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": true,
                    "payOption": "Mandatory"
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 100
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 100
                    }
                  },
                  "priceType": "OC",
                  "role": "ADVPAY"
                }
              ],
              "payment": [
                {
                  "amount": {
                    "unit": "USD",
                    "value": 100
                  },
                  "authorizationCode": "OL_DF191111F23393",
                  "characteristic": [
                    {
                      "name": "ownerType",
                      "value": "Customer"
                    }
                  ],
                  "id": "RTB,XX,b012b9f7-73fd-403e-aa21-08903b2dc727,24-248035274711460",
                  "role": "ADVPAY"
                }
              ],
              "product": {
                "isBundle": true,
                "productRelationship": [
                  {
                    "product": {
                      "referenceId": "58f13731-d318-4eca-b354-4695fe4cd237"
                    },
                    "relationshipType": "subscriptionRelation"
                  },
                  {
                    "product": {
                      "referenceId": "d66c7b39-d14e-4a52-b282-ee252c8a8af9"
                    },
                    "relationshipType": "subscriptionRelation"
                  },
                  {
                    "product": {
                      "referenceId": "641d03a5-a721-41c1-87e8-7c9c4b27fdfa"
                    },
                    "relationshipType": "subscriptionRelation"
                  },
                  {
                    "product": {
                      "referenceId": "1d390867-cb76-4170-8c87-891ebe5d4e4d"
                    },
                    "relationshipType": "subscriptionRelation"
                  }
                ]
              },
              "productOffering": {
                "id": "52165303-5d47-4827-a51c-f7ab08570210",
                "name": "Unlimited 5G WBB Bundle",
                "productOfferingType": "WBB_Offer"
              },
              "productOrderItem": [
                {
                  "action": "add",
                  "billingAccount": {
                    "@type": "billingAccount",
                    "id": "552912021473"
                  },
                  "characteristic": [
                    {
                      "name": "TermsandConditionsKey",
                      "value": "WBBTC"
                    },
                    {
                      "name": "TermsandConditionsAcceptanceDate",
                      "value": "2022-03-23T11:38:46.421Z"
                    },
                    {
                      "name": "TermsandConditionsAcceptance",
                      "value": "Y"
                    },
                    {
                      "name": "TermsandConditionsContentCategory",
                      "value": "TOS"
                    },
                    {
                      "name": "TermsandConditionsConsentText",
                      "value": "NA"
                    },
                    {
                      "name": "TermsandConditionsVersion",
                      "value": "v1"
                    }
                  ],
                  "id": "b39de027-8b65-4910-94d0-6c88f75b477e",
                  "itemPrice": [
                    {
                      "finalPrice": {
                        "appliedTax": [
                          {
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxDefinition": {
                              "exemptionType": "NONE",
                              "isExemption": false,
                              "taxJurisdiction": {
                                "id": "DEFAULT_ID",
                                "level": "NA",
                                "name": "NA"
                              },
                              "taxRate": 0,
                              "taxType": "ERROR"
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 7.5
                            }
                          },
                          {
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxDefinition": {
                              "exemptionType": "NONE",
                              "isExemption": false,
                              "taxJurisdiction": {
                                "id": "DEFAULT_ID",
                                "level": "NA",
                                "name": "NA"
                              },
                              "taxRate": 0,
                              "taxType": "ERROR"
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 37.5
                            }
                          }
                        ],
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 45
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      },
                      "name": "Unlimited 5G Fixed Wireless Price",
                      "price": {
                        "appliedTax": [
                          {
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxDefinition": {
                              "exemptionType": "NONE",
                              "isExemption": false,
                              "taxJurisdiction": {
                                "id": "DEFAULT_ID",
                                "level": "NA",
                                "name": "NA"
                              },
                              "taxRate": 0,
                              "taxType": "ERROR"
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 8.333334
                            }
                          },
                          {
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxDefinition": {
                              "exemptionType": "NONE",
                              "isExemption": false,
                              "taxJurisdiction": {
                                "id": "DEFAULT_ID",
                                "level": "NA",
                                "name": "NA"
                              },
                              "taxRate": 0,
                              "taxType": "ERROR"
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 41.666666
                            }
                          }
                        ],
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 50
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 50
                        }
                      },
                      "priceAlteration": [
                        {
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit",
                          "immediatePromotionId": "b54980e8-46b1-4347-91af-6f913e7396f4",
                          "price": {
                            "appliedTax": [
                              {
                                "taxAmount": {
                                  "unit": "USD",
                                  "value": 0
                                },
                                "taxDefinition": {
                                  "exemptionType": "NONE",
                                  "isExemption": false,
                                  "taxJurisdiction": {
                                    "id": "DEFAULT_ID",
                                    "level": "NA",
                                    "name": "NA"
                                  },
                                  "taxRate": 0,
                                  "taxType": "ERROR"
                                },
                                "taxableAmount": {
                                  "unit": "USD",
                                  "value": 0.833333
                                }
                              },
                              {
                                "taxAmount": {
                                  "unit": "USD",
                                  "value": 0
                                },
                                "taxDefinition": {
                                  "exemptionType": "NONE",
                                  "isExemption": false,
                                  "taxJurisdiction": {
                                    "id": "DEFAULT_ID",
                                    "level": "NA",
                                    "name": "NA"
                                  },
                                  "taxRate": 0,
                                  "taxType": "ERROR"
                                },
                                "taxableAmount": {
                                  "unit": "USD",
                                  "value": 4.166667
                                }
                              }
                            ],
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 5
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 5
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxIncludedAmount": {
                              "unit": "USD",
                              "value": 5
                            }
                          },
                          "priceType": "RC"
                        }
                      ],
                      "priceType": "RC",
                      "recurringChargePeriod": "month",
                      "recurringChargePeriodLength": 1,
                      "role": "Price",
                      "taxIncluded": "Included"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 45
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      },
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 50
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 50
                        }
                      },
                      "priceAlteration": [
                        {
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 5
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxIncludedAmount": {
                              "unit": "USD",
                              "value": 5
                            }
                          },
                          "priceType": "RC"
                        }
                      ],
                      "priceType": "RC",
                      "recurringChargePeriod": "month",
                      "recurringChargePeriodLength": 1
                    }
                  ],
                  "payment": [
                    {
                      "characteristic": [
                        {
                          "name": "ownerType",
                          "value": "Customer"
                        }
                      ],
                      "id": "RTB,XX,b012b9f7-73fd-403e-aa21-08903b2dc727,24-248035274711460"
                    }
                  ],
                  "product": {
                    "place": [
                      {
                        "id": "00000D1G6S",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "WBB5G_ServicePriority",
                        "value": "1"
                      }
                    ],
                    "productRelationship": [
                      {
                        "product": {
                          "productCharacteristic": [
                            {
                              "name": "Call_Forward",
                              "value": "CFC,CFI"
                            },
                            {
                              "name": "Mobile_Security_and_Call_Protect",
                              "value": "AEGB"
                            },
                            {
                              "name": "Voice_Mail",
                              "value": "VVM1"
                            },
                            {
                              "name": "WiFi_Calling",
                              "value": "PVWIFI"
                            },
                            {
                              "name": "HD_Voice",
                              "value": "VOLTE"
                            },
                            {
                              "name": "Caller_ID",
                              "value": "CLI"
                            },
                            {
                              "name": "Call_Waiting",
                              "value": "CW"
                            },
                            {
                              "name": "Call_Hold",
                              "value": "CH"
                            },
                            {
                              "name": "6_Way_Calling",
                              "value": "MPTY"
                            },
                            {
                              "name": "Message_Notification",
                              "value": "VMWI"
                            }
                          ],
                          "productSpecification": {
                            "id": "19e22569-dafc-4c25-b3fd-80724f32c262",
                            "name": "Voice",
                            "productSpecificationType": "ff16d2b8f0124bd5943d6b53c2bb91f3"
                          },
                          "referenceId": "c2a606f9-6530-4add-8e3e-146ca201afe6"
                        },
                        "relationshipType": "bundled"
                      },
                      {
                        "product": {
                          "productCharacteristic": [
                            {
                              "name": "Messaging",
                              "value": "Messaging"
                            }
                          ],
                          "productSpecification": {
                            "id": "159cbcd5-dfc8-4e3f-923a-b7364c31600f",
                            "name": "Messaging",
                            "productSpecificationType": "ff16d2b8f0124bd5943d6b53c2bb91f3"
                          },
                          "referenceId": "edb74297-7014-4423-af15-93ccadf52cac"
                        },
                        "relationshipType": "bundled"
                      },
                      {
                        "product": {
                          "productCharacteristic": [
                            {
                              "name": "Product_Type"
                            },
                            {
                              "name": "Phone_Number"
                            },
                            {
                              "name": "Resource_Category",
                              "value": "Standard"
                            }
                          ],
                          "productRelationship": [
                            {
                              "product": {
                                "referenceId": "ff0c729d-fac2-4ab9-be39-ac5aeda8a991"
                              },
                              "relationshipType": "enabledBy"
                            },
                            {
                              "product": {
                                "referenceId": "d1dfc627-1ef5-46da-94ee-73140134e51c"
                              },
                              "relationshipType": "enabledBy"
                            },
                            {
                              "product": {
                                "referenceId": "ef01832f-b194-4eca-9587-a4de3f98dc31"
                              },
                              "relationshipType": "enabledBy"
                            },
                            {
                              "product": {
                                "referenceId": "cc08ab2a-7113-489e-9111-a2fd1d876d5f"
                              },
                              "relationshipType": "enabledBy"
                            }
                          ],
                          "productSpecification": {
                            "id": "fa27ef86-8845-43e3-b796-e2746061276e",
                            "name": "Phone Number",
                            "productSpecificationType": "624cab5783844806b863fbd2d44816de"
                          },
                          "referenceId": "87725613-c2b1-42fe-b222-e855e011c337"
                        },
                        "relationshipType": "bundled"
                      },
                      {
                        "product": {
                          "productCharacteristic": [
                            {
                              "name": "Network_Prioritization_and_Data_Speed",
                              "value": "SPTIER"
                            },
                            {
                              "name": "Data",
                              "value": "DATA"
                            },
                            {
                              "name": "Streaming_Quality"
                            }
                          ],
                          "productSpecification": {
                            "id": "9565a59d-bbb8-48dd-baa7-e5ad75d1c85f",
                            "name": "Data",
                            "productSpecificationType": "ff16d2b8f0124bd5943d6b53c2bb91f3"
                          },
                          "referenceId": "da65db87-3266-44f2-877b-5b28cf0deb7f"
                        },
                        "relationshipType": "bundled"
                      },
                      {
                        "product": {
                          "referenceId": "ff0c729d-fac2-4ab9-be39-ac5aeda8a991"
                        },
                        "relationshipType": "enabledBy"
                      },
                      {
                        "product": {
                          "referenceId": "58f13731-d318-4eca-b354-4695fe4cd237"
                        },
                        "relationshipType": "subscriptionRelation"
                      },
                      {
                        "product": {
                          "referenceId": "d1dfc627-1ef5-46da-94ee-73140134e51c"
                        },
                        "relationshipType": "enabledBy"
                      },
                      {
                        "product": {
                          "referenceId": "d66c7b39-d14e-4a52-b282-ee252c8a8af9"
                        },
                        "relationshipType": "subscriptionRelation"
                      },
                      {
                        "product": {
                          "referenceId": "ef01832f-b194-4eca-9587-a4de3f98dc31"
                        },
                        "relationshipType": "enabledBy"
                      },
                      {
                        "product": {
                          "referenceId": "641d03a5-a721-41c1-87e8-7c9c4b27fdfa"
                        },
                        "relationshipType": "subscriptionRelation"
                      },
                      {
                        "product": {
                          "referenceId": "cc08ab2a-7113-489e-9111-a2fd1d876d5f"
                        },
                        "relationshipType": "enabledBy"
                      },
                      {
                        "product": {
                          "referenceId": "1d390867-cb76-4170-8c87-891ebe5d4e4d"
                        },
                        "relationshipType": "subscriptionRelation"
                      }
                    ],
                    "productSpecification": {
                      "id": "c430db80-e8ae-4cdc-8549-aeb3422f4048",
                      "name": "WBB Data Only",
                      "productSpecificationType": "9232a535673642e5877d8ef0a02830a4"
                    }
                  },
                  "productOffering": {
                    "id": "0de8cea7-1d0e-421e-8d7f-8c01b32a173a",
                    "name": "Unlimited 5G WBB Plan",
                    "productOfferingType": "WBB_Plan"
                  },
                  "quantity": 1
                },
                {
                  "action": "add",
                  "billingAccount": {
                    "@type": "billingAccount",
                    "id": "552912021473"
                  },
                  "fulfillmentMethod": "DF",
                  "id": "a3e3f2ec-2716-422f-8d1d-b0402aee5eeb",
                  "itemPrice": [
                    {
                      "price": {
                        "appliedTax": [
                          {
                            "component": {
                              "amount": {
                                "unit": "USD",
                                "value": 14.166667
                              },
                              "revenueType": "Equipment",
                              "splitCode": "WBB",
                              "taxCode": "XY60"
                            },
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "originErrorCode",
                                  "value": "OTS.missing.required.field"
                                },
                                {
                                  "key": "originErrorMessage",
                                  "value": "Service Address is/are required."
                                },
                                {
                                  "key": "originHttpCode",
                                  "value": "400"
                                }
                              ]
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxDefinition": {
                              "exemptionType": "NONE",
                              "isExemption": false,
                              "taxJurisdiction": {
                                "id": "DEFAULT_ID",
                                "level": "NA",
                                "name": "NA"
                              },
                              "taxRate": 0,
                              "taxType": "ERROR",
                              "validFor": {
                                "endDateTime": "2050-08-24T15:00:45.703Z",
                                "startDateTime": "2050-08-24T15:00:45.703Z"
                              }
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 14.166667
                            }
                          }
                        ],
                        "component": {
                          "amount": {
                            "unit": "USD",
                            "value": 14.166667
                          },
                          "revenueType": "Equipment",
                          "splitCode": "WBB",
                          "taxCode": "XY60"
                        },
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 85
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 85
                        }
                      }
                    }
                  ],
                  "product": {
                    "place": [
                      {
                        "id": "00000D1G6S",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Delivery_Method",
                        "value": "Indirect_Delivery_Shipping"
                      },
                      {
                        "name": "SKU",
                        "value": "200AA"
                      },
                      {
                        "name": "SKU_With_Prefix",
                        "value": "RTL.200AA"
                      },
                      {
                        "name": "Manufacturer",
                        "value": "WNC"
                      },
                      {
                        "name": "Model",
                        "value": "CGW450-400"
                      },
                      {
                        "name": "Installation_Method",
                        "value": "Self_Installation"
                      },
                      {
                        "name": "Return_Method",
                        "value": "Return_by_box_Shipment"
                      },
                      {
                        "name": "IMEI_Type",
                        "value": "LC"
                      },
                      {
                        "name": "LTE_Type",
                        "value": "B"
                      }
                    ],
                    "productRelationship": [
                      {
                        "product": {
                          "referenceId": "58f13731-d318-4eca-b354-4695fe4cd237"
                        },
                        "relationshipType": "subscriptionRelation"
                      },
                      {
                        "product": {
                          "referenceId": "d66c7b39-d14e-4a52-b282-ee252c8a8af9"
                        },
                        "relationshipType": "subscriptionRelation"
                      },
                      {
                        "product": {
                          "referenceId": "641d03a5-a721-41c1-87e8-7c9c4b27fdfa"
                        },
                        "relationshipType": "subscriptionRelation"
                      },
                      {
                        "product": {
                          "referenceId": "1d390867-cb76-4170-8c87-891ebe5d4e4d"
                        },
                        "relationshipType": "subscriptionRelation"
                      }
                    ],
                    "productSpecification": {
                      "id": "17621712-c142-4ae5-addb-e120a3ae66db",
                      "name": "BB WNC CGW450 400",
                      "productSpecificationType": "0a12bfd7-06a3-47bc-bee6-6f66cce7fa13"
                    }
                  },
                  "productOffering": {
                    "id": "417df8e3-2026-455b-aa79-03d3545e7f6d",
                    "name": "BB WNC CGW450 400",
                    "productOfferingType": "Rented_Equipment"
                  },
                  "productOfferingGroupOption": {
                    "groupOptionId": "0cb38e74-81cf-11ec-9599-bd9f77ca6a1e"
                  },
                  "quantity": 1
                }
              ],
              "quantity": 1
            },
            {
              "action": "add",
              "extensions": {
                "initDeliveryByFromDate": "2022-03-31T00:00:00.000Z",
                "initDeliveryByToDate": "2022-04-06T00:00:00.000Z",
                "initPromiseFromDate": "2022-03-30T00:00:00.000Z",
                "initPromiseToDate": "2022-04-05T00:00:00.000Z"
              },
              "fulfillmentMethod": "DF",
              "id": "3966819f-b146-42de-bcea-176d712a7f23",
              "itemPrice": [
                {
                  "description": "The fee is triggered when Standard Shipping 2 Days Option is selected",
                  "finalPrice": {
                    "appliedTax": [
                      {
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxDefinition": {
                          "exemptionType": "NONE",
                          "isExemption": false,
                          "taxJurisdiction": {
                            "id": "DEFAULT_ID",
                            "level": "NA",
                            "name": "NA"
                          },
                          "taxRate": 0,
                          "taxType": "ERROR"
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      }
                    ],
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": true
                  },
                  "name": "2 Days Shipping Fee",
                  "price": {
                    "appliedTax": [
                      {
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxDefinition": {
                          "exemptionType": "NONE",
                          "isExemption": false,
                          "taxJurisdiction": {
                            "id": "DEFAULT_ID",
                            "level": "NA",
                            "name": "NA"
                          },
                          "taxRate": 0,
                          "taxType": "ERROR"
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      }
                    ],
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "priceType": "OC",
                  "role": "Price",
                  "taxIncluded": "Excluded"
                }
              ],
              "itemTotalPrice": [
                {
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "priceType": "OC"
                },
                {
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": true
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "priceType": "Immediate"
                },
                {
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": true
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "priceType": "OC"
                }
              ],
              "product": {
                "place": [
                  {
                    "id": "00000D1G6S",
                    "name": "Home",
                    "role": "shipping"
                  }
                ],
                "productSpecification": {
                  "id": "2ca9a28c-26ec-4bd0-ae17-c96d16c1a2df",
                  "name": "Shipping",
                  "productSpecificationType": "31c8bcd3-8c2d-4483-98be-d092f497049f"
                },
                "referenceId": "417df8e3-2026-455b-aa79-03d3545e7f6d"
              },
              "productOffering": {
                "id": "83c8f5a0-d210-4c2c-a7a2-35e27ec193a3",
                "name": "Standard Shipping 2 Days",
                "productOfferingType": "Delivery_Method"
              },
              "productOrderItemRelationship": [
                {
                  "id": "a3e3f2ec-2716-422f-8d1d-b0402aee5eeb",
                  "relationshipType": "Delivering"
                }
              ]
            }
          ],
          "relatedParty": [
            {
              "@referredType": "individual",
              "@type": "individual",
              "extensions": [
                {
                  "name": "creditApplicationId",
                  "value": "U20220323406036420"
                },
                {
                  "name": "unifiedCreditTransactionId",
                  "value": "U20220323406036420"
                },
                {
                  "name": "unifiedPolicyTransactionId",
                  "value": "P20210818000068739"
                }
              ],
              "id": "b012b9f7-73fd-403e-aa21-08903b2dc727",
              "role": "owner"
            },
            {
              "@referredType": "customer",
              "@type": "Residential",
              "extensions": [
                {
                  "name": "CustomerType",
                  "value": "Consumer"
                },
                {
                  "name": "CustomerSubType",
                  "value": "Individual"
                },
                {
                  "name": "ACPTransactionId",
                  "value": "23423423423"
                },
                {
                  "name": "ACPClassification",
                  "value": "NON_TRIBAL"
                }
              ],
              "id": "ead357be-c5af-40ac-a812-91e547abbf0a",
              "role": "customer"
            },
            {
              "@referredType": "profile",
              "extensions": [
                {
                  "name": "userId",
                  "value": "qay_sa449665@yopmail.com"
                },
                {
                  "name": "userType",
                  "value": "anonymous"
                },
                {
                  "name": "anonymousId",
                  "value": "623b0447-2338-a524-7c5f-4d83f54b3317"
                }
              ],
              "id": "556253437",
              "role": "profile"
            }
          ],
          "state": "acknowledged",
          "validation": {
            "configuration": [
              {
                "required": true,
                "status": "complete",
                "subtype": "string",
                "type": "DigitalID"
              },
              {
                "required": true,
                "status": "complete",
                "subtype": "string",
                "type": "CustomerProfile"
              },
              {
                "required": true,
                "status": "complete",
                "subtype": "string",
                "type": "BillingAccount"
              },
              {
                "required": true,
                "status": "complete",
                "subtype": "string",
                "type": "CreditInfo"
              },
              {
                "required": true,
                "status": "complete",
                "subtype": "string",
                "type": "FulfillmentOptions"
              },
              {
                "properties": [
                  {
                    "name": "TermsAndConditionsKeys",
                    "value": "ECONSENT,CSA,PAPERLESS_DISCLOSURE"
                  }
                ],
                "required": true,
                "status": "complete",
                "subtype": "string",
                "type": "Terms"
              },
              {
                "properties": [
                  {
                    "name": "TermsAndConditionsKeys",
                    "value": "AE"
                  },
                  {
                    "name": "autoPayEligiblePaymentTenders",
                    "value": "ACH,CreditCard,DebitCard"
                  },
                  {
                    "name": "dueTodayEligiblePaymentTenders",
                    "value": "CreditCard,DebitCard"
                  },
                  {
                    "name": "sourceLocation",
                    "value": "XX"
                  },
                  {
                    "name": "sourceSystem",
                    "value": "RTB"
                  }
                ],
                "required": true,
                "status": "complete",
                "subtype": "autopay",
                "type": "payment"
              }
            ],
            "status": "Warning",
            "readyToCheckout": true,
            "validationMessage": [
              {
                "text": "Provided Immediate Promotion is not Qualified",
                "type": "nonQualifiedImmediatePromotionValidationMessage",
                "parameter": [
                  {
                    "name": "immediatePromotionId",
                    "value": [
                      "71a78f2b-6b46-4efb-8713-72da015ad062"
                    ]
                  },
                  {
                    "name": "benefitItemId",
                    "value": [
                      "cae4912f-bf1e-4cd1-a9d9-b7098b10b7b0"
                    ]
                  },
                  {
                    "name": "promotionCatalogId",
                    "value": [
                      "d4004905-45ef-49a5-8313-b1ede9a68c42"
                    ]
                  }
                ],
                "severity": "Warning"
              },
              {
                "text": "Provided Immediate Promotion is not Qualified",
                "type": "nonQualifiedImmediatePromotionValidationMessage",
                "parameter": [
                  {
                    "name": "immediatePromotionId",
                    "value": [
                      "71a78f2b-6b46-4efb-8713-72da015ad062"
                    ]
                  },
                  {
                    "name": "benefitItemId",
                    "value": [
                      "cae4912f-bf1e-4cd1-a9d9-b7098b10b7b0"
                    ]
                  },
                  {
                    "name": "promotionCatalogId",
                    "value": [
                      "d4004905-45ef-49a5-8313-b1ede9a68c42"
                    ]
                  }
                ],
                "severity": "Warning"
              },
              {
                "text": "TRANSACTION_ID_NOT_FOUND",
                "type": "ACP_WARNING"
              }
            ]
          }
        }
      }
    },
    "parameters": {
      "idpctxuuid": {
        "in": "header",
        "name": "idpctx-uuid",
        "description": "Mandatory user id header 'idpctx-uuid'.",
        "required": true,
        "schema": {
          "type": "string",
          "default": "userId12345"
        }
      },
      "cartId": {
        "name": "cart-id",
        "in": "path",
        "description": "CartId i.e identifier of the ProductOrder.",
        "required": true,
        "schema": {
          "type": "string",
          "default": "cb7605f0-9b3e-11ec-b7a2-b93d4c24b7bd"
        }
      },
      "channel": {
        "in": "header",
        "name": "x-att-clientid",
        "description": "Channel. EG. ATTR, ECOMM, SelfService",
        "required": false,
        "schema": {
          "type": "string",
          "default": "ATTR"
        }
      },
      "mockscenario": {
        "in": "header",
        "name": "mock-scenario",
        "description": "Optional header 'mock-scenario' to trigger mock mode.",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "ATTR_Cart_Initialization",
            "aia_with_only_baseOffer"
          ]
        }
      },
      "idpctxAcctInfoCustType": {
        "in": "header",
        "name": "idpctx-acctinfocustype",
        "description": "Account information customer type. Example: wireless.",
        "required": false,
        "schema": {
          "type": "string",
          "default": "wireless"
        }
      },
      "idpctxLinkedWirelessAccNums": {
        "in": "header",
        "name": "idpctx-linkedwirelessaccnums",
        "description": "Linked wireless account numbers.",
        "required": false,
        "schema": {
          "type": "string",
          "default": "554135092834"
        }
      }
    },
    "securitySchemes": {
      "basic": {
        "type": "http",
        "description": "This API supports Basic Authentication.\n",
        "scheme": "basic"
      }
    }
  }
}