{
  "openapi": "3.1.2",
  "info": {
    "title": "Cart APIs",
    "version": "1.0.3",
    "description": "This is an api to manage draft order operations shopping cart operations",
    "contact": {
      "name": "Omni API Support",
      "email": "DL-OmniAdapter@att.com"
    }
  },
  "servers": [
    {
      "url": "https://partner.att.com/omni-svcs"
    }
  ],
  "security": [],
  "tags": [
    {
      "name": "Cart Creation",
      "description": "APIs for managing shopping cart operations"
    },
    {
      "name": "Number Selection",
      "description": "APIs for VOIP number selection — new line acquisition and port-in flows for SMB customers"
    }
  ],
  "paths": {
    "/v1/carts": {
      "post": {
        "tags": [
          "Cart Creation"
        ],
        "summary": "Create cart",
        "description": "Create a new shopping cart for product ordering. The cart can be created empty or with initial items. This operation initializes a draft order that can be modified before submission.",
        "operationId": "createCart",
        "parameters": [
          {
            "$ref": "#/components/parameters/ParameterAppname"
          },
          {
            "$ref": "#/components/parameters/headerCustomerUUID"
          }
        ],
        "requestBody": {
          "description": "Cart creation request containing channel information, optional cart items, and related party details",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CartCreate"
              },
              "examples": {
                "create_cart_smb_crp_with_broadband_plan": {
                  "x-tags": [
                    "Fiber-Change-Business"
                  ],
                  "value": {
                    "channel": {
                      "id": "IND",
                      "name": "IND",
                      "extensions": [
                        {
                          "name": "subChannel",
                          "value": "bestbuy"
                        },
                        {
                          "name": "subChannelGroup",
                          "value": "National Retail"
                        },
                        {
                          "name": "agentId",
                          "value": "s12345"
                        }
                      ]
                    },
                    "items": [
                      {
                        "action": "replace offer to",
                        "productOfferingType": "BB_Offer",
                        "productOfferingId": "ibbndl_prod11480227_prod9310299_prod9040808",
                        "quantity": 1,
                        "billingAccount": {
                          "ratingType": "fiber",
                          "id": "124865774"
                        },
                        "product": {
                          "place": [
                            {
                              "id": "00001KDQA5",
                              "role": "SA",
                              "name": "ServiceAddress"
                            }
                          ]
                        }
                      }
                    ],
                    "relatedParty": [
                      {
                        "name": "RS and I Inc",
                        "@referredType": "dealerLocation",
                        "id": "G5MGG",
                        "role": "partner"
                      },
                      {
                        "referredType": "customer",
                        "role": "customer",
                        "extensions": [
                          {
                            "name": "CustomerType",
                            "value": "Business"
                          },
                          {
                            "name": "CustomerSubType",
                            "value": "Consumer Small Office"
                          }
                        ]
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Cart successfully created. Returns the complete ProductOrder object with cart ID, items and validation status.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProductOrder"
                },
                "examples": {
                  "add_smb_crp_bb_addon_items_response_expand_ProductOrder": {
                    "x-tags": [
                      "Fiber-Change-Business"
                    ],
                    "$ref": "#/components/examples/Cart_SMB_BB_CRP_Addon_response"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request - Missing fields, Invalid input data, validation failure",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/WrappedPartnerServiceError"
                },
                "examples": {
                  "InvalidInput": {
                    "value": {
                      "error": {
                        "errorId": "EXTSALESOPS-CART_CREATE-SHOPPING_CART-0001",
                        "message": "Required fields are missing",
                        "errorSystemId": "extsalesops",
                        "details": [
                          {
                            "code": "INT-0001",
                            "message": "Required request header 'idpctx-uuid' for method parameter type String is not present"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/WrappedPartnerServiceError"
                },
                "examples": {
                  "ShoppingCartSystemError": {
                    "summary": "System Error",
                    "value": {
                      "error": {
                        "errorId": "EXTSALESOPS-CART_CREATE-SHOPPING_CART-0005",
                        "message": "Downstream service error occurred for cart creation",
                        "errorSystemId": "shoppingcart",
                        "details": [
                          {
                            "code": "SC-B50000",
                            "message": "Internal exception occurred while processing the request"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/carts/{cartId}/items": {
      "post": {
        "tags": [
          "Cart Creation"
        ],
        "summary": "Add item to cart",
        "description": "Add one or more items to an existing shopping cart. Items can include products, devices, services, or accessories. This operation updates the cart pricing and validates item compatibility.",
        "operationId": "addItemToCart",
        "parameters": [
          {
            "name": "cartId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "example": "26-46236265737394"
            }
          },
          {
            "$ref": "#/components/parameters/ParameterAppname"
          },
          {
            "$ref": "#/components/parameters/headerCustomerUUID"
          }
        ],
        "requestBody": {
          "description": "Request containing cart items to be added, including product offerings, billing account information, and product details",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Items"
              },
              "examples": {
                "bb_add_items_request": {
                  "x-tags": [
                    "Fiber-Provide-Consumer",
                    "Fiber-Move-Consumer",
                    "Fiber-Change-Consumer",
                    "Fiber-Provide-Business",
                    "Fiber-Move-Business",
                    "Fiber-Change-Business"
                  ],
                  "value": {
                    "channel": {
                      "id": "IND",
                      "name": "IND",
                      "extensions": [
                        {
                          "name": "subChannel",
                          "value": "bestbuy"
                        },
                        {
                          "name": "subChannelGroup",
                          "value": "National Retail"
                        },
                        {
                          "name": "agentId",
                          "value": "s12345"
                        }
                      ]
                    },
                    "items": [
                      {
                        "action": "add",
                        "productOfferingType": "BB_HomeTechProtectionPlan",
                        "productOfferingId": "prod12120279",
                        "rootBundleProductOfferId": "ibbndl_prod12120279_prod8580387_rwd-32300005_rwd-40800001_rwd-42900039_prod9040405",
                        "quantity": 1,
                        "product": {
                          "place": [
                            {
                              "id": "{{placeId}}",
                              "role": "SA",
                              "name": "ServiceAddress"
                            }
                          ]
                        }
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Items successfully added to cart. Returns the updated ProductOrder object with recalculated pricing and updated item list.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProductOrder"
                },
                "examples": {
                  "add_bb_items_response_expand_ProductOrder": {
                    "x-tags": [
                      "Fiber-Provide-Consumer",
                      "Fiber-Move-Consumer",
                      "Fiber-Change-Consumer",
                      "Fiber-Provide-Business",
                      "Fiber-Move-Business",
                      "Fiber-Change-Business"
                    ],
                    "$ref": "#/components/examples/example-expandedProductOrder"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request - Invalid input data, validation failure, or item not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/WrappedPartnerServiceError"
                },
                "examples": {
                  "Item_not_found": {
                    "value": {
                      "error": {
                        "errorId": "EXTSALESOPS-CART_CREATE-SHOPPING_CART-0002",
                        "message": "Invalid cart request",
                        "errorSystemId": "shoppingcart",
                        "details": [
                          {
                            "code": "SC-V40004",
                            "message": "Request does not have any items to be added in the cart"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "patch": {
        "tags": [
          "Cart Creation"
        ],
        "summary": "Modify a specific item in the cart",
        "description": "Modify a specific item in an existing shopping cart. This operation supports changes to directory listings, heading names, and addon configurations for Business/SMB scenarios.",
        "operationId": "patchCartItem",
        "parameters": [
          {
            "name": "cartId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "example": "37021650-6b52-11f1-846f-d7dc492f6a14"
            }
          },
          {
            "$ref": "#/components/parameters/ParameterAppname"
          },
          {
            "$ref": "#/components/parameters/headerCustomerUUID"
          }
        ],
        "requestBody": {
          "description": "Request containing item modifications for directory listing changes, heading name updates, or addon configuration changes",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CartCreate"
              },
              "examples": {
                "smb_change_directory_listing_offer": {
                  "x-tags": [
                    "Fiber-Change-Business",
                    "Fiber-Provide-Business"
                  ],
                  "description": "Change the directory listing offer",
                  "value": {
                    "channel": {
                      "id": "IND",
                      "name": "IND"
                    },
                    "items": [
                      {
                        "action": "add",
                        "productOfferingType": "voip_DirectoryListing",
                        "rootBundleProductOrderItemId": "4658f9fb-8cf6-442a-b93c-14563a37405c",
                        "productOrderItemId": "bb_voip_DirectoryListing_id",
                        "productOfferingId": "prod9040811"
                      }
                    ]
                  }
                },
                "smb_change_directory_listing_name": {
                  "x-tags": [
                    "Fiber-Change-Business",
                    "Fiber-Provide-Business"
                  ],
                  "description": "Change the directory listing name apply only to Primary voip line.",
                  "value": {
                    "channel": {
                      "id": "IND",
                      "name": "IND"
                    },
                    "items": [
                      {
                        "action": "add",
                        "productOfferingType": "voip",
                        "productOrderItemId": "4658f9fb-8cf6-442a-b93c-14563a37405c",
                        "productOfferingId": "prod9040248",
                        "product": {
                          "productCharacteristic": [
                            {
                              "name": "listingName",
                              "value": "auto express"
                            }
                          ]
                        }
                      }
                    ]
                  }
                },
                "smb_change_directory_heading_name": {
                  "x-tags": [
                    "Fiber-Change-Business",
                    "Fiber-Provide-Business"
                  ],
                  "description": "Change the directory listing heading name apply only to Primary voip line.",
                  "value": {
                    "channel": {
                      "id": "IND",
                      "name": "IND"
                    },
                    "items": [
                      {
                        "action": "add",
                        "productOfferingType": "voip",
                        "productOrderItemId": "4658f9fb-8cf6-442a-b93c-14563a37405c",
                        "productOfferingId": "prod9040248",
                        "product": {
                          "productCharacteristic": [
                            {
                              "name": "headingName",
                              "value": "auto & car"
                            }
                          ]
                        }
                      }
                    ]
                  }
                },
                "smb_change_directory_offer_and_heading_name": {
                  "x-tags": [
                    "Fiber-Change-Business",
                    "Fiber-Provide-Business"
                  ],
                  "description": "Change the directory offer and heading name apply only to Primary voip line.",
                  "value": {
                    "channel": {
                      "id": "IND",
                      "name": "IND"
                    },
                    "items": [
                      {
                        "action": "add",
                        "productOfferingType": "voip",
                        "rootBundleProductOrderItemId": "4658f9fb-8cf6-442a-b93c-14563a37405c",
                        "productOrderItemId": "bb_voip_DirectoryListing_id",
                        "productOfferingId": "prod9040811"
                      },
                      {
                        "action": "add",
                        "productOfferingType": "voip",
                        "productOrderItemId": "4658f9fb-8cf6-442a-b93c-14563a37405c",
                        "productOfferingId": "prod9040248",
                        "product": {
                          "productCharacteristic": [
                            {
                              "name": "headingName",
                              "value": "auto & car"
                            }
                          ]
                        }
                      }
                    ]
                  }
                },
                "smb_change_addons_static_ip_offer": {
                  "x-tags": [
                    "Fiber-Change-Business",
                    "Fiber-Provide-Business"
                  ],
                  "description": "If static IP was added, to revert to dynamic IP - Simply delete the static IP line which will automatically add default Dynamic IP.",
                  "value": {
                    "channel": {
                      "id": "IND",
                      "name": "IND"
                    },
                    "items": [
                      {
                        "action": "add",
                        "productOfferingType": "BB_IPAddressType",
                        "productOrderItemId": "4658f9fb-8cf6-442a-b93c-14563a37405c",
                        "productOfferingId": "prod9040360"
                      }
                    ]
                  }
                },
                "smb_change_addons_dynamic_ip_offer": {
                  "x-tags": [
                    "Fiber-Change-Business",
                    "Fiber-Provide-Business"
                  ],
                  "description": "Change the dynamic IP offer",
                  "value": {
                    "channel": {
                      "id": "IND",
                      "name": "IND"
                    },
                    "items": [
                      {
                        "action": "add",
                        "productOfferingType": "BB_IPAddressType",
                        "productOrderItemId": "4658f9fb-8cf6-442a-b93c-14563a37405c",
                        "productOfferingId": "prod9040358"
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Item successfully modified in cart. Returns the updated ProductOrder object with recalculated pricing.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProductOrder"
                },
                "examples": {
                  "smb_change_directory_listing_offer_response": {
                    "x-tags": [
                      "Fiber-Change-Business",
                      "Fiber-Provide-Business"
                    ],
                    "$ref": "#/components/examples/Cart_SMB_BB_CRP_directory_list_offer_response"
                  },
                  "smb_change_directory_listing_name_response": {
                    "x-tags": [
                      "Fiber-Change-Business",
                      "Fiber-Provide-Business"
                    ],
                    "$ref": "#/components/examples/Cart_SMB_BB_CRP_update_directory_list_name_response"
                  },
                  "smb_change_directory_heading_name_response": {
                    "x-tags": [
                      "Fiber-Change-Business",
                      "Fiber-Provide-Business"
                    ],
                    "$ref": "#/components/examples/Cart_SMB_BB_CRP_update_directory_list_heading_name_response"
                  },
                  "smb_change_static_ip_offer_response": {
                    "x-tags": [
                      "Fiber-Change-Business",
                      "Fiber-Provide-Business"
                    ],
                    "$ref": "#/components/examples/Cart_SMB_BB_CRP_update_static_ip_offer_response"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request - Invalid input data, validation failure, or item not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/WrappedPartnerServiceError"
                },
                "examples": {
                  "InvalidInput": {
                    "value": {
                      "error": {
                        "errorId": "EXTSALESOPS-CART_CREATE-SHOPPING_CART-0001",
                        "message": "Required fields are missing",
                        "errorSystemId": "extsalesops",
                        "details": [
                          {
                            "code": "INT-0001",
                            "message": "Required request header 'idpctx-uuid' for method parameter type String is not present"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/WrappedPartnerServiceError"
                },
                "examples": {
                  "PatchItemSystemError": {
                    "summary": "System Error",
                    "value": {
                      "error": {
                        "errorId": "EXTSALESOPS-CART_CREATE-SHOPPING_CART-0005",
                        "message": "Downstream service error occurred for cart item modification",
                        "errorSystemId": "shoppingcart",
                        "details": [
                          {
                            "code": "SC-B50000",
                            "message": "Internal exception occurred while processing the request"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "Cart Creation"
        ],
        "summary": "Delete all items from cart",
        "description": "Remove all items from the shopping cart, effectively emptying the cart while keeping the cart entity active. This operation maintains the cart ID and related party information.",
        "operationId": "deleteItemsfromCart",
        "parameters": [
          {
            "name": "cartId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "example": "26-46236265737394"
            }
          },
          {
            "$ref": "#/components/parameters/ParameterAppname"
          },
          {
            "$ref": "#/components/parameters/headerCustomerUUID"
          }
        ],
        "responses": {
          "200": {
            "description": "All items successfully deleted from cart. Returns confirmation message.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "example": "26-46236265737394"
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request - Invalid input data, validation failure, or item not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/WrappedPartnerServiceError"
                },
                "examples": {
                  "Item_not_found": {
                    "value": {
                      "error": {
                        "errorId": "EXTSALESOPS-CART_CREATE-SHOPPING_CART-0002",
                        "message": "Invalid cart request",
                        "errorSystemId": "shoppingcart",
                        "details": [
                          {
                            "code": "SC-V40001",
                            "message": "Provided item doesn't present in the cart"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/carts/{cartId}/number-selection": {
      "post": {
        "tags": [
          "Number Selection"
        ],
        "summary": "VOIP Number Selection",
        "description": "Enables SMB customers to acquire a new VOIP phone number (NL) or port an existing non-AT&T number (LNP) during the fiber broadband provide flow. New Line and Line Number Porting flows based on the portType field. For LNP, if the number is not eligible for porting, a PortEligibilityResponse is returned instead of a ProductOrder.",
        "operationId": "numberSelection",
        "parameters": [
          {
            "name": "cartId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Unique identifier for the shopping cart.",
            "example": "88c9d840-498a-11f1-ac9c-0d9679709a53"
          },
          {
            "$ref": "#/components/parameters/ParameterAppname"
          }
        ],
        "requestBody": {
          "description": "Number selection request containing port type, product type, zip code, product order item ID, and optionally the existing number for port-in.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NumberSelectionRequest"
              },
              "examples": {
                "SMB_new_line_number_selection": {
                  "$ref": "#/components/examples/SMB_VOIP_NL_request"
                },
                "SMB_lnp_port_eligible": {
                  "$ref": "#/components/examples/SMB_VOIP_LNP_eligible_request"
                },
                "SMB_port_not_eligible": {
                  "$ref": "#/components/examples/SMB_VOIP_LNP_not_eligible_request"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Number selection successful. For NL and LNP-eligible flows, returns the updated ProductOrder with the VOIP number assigned. For LNP-not-eligible flows, returns a PortEligibilityResponse with ineligibility details.",
            "content": {
              "application/json": {
                "schema": {
                  "anyOf": [
                    {
                      "$ref": "#/components/schemas/ProductOrder"
                    },
                    {
                      "$ref": "#/components/schemas/PortEligibilityResponse"
                    }
                  ]
                },
                "examples": {
                  "SMB_new_line_number_selection": {
                    "$ref": "#/components/examples/SMB_VOIP_NL_response"
                  },
                  "SMB_lnp_port_eligible": {
                    "$ref": "#/components/examples/SMB_VOIP_LNP_eligible_response"
                  },
                  "SMB_port_not_eligible": {
                    "$ref": "#/components/examples/SMB_VOIP_LNP_not_eligible_response"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request - Missing required fields or invalid input data",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/WrappedPartnerServiceError"
                },
                "examples": {
                  "MissingRequiredFields": {
                    "summary": "Missing required fields",
                    "value": {
                      "error": {
                        "errorId": "EXTSALESOPS-NS-0001",
                        "message": "Required fields are missing",
                        "errorSystemId": "extsalesops",
                        "details": [
                          {
                            "code": "INT-0001",
                            "message": "portType is required"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not Found - Cart not found for provided cartId",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/WrappedPartnerServiceError"
                },
                "examples": {
                  "CartNotFound": {
                    "summary": "Cart not found",
                    "value": {
                      "error": {
                        "errorId": "EXTSALESOPS-NS-0004",
                        "message": "Cart not found for provided cartId",
                        "errorSystemId": "extsalesops",
                        "details": [
                          {
                            "code": "SC-V40400",
                            "message": "Provided CartId '88c9d840-498a-11f1-ac9c-0d9679709a53' is invalid."
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/WrappedPartnerServiceError"
                },
                "examples": {
                  "InternalServerError": {
                    "summary": "Internal server error",
                    "value": {
                      "error": {
                        "errorId": "EXTSALESOPS-NS-0005",
                        "message": "Internal server error",
                        "errorSystemId": "extsalesops",
                        "details": [
                          {
                            "code": "INT-5001",
                            "message": "An unexpected error occurred while processing the number selection request"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/carts/{cartId}/items/{productOrderItemId}": {
      "delete": {
        "tags": [
          "Cart Creation"
        ],
        "summary": "Delete a specific item from cart",
        "description": "Remove a specific item from the shopping cart by its product order item ID. This operation recalculates cart pricing and validates remaining items for compatibility.",
        "operationId": "deleteItemfromCart",
        "parameters": [
          {
            "name": "cartId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "example": "26-46236265737394"
            }
          },
          {
            "name": "productOrderItemId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "example": "UUID number"
            }
          },
          {
            "$ref": "#/components/parameters/ParameterAppname"
          },
          {
            "$ref": "#/components/parameters/headerCustomerUUID"
          }
        ],
        "responses": {
          "200": {
            "description": "Item successfully deleted from cart. Returns the updated ProductOrder object with recalculated pricing and updated item list.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProductOrder"
                },
                "examples": {
                  "add-item-response": {
                    "value": {
                      "externalId": "26-46236265737394"
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request - Invalid input data, validation failure, or item not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/WrappedPartnerServiceError"
                },
                "examples": {
                  "Item_not_found": {
                    "value": {
                      "error": {
                        "errorId": "EXTSALESOPS-CART_CREATE-SHOPPING_CART-0002",
                        "message": "Invalid cart request",
                        "errorSystemId": "shoppingcart",
                        "details": [
                          {
                            "code": "SC-V40001",
                            "message": "Provided item doesn't present in the cart"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "CartCreate": {
        "description": "Request body for creating a new shopping cart.",
        "type": "object",
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/SalesChannel"
          },
          "items": {
            "description": "Collection of product order items to be included in the cart at creation time",
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "productOrderItemId": {
                  "type": "string",
                  "description": "Unique identifier for the product order item (UUID format)",
                  "example": "random uuid uniquely identifying a line 10000001-3f41-49bf-a6cf-6f65caa650ca"
                },
                "rootBundleProductOrderItemId": {
                  "type": "string",
                  "description": "Reference to the parent product order item ID for bundled items",
                  "example": "Id of parent productOrderItemId 0b690f7e-3f41-49bf-a6cf-6f65caa650ca"
                },
                "rootBundleProductOfferId": {
                  "type": "string",
                  "description": "Unique identifier of the product offering from the catalog",
                  "example": "Mobile_Device_pkey73001_sku2680262"
                },
                "productOfferingType": {
                  "type": "string",
                  "description": "Type of product offering being ordered (e.g., Mobile_Device, BB_Offer, Mobile_Plan)",
                  "example": "Mobile_Device"
                },
                "productOfferingId": {
                  "type": "string",
                  "description": "Unique identifier of the product offering from the catalog",
                  "example": "Mobile_Device_pkey73001_sku2680262"
                },
                "action": {
                  "$ref": "#/components/schemas/OrderItemActionType"
                },
                "requestedCompletionDate": {
                  "type": "string",
                  "format": "date-time",
                  "description": "Requested date and time for order completion",
                  "example": "2026-01-12T22:25:10.713Z"
                },
                "actionReason": {
                  "type": "object",
                  "description": "Reason and details for the action being performed on the product order item",
                  "properties": {
                    "reasonText": {
                      "type": "string",
                      "description": "Free-form text explaining the reason for the action",
                      "example": "Memo text required if selected"
                    },
                    "name": {
                      "type": "string",
                      "description": "Code or name of the reason (e.g., LC for Lost/Stolen)",
                      "example": "LC"
                    },
                    "action": {
                      "type": "string",
                      "description": "The action associated with this reason",
                      "example": "add"
                    }
                  }
                },
                "billingAccount": {
                  "type": "object",
                  "description": "Billing account information associated with the product order item",
                  "properties": {
                    "ratingType": {
                      "type": "string",
                      "description": "Rating type for the billing account (e.g., postpaid, prepaid, fiber)",
                      "example": "postpaid"
                    },
                    "id": {
                      "type": "string",
                      "description": "Unique identifier of the billing account",
                      "example": "556165899573"
                    },
                    "characteristic": {
                      "type": "array",
                      "description": "A structure used to describe characteristics of the billing account",
                      "items": {
                        "$ref": "#/components/schemas/KeyValueObject"
                      }
                    }
                  }
                },
                "product": {
                  "type": "object",
                  "description": "Product details including place, characteristics, and related information",
                  "properties": {
                    "place": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "Unique identifier of the place/location",
                            "example": "440104980"
                          },
                          "name": {
                            "type": "string",
                            "description": "Name or type of the place",
                            "example": "ppuAddress"
                          },
                          "role": {
                            "type": "string",
                            "description": "Role of the place in the order context (e.g., PPU - Pickup, SA - Service Address)",
                            "example": "PPU"
                          },
                          "characteristic": {
                            "type": "array",
                            "description": "A structure used to describe characteristics of the place",
                            "items": {
                              "$ref": "#/components/schemas/KeyValueObject"
                            }
                          }
                        }
                      }
                    },
                    "productCharacteristic": {
                      "type": "array",
                      "description": "A structure used to describe characteristics of the product",
                      "items": {
                        "$ref": "#/components/schemas/Characteristic"
                      }
                    }
                  }
                },
                "characteristic": {
                  "$ref": "#/components/schemas/Characteristic"
                }
              }
            }
          },
          "relatedParty": {
            "description": "Parties related to the cart such as customer, dealer, and account owner",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedParty"
            }
          }
        }
      },
      "NumberSelectionRequest": {
        "description": "Request body for VOIP number selection. Supports new line (NL) acquisition and port-in (LNP) flows for SMB customers. The lines array allows selecting numbers for one or more VOIP lines in a single request.",
        "type": "object",
        "required": [
          "portType",
          "productType",
          "zipCode",
          "lines"
        ],
        "properties": {
          "portType": {
            "type": "string",
            "description": "Type of number selection: NL for new line acquisition, LNP for line number porting.",
            "enum": [
              "NL",
              "LNP"
            ],
            "example": "NL"
          },
          "productType": {
            "type": "string",
            "description": "Type of product for number selection.",
            "enum": [
              "WLS",
              "VOIP"
            ],
            "example": "VOIP"
          },
          "zipCode": {
            "type": "string",
            "description": "ZIP code for market lookup to determine rate center and state information.",
            "example": "30022"
          },
          "lines": {
            "type": "array",
            "description": "Array of VOIP line items for number selection. Each entry identifies a product order item and, for LNP flows, the existing number to port.",
            "minItems": 1,
            "items": {
              "type": "object",
              "required": [
                "productOrderItemId"
              ],
              "properties": {
                "productOrderItemId": {
                  "type": "string",
                  "description": "Unique identifier for the VOIP product order item in the cart to associate the selected number with.",
                  "example": "2345f474-51ed-4ad6-91db-bd25459d01d7"
                },
                "existingNumber": {
                  "type": "string",
                  "description": "Existing phone number to port in. Required when portType is LNP.",
                  "example": "4045551234"
                }
              }
            }
          }
        }
      },
      "PortEligibilityResponse": {
        "description": "Response returned when a port-in (LNP) number is not eligible for porting. Contains eligibility indicator, ineligibility reason, market code, and former service provider.",
        "type": "object",
        "properties": {
          "portEligibilityInd": {
            "type": "string",
            "description": "Port eligibility indicator: Y for eligible, N for not eligible.",
            "example": "N"
          },
          "portIneligibilityDesc": {
            "type": "string",
            "description": "Description of why the number is not eligible for porting.",
            "example": "The number is not eligible for porting. The number belongs to a carrier that does not support VOIP porting in this market."
          },
          "marketCode": {
            "type": "string",
            "description": "Market code determined from the ZIP code lookup.",
            "example": "ATL"
          },
          "formerSP": {
            "type": "string",
            "description": "Former service provider for the existing number.",
            "example": "T-Mobile"
          }
        }
      },
      "Items": {
        "description": "Request body for adding items to an existing cart. An item represents a product order item that will be part of the final order.",
        "type": "object",
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/SalesChannel"
          },
          "items": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "productOfferingType": {
                  "type": "string"
                },
                "productOrderItemId": {
                  "type": "string",
                  "example": "random uuid uniquely identifying a line 10000001-3f41-49bf-a6cf-6f65caa650ca"
                },
                "productOfferingId": {
                  "type": "string",
                  "example": "Mobile_Device_pkey73001_sku2680262"
                },
                "action": {
                  "type": "string",
                  "example": "noChange"
                },
                "actionReason": {
                  "type": "object",
                  "properties": {
                    "reasonText": {
                      "type": "string",
                      "example": "Memo text required if selected"
                    },
                    "name": {
                      "type": "string",
                      "example": "LC"
                    },
                    "action": {
                      "type": "string",
                      "example": "add"
                    }
                  }
                },
                "rootBundleProductOrderItemId": {
                  "type": "string",
                  "example": "10000001-3f41-49bf-a6cf-6f65caa650ca"
                },
                "rootBundleProductOfferId": {
                  "type": "string",
                  "description": "Unique identifier of the product offering from the catalog",
                  "example": "ibbndl_prod12120279_prod8580387_rwd-32300005_rwd-40800001_rwd-42900039_prod9040405"
                },
                "billingAccount": {
                  "type": "object",
                  "properties": {
                    "ratingType": {
                      "type": "string",
                      "example": "postpaid"
                    },
                    "id": {
                      "type": "string",
                      "example": "556165899573"
                    },
                    "characteristic": {
                      "type": "array",
                      "description": "A structure used to describe characteristics of the billing account",
                      "items": {
                        "$ref": "#/components/schemas/KeyValueObject"
                      }
                    }
                  }
                },
                "product": {
                  "type": "object",
                  "properties": {
                    "place": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "example": "440104980"
                          },
                          "name": {
                            "type": "string",
                            "example": "ppuAddress"
                          },
                          "role": {
                            "type": "string",
                            "example": "PPU"
                          },
                          "characteristic": {
                            "type": "array",
                            "description": "A structure used to describe characteristics of the place",
                            "items": {
                              "$ref": "#/components/schemas/KeyValueObject"
                            }
                          }
                        }
                      }
                    },
                    "productCharacteristic": {
                      "type": "array",
                      "description": "A structure used to describe characteristics of the product",
                      "items": {
                        "$ref": "#/components/schemas/Characteristic"
                      }
                    }
                  }
                },
                "quantity": {
                  "type": "number",
                  "description": "Quantity of the product being ordered",
                  "example": 1
                },
                "characteristic": {
                  "$ref": "#/components/schemas/Characteristic"
                }
              }
            }
          }
        }
      },
      "SalesChannel": {
        "required": [
          "name"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a channel eg. IND."
          },
          "name": {
            "type": "string",
            "description": "Name of the channel eg. IND."
          },
          "extensions": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "name": {
                  "type": "string",
                  "description": "Name of the characteristic",
                  "enum": [
                    "subChannelGroup",
                    "subChannel",
                    "agentId"
                  ]
                },
                "value": {
                  "type": "string",
                  "description": "Value of the characteristic"
                }
              }
            }
          }
        },
        "description": "Sales channel through which the customer is being served."
      },
      "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"
        ]
      },
      "KeyValueObject": {
        "required": [
          "value"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of the characteristic"
          },
          "value": {
            "type": "string",
            "description": "Value of the characteristic"
          }
        },
        "description": "Describes a characteristic of an object or entity using a name/value pair."
      },
      "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."
      },
      "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."
      },
      "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"
      },
      "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",
            "description": "Time period during which the promotion is valid."
          },
          "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": "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": "Reference to the product promotion.\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": "The list of dynamic characteristics related to a specific context.\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",
            "description": "List of characteristics associated with the trigger item.",
            "items": {
              "$ref": "#/components/schemas/ContextCharacteristic"
            }
          },
          "extensions": {
            "type": "object",
            "description": "Additional extensible properties for the trigger item.",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "Item that participated in the promotion qualification.\n"
      },
      "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"
      },
      "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": "Reference to a product offering used as a free offer benefit by the promotion."
      },
      "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"
      },
      "DurationPolicy": {
        "type": "object",
        "properties": {
          "duration": {
            "$ref": "#/components/schemas/Quantity",
            "description": "Duration amount and unit for the policy."
          },
          "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",
            "description": "Time period during which the duration policy is effective."
          },
          "terminationPolicy": {
            "type": "string",
            "description": "Defines the termination policy upon duration end date\n"
          },
          "extensions": {
            "type": "object",
            "description": "Additional extensible properties for the duration policy.",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "Policy for calculating 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",
            "description": "Additional extensible properties for the related trigger item.",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "A relation to a specific trigger item. For example, for a 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 the 'role' field.\n"
      },
      "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",
            "description": "Reference to the price alteration associated with the promotion action."
          },
          "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",
            "description": "Policy for calculating the duration of the promotion action."
          },
          "validFor": {
            "$ref": "#/components/schemas/TimePeriod",
            "description": "Time period during which the promotion action is valid."
          },
          "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",
            "description": "Additional extensible properties for the promotion action.",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "Action of the promotion. Customers can receive benefits associated with the action if the conditions in the promotion pattern are fulfilled.\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",
            "description": "List of promotion actions applied to the benefit item.",
            "items": {
              "$ref": "#/components/schemas/PromotionAction"
            }
          },
          "extensions": {
            "type": "object",
            "description": "Additional extensible properties for the benefit item.",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "Item that received the promotion benefit, which is a benefit granted through the promotion (e.g., discount, allowance, free services).\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",
            "description": "Additional extensible properties for the modification reason.",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "Modification reason associated with the action performed on the product offering that is related to the order item.\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",
            "description": "List of items that triggered the promotion qualification.",
            "items": {
              "$ref": "#/components/schemas/TriggerItem"
            }
          },
          "benefitItem": {
            "type": "array",
            "description": "List of items that received the promotion benefits.",
            "items": {
              "$ref": "#/components/schemas/BenefitItem"
            }
          },
          "immediatePromotionCharacteristic": {
            "type": "array",
            "description": "List of characteristics associated with the immediate promotion.",
            "items": {
              "$ref": "#/components/schemas/ContextCharacteristic"
            }
          },
          "reason": {
            "$ref": "#/components/schemas/ModifyReason",
            "description": "Reason for modifying the immediate promotion."
          },
          "relatedParty": {
            "$ref": "#/components/schemas/RelatedParty",
            "description": "Related party associated with the immediate promotion."
          },
          "extensions": {
            "type": "object",
            "description": "Additional extensible properties for the immediate promotion.",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "Immediate promotion.\n"
      },
      "ProductConfiguration": {
        "title": "ProductConfiguration",
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Product Id"
          }
        }
      },
      "AgreementRef": {
        "required": [],
        "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": ""
      },
      "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."
      },
      "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."
      },
      "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"
      },
      "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"
          }
        }
      },
      "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": "The parameters that may impact the price.\n"
      },
      "TaxJurisdiction": {
        "required": [
          "level",
          "name"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "level": {
            "type": "string"
          },
          "id": {
            "type": "string"
          }
        },
        "description": "Tax jurisdiction."
      },
      "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": "Tax definition."
      },
      "Tax": {
        "type": "object",
        "properties": {
          "key": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        }
      },
      "TaxExtensions": {
        "type": "object",
        "properties": {
          "Tax": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Tax"
            }
          }
        }
      },
      "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": {
            "type": "object",
            "$ref": "#/components/schemas/TaxExtensions"
          }
        },
        "description": "Calculated tax response."
      },
      "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."
      },
      "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": "The period length of the recurring charge.\n"
          },
          "alterationType": {
            "type": "string",
            "description": "Type of the alteration.\n"
          },
          "promotionActionId": {
            "type": "string",
            "description": "Unique identifier of the promotion action triggering this price alteration.\n"
          },
          "immediatePromotionId": {
            "type": "string",
            "description": "Unique identifier of the promotion instance.\n"
          },
          "alterationProductOfferingPriceId": {
            "type": "string",
            "description": "Unique identifier of the product offering price on behalf of which the price alteration was given.\n"
          },
          "alterationBundleProductOfferingId": {
            "type": "string",
            "description": "Unique identifier of the bundle product offering on behalf of which the price alteration was given.\n"
          },
          "alterationApplyOrder": {
            "type": "integer",
            "description": "Order of the alteration price appliance.\n"
          },
          "chargeType": {
            "type": "string",
            "description": "Charge type represented by the price alteration. The supported values are: debit, discount, credit.\n"
          },
          "prorationFactor": {
            "type": "number",
            "description": "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."
      },
      "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": "The payment options for the product offering price payment. The payment options can indicate whether the price must or might be paid immediately. In addition, the payment options include an indication whether the price should be included in the immediate payment or not. If 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 true or false based on a customer decision.\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": "Represents a payment amount.\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": "Represents an installment option for a price.\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": "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": "The waive and override data of a price.\n"
      },
      "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."
      },
      "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": "Relation to another applied billing rate.\n"
      },
      "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": "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": "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": "The role of the price, for example, price, bundle price alteration, and so on.\n"
          },
          "payment": {
            "type": "array",
            "description": "Payment performed for a specific order price.\n",
            "items": {
              "$ref": "#/components/schemas/PaymentRef"
            }
          },
          "prorationFactor": {
            "type": "number",
            "description": "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"
      },
      "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."
      },
      "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"
          }
        }
      },
      "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"
        ]
      },
      "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"
      },
      "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"
      },
      "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"
      },
      "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."
      },
      "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"
      },
      "ProductRefOrValue": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the product"
          },
          "referenceId": {
            "description": "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"
      },
      "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": "Type of the product offering\n"
          },
          "productOfferingTypeGroup": {
            "type": "string",
            "description": "Type of the product offering type group\n"
          },
          "productOfferingGroup": {
            "type": "string",
            "description": "Type of the product offering group\n"
          },
          "primary": {
            "type": "boolean",
            "description": "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."
      },
      "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."
      },
      "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."
      },
      "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"
      },
      "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"
      },
      "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."
      },
      "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"
      },
      "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"
      },
      "ProductStatusType": {
        "type": "string",
        "description": "Possible values for the status of the product",
        "enum": [
          "created",
          "pendingActive",
          "cancelled",
          "active",
          "pendingTerminate",
          "terminated",
          "suspended",
          "aborted "
        ]
      },
      "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."
      },
      "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": "Indicates whether the order item can be reconfigured.\n",
            "readOnly": true
          },
          "completionDate": {
            "type": "string",
            "description": "Date on which the order item was completed.\n",
            "format": "date-time",
            "readOnly": true
          },
          "requestedStartDate": {
            "type": "string",
            "description": "Date on which the order item was requested to be started.\n",
            "format": "date-time"
          },
          "requestedCompletionDate": {
            "type": "string",
            "description": "Date on which the order item was requested to be completed.\n",
            "format": "date-time"
          },
          "expectedCompletionDate": {
            "type": "string",
            "description": "Date on which the order item is expected to be completed.\n",
            "format": "date-time",
            "readOnly": true
          },
          "retroactiveChangeDate": {
            "type": "string",
            "description": "Past date of a retroactive change performed on the order item.\n",
            "format": "date-time"
          },
          "creationDate": {
            "type": "string",
            "description": "Item creation date.\n",
            "format": "date-time"
          },
          "itemPriceDate": {
            "type": "string",
            "description": "Date according to which the product order item was quoted.\n",
            "format": "date-time"
          },
          "productOfferingGroupOption": {
            "$ref": "#/components/schemas/ProductOfferingGroupOption"
          },
          "modifyReason": {
            "type": "array",
            "description": "Modify Reason.",
            "items": {
              "$ref": "#/components/schemas/ModifyReason"
            }
          },
          "nextAction": {
            "type": "array",
            "description": "Next Action.",
            "items": {
              "$ref": "#/components/schemas/NextAction"
            }
          },
          "relatedImmediatePromotion": {
            "type": "array",
            "description": "List of immediate promotions related to the order item.\n",
            "readOnly": true,
            "items": {
              "$ref": "#/components/schemas/RelatedImmediatePromotion"
            }
          },
          "characteristic": {
            "type": "array",
            "description": "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."
      },
      "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"
          }
        }
      },
      "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."
      },
      "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"
        ]
      },
      "ProductOfferingGroupOption": {
        "type": "object",
        "properties": {
          "groupOptionId": {
            "type": "string",
            "description": "Unique identifier of the product offering group option in the product catalog\n"
          }
        },
        "description": "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": "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": "Reference to the full immediate promotion\n"
      },
      "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"
          }
        }
      },
      "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"
      },
      "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"
        ]
      },
      "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)"
      },
      "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": "Name/value pair of the validation message parameter\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": "Resources that are contained in the validation message\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": "Resource that is associated with the validation message (that is, triggered the validation failure)\n"
      },
      "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": "Message associated with the validation failure\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": "Name/value pair of the configuration change parameters\n"
      },
      "PatchElement": {
        "type": "object",
        "description": "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"
          }
        }
      },
      "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": "Configuration change recommended for a validated resource\n"
      },
      "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": "Message associated with the validation failure\n"
      },
      "Validation": {
        "type": "object",
        "description": "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": {}
      },
      "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": "Date on which the product order was created.\n",
            "format": "date-time",
            "readOnly": true
          },
          "orderPriceDate": {
            "type": "string",
            "description": "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"
            },
            "description": "List of order-level key-value extension objects."
          },
          "productConfiguration": {
            "$ref": "#/components/schemas/ProductConfiguration",
            "description": "Product configuration details for the order."
          },
          "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",
            "description": "Reference to the billing account for the order."
          },
          "channel": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedChannel"
            },
            "description": "List of channels through which the order was placed."
          },
          "note": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Note"
            },
            "description": "List of notes associated with the order."
          },
          "orderTotalPrice": {
            "type": "array",
            "description": "Total price of the order, including all items, charges, and taxes.",
            "items": {
              "$ref": "#/components/schemas/OrderPrice"
            }
          },
          "payment": {
            "type": "array",
            "description": "Payment methods and details associated with the order.",
            "items": {
              "$ref": "#/components/schemas/PaymentProductOrder"
            }
          },
          "productOfferingQualification": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOfferingQualificationRef"
            },
            "description": "List of product offering qualifications for the order."
          },
          "productOrderItem": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOrderItem"
            },
            "description": "List of items included in the product order."
          },
          "quote": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/QuoteRef"
            },
            "description": "List of quote references related to the order."
          },
          "relatedParty": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedParty"
            },
            "description": "List of related entities to the order."
          },
          "state": {
            "$ref": "#/components/schemas/ProductOrderStateType",
            "description": "State of the product order."
          },
          "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"
            },
            "description": "List of immediate promotions applied to the order."
          },
          "validation": {
            "$ref": "#/components/schemas/Validation",
            "description": "Validation results for the order which shows the ready to checkout, ready to submit status and the status of each of the individual configurable entities"
          }
        },
        "required": [],
        "x-examples": {}
      },
      "PartnerServiceError": {
        "type": "object",
        "properties": {
          "errorId": {
            "type": "string",
            "example": "Top level error code"
          },
          "message": {
            "type": "string",
            "example": "Top level error message"
          },
          "errorSystemId": {
            "type": "string",
            "example": "System name"
          },
          "details": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "code": {
                  "type": "string",
                  "example": "Detail code 1"
                },
                "message": {
                  "type": "string",
                  "example": "Detail message 1"
                }
              }
            }
          }
        }
      },
      "WrappedPartnerServiceError": {
        "type": "object",
        "properties": {
          "error": {
            "$ref": "#/components/schemas/PartnerServiceError"
          }
        }
      }
    },
    "parameters": {
      "ParameterAppname": {
        "name": "appname",
        "in": "header",
        "required": false,
        "schema": {
          "type": "string"
        },
        "description": "Application name making the request"
      },
      "headerCustomerUUID": {
        "name": "customerUUID",
        "in": "header",
        "required": false,
        "schema": {
          "type": "string"
        },
        "description": "Customer UUID which can be used to retrieve cart if desired, if left empty, cart will be temporary for that session only"
      }
    },
    "examples": {
      "Cart_SMB_BB_CRP_Addon_response": {
        "value": {
          "id": "bd0bafd0-7571-11f1-a7c6-cd9d4c701cb5",
          "category": "BB_Offer",
          "externalId": "25-782926720839546",
          "orderDate": "2026-07-01T17:24:38.861Z",
          "lastUpdate": "2026-07-01T17:25:21.368Z",
          "orderPriceDate": "2026-07-01T17:25:20.735Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "108050868_08_28_10PM111"
            },
            {
              "name": "cpeRequiredIndicator",
              "value": "false"
            },
            {
              "name": "frequency17MhzIndicator",
              "value": "false"
            },
            {
              "name": "vectoringIndicator",
              "value": "false"
            },
            {
              "name": "profileCode",
              "value": "UvClass18G"
            },
            {
              "name": "selectedNetworkActiveIndicator",
              "value": "N"
            }
          ],
          "channel": [
            {
              "id": "IND",
              "name": "IND",
              "role": "IND",
              "extensions": [
                {
                  "name": "Application",
                  "value": "saraplus"
                }
              ]
            }
          ],
          "orderTotalPrice": [
            {
              "priceType": "RC",
              "priceCategory": "serviceRC",
              "recurringChargePeriod": "month",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 1000
                }
              },
              "priceAlteration": [
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 815
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 815
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 20
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 20
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                }
              ],
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 165
                },
                "marketingAmount": {
                  "unit": "USD",
                  "value": 185
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            },
            {
              "priceType": "OC",
              "priceCategory": "serviceOC",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            }
          ],
          "productOrderItem": [
            {
              "id": "8d1e3c0d-7213-4743-b46c-1c23d8dfc273",
              "quantity": 1,
              "action": "replace offer to",
              "billingAccount": {
                "id": "124865774",
                "characteristic": [
                  {
                    "name": "System_of_Record",
                    "value": "LS-CRM"
                  }
                ]
              },
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 1000
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 815
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 815
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 20
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 20
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 165
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 185
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                },
                {
                  "priceType": "OC",
                  "priceCategory": "serviceOC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "ibbndl_prod11480227_prod9310299_prod9040808_ref",
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "ibbndl_prod11480227_prod9310299_prod9040808_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "ibbndl_prod11480227_prod9310299_prod9040808",
                "name": "AT&T Business Fiber 2000",
                "productOfferingType": "BB_Offer",
                "productOfferingTypeGroup": "BBOffer",
                "productOfferingGroup": "EDS_Broadband"
              },
              "productOrderItem": [
                {
                  "id": "6567e07c-8897-4f84-b8c9-9e73ce2a4cf6",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1000
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 815
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 815
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_2",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_3",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 20
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 20
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_4",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 165
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 185
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1000
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 815
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 815
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 20
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 20
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 165
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 185
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod11480227_ref",
                    "place": [
                      {
                        "id": "00001KDQA5",
                        "name": "ServiceAddress",
                        "role": "SA",
                        "characteristic": [
                          {
                            "name": "fiberNetworkProvider",
                            "value": "ATT"
                          }
                        ]
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Selected_Network_Type",
                        "value": "FTTP-GPON"
                      },
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      },
                      {
                        "name": "hboMaxIncluded",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_prod9310299_prod9040808_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod11480227",
                    "name": "AT&T Business Fiber 2000",
                    "productOfferingType": "BB_Plan",
                    "productOfferingTypeGroup": "BBPlan"
                  },
                  "productOfferingQualificationItem": {
                    "id": "7dd77043-350b-43d8-88e1-22d6c8e54124",
                    "productOfferingQualificationId": "7dd77043-350b-43d8-88e1-22d6c8e54124"
                  },
                  "creationDate": "2026-07-01T17:25:06.016Z",
                  "characteristic": [
                    {
                      "name": "serviceQualificationExpiryDate",
                      "value": "2026-07-03T17:25:06.000Z"
                    }
                  ]
                },
                {
                  "id": "5f03cac1-b4b0-4ae0-b42b-c47be99ab8e5",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "OC",
                      "priceCategory": "serviceOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "priceCategory": "serviceOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9310299_ref",
                    "place": [
                      {
                        "id": "00001KDQA5",
                        "name": "ServiceAddress",
                        "role": "SA",
                        "characteristic": [
                          {
                            "name": "fiberNetworkProvider",
                            "value": "ATT"
                          }
                        ]
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Installation_Method",
                        "value": "Technician_Installation"
                      },
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_prod9310299_prod9040808_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9310299",
                    "name": "Professional Installation - Internet",
                    "productOfferingType": "BB_Installation",
                    "productOfferingTypeGroup": "BBInstallation"
                  },
                  "creationDate": "2026-07-01T17:25:06.016Z",
                  "productOfferingGroupOption": {
                    "groupOptionId": "ibbndl_install_grp_prod9310299"
                  }
                },
                {
                  "id": "7e8414b0-3eda-41ff-a34a-1a1883055d58",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040808_ref",
                    "place": [
                      {
                        "id": "00001KDQA5",
                        "name": "ServiceAddress",
                        "role": "SA",
                        "characteristic": [
                          {
                            "name": "fiberNetworkProvider",
                            "value": "ATT"
                          }
                        ]
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_prod9310299_prod9040808_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040808",
                    "name": "High Speed Internet Equipment Fee",
                    "productOfferingType": "BB_Equipment",
                    "productOfferingTypeGroup": "BB_Equipment"
                  },
                  "creationDate": "2026-07-01T17:25:06.016Z",
                  "productOfferingGroupOption": {
                    "groupOptionId": "ibbndl_equip_grp_prod9040808"
                  }
                }
              ],
              "creationDate": "2026-07-01T17:25:06.016Z"
            }
          ],
          "relatedParty": [
            {
              "id": "124865774",
              "role": "owner",
              "@referredType": "uverseAccount"
            },
            {
              "id": "124865774",
              "role": "customer",
              "extensions": [
                {
                  "name": "customerType",
                  "value": "Consumer"
                },
                {
                  "name": "customerSubType",
                  "value": "Consumer Small Office"
                }
              ],
              "@referredType": "uverseAccount"
            },
            {
              "id": "331391519_0011",
              "role": "Profile"
            }
          ],
          "state": "inProgress",
          "@type": "ServiceCart",
          "immediatePromotion": [
            {
              "id": "PROMOTION_2",
              "promotion": {
                "id": "wrlnpr-60400046",
                "name": "Promotional Offer",
                "description": "Promotional Offer",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89068513"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatrate"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_3",
              "promotion": {
                "id": "wrlnpr-66500027",
                "name": "Up to $750 ETF",
                "description": "Up to $750 ETF",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89129523"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "3"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_4",
              "promotion": {
                "id": "wrlnpr-66900284",
                "name": "$20 off 12 Month 2G w/ $750 ETF",
                "description": "$20 off 12 Month 2G w/ $750 ETF",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89146823"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "12"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            }
          ],
          "validation": {
            "status": "incomplete",
            "readyToCheckout": true,
            "readyToSubmit": false,
            "configuration": [
              {
                "status": "incomplete",
                "type": "DigitalID",
                "required": false,
                "postOrderConfigurable": true
              },
              {
                "status": "complete",
                "type": "CustomerProfile",
                "required": true
              },
              {
                "status": "complete",
                "type": "BillingAccount",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "CreditInfo",
                "required": false
              },
              {
                "status": "complete",
                "type": "FulfillmentOptions",
                "required": true
              },
              {
                "status": "complete",
                "type": "Terms",
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "autopay",
                "properties": [
                  {
                    "name": "TermsAndConditionsKeys",
                    "value": "AP,PAPERLESS_DISCLOSURE"
                  },
                  {
                    "name": "autoPayEligiblePaymentTenders",
                    "value": "ACH,CreditCard,DebitCard"
                  }
                ],
                "required": true
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "ADVPAY",
                "properties": [
                  {
                    "name": "advPayEligiblePaymentTenders",
                    "value": "CreditCard,DebitCard"
                  }
                ],
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "Prorated-RC",
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "Prepaid-RC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Prepaid-OC",
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "DueUponFulfillment",
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "DWNPAY",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Postpaid-OC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "Installation",
                "required": true
              },
              {
                "status": "complete",
                "type": "NumberSelection",
                "required": false
              },
              {
                "status": "complete",
                "type": "AccountSecurity",
                "properties": [
                  {
                    "name": "Questions",
                    "value": "Who is your favorite childhood hero?,What is your favorite restaurant?,Who is your favorite actor?,Who is your favorite singer?"
                  }
                ],
                "required": false
              },
              {
                "status": "incomplete",
                "type": "VoipConfiguration",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Subscription-RC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Subscription-OC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "CardOnFile",
                "required": false
              }
            ]
          }
        }
      },
      "example-expandedProductOrder": {
        "value": {
          "id": "8256a5e0-b5da-11f0-9a9b-a592d05bf939",
          "category": "BB_Offer:BB_AllFiProBundle",
          "orderDate": "2025-10-30T21:50:54.270Z",
          "lastUpdate": "2025-10-30T21:51:00.162Z",
          "orderPriceDate": "2025-10-30T21:51:00.150Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "0b6470f6-21d3-4322-a11b-8e7c51d92253"
            },
            {
              "name": "cpeRequiredIndicator",
              "value": "false"
            },
            {
              "name": "frequency17MhzIndicator",
              "value": "false"
            },
            {
              "name": "profileCode",
              "value": "UvClass18G"
            },
            {
              "name": "vectoringIndicator",
              "value": "false"
            },
            {
              "name": "selectedNetworkActiveIndicator",
              "value": "N"
            }
          ],
          "channel": [
            {
              "id": "SelfService",
              "name": "SelfService",
              "extensions": [
                {
                  "name": "Application",
                  "value": "saraplus"
                }
              ]
            }
          ],
          "orderTotalPrice": [
            {
              "priceType": "RC",
              "priceCategory": "serviceRC",
              "recurringChargePeriod": "month",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 125
                }
              },
              "priceAlteration": [
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 10
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 10
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                }
              ],
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 115
                },
                "marketingAmount": {
                  "unit": "USD",
                  "value": 115
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            },
            {
              "priceType": "OC",
              "priceCategory": "serviceOC",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 99
                }
              },
              "priceAlteration": [
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                }
              ],
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "marketingAmount": {
                  "unit": "USD",
                  "value": 99
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            },
            {
              "priceType": "OTR",
              "priceCategory": "Reward",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 100
                }
              },
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 100
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            }
          ],
          "productOrderItem": [
            {
              "id": "33dfb23e-57ba-4427-9266-579ebadb489d",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "characteristic": [
                  {
                    "name": "autopayIntent",
                    "value": "true"
                  },
                  {
                    "name": "presentationMediaIntent",
                    "value": "email"
                  },
                  {
                    "name": "tenderType",
                    "value": "ACH"
                  }
                ]
              },
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 75
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 10
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 10
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 65
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 65
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                },
                {
                  "priceType": "OC",
                  "priceCategory": "serviceOC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "ibbndl_prod12300348_prod11320255_rwd-40800001_rwd-40500012_rwd-40800030_prod9040405_ref",
                "isBundle": true,
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "ibbndl_prod12300348_prod11320255_rwd-40800001_rwd-40500012_rwd-40800030_prod9040405_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "ibbndl_prod12300348_prod11320255_rwd-40800001_rwd-40500012_rwd-40800030_prod9040405",
                "name": "AT&T Internet 500",
                "productOfferingType": "BB_Offer",
                "productOfferingTypeGroup": "BBOffer",
                "productOfferingGroup": "EDS_Broadband"
              },
              "productOrderItem": [
                {
                  "id": "c615b4be-6386-4720-94fb-e3ca19d8a679",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 75
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 10
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 10
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_2",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 65
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 65
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 75
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 10
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 10
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 65
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 65
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod12300348_ref",
                    "place": [
                      {
                        "id": "00000NGHNZ",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Selected_Network_Type",
                        "value": "FTTP-GPON"
                      },
                      {
                        "name": "BBFootPrint",
                        "value": "FiberKitOptional"
                      },
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      },
                      {
                        "name": "hboMaxIncluded",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod12300348_prod11320255_rwd-40800001_rwd-40500012_rwd-40800030_prod9040405_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod12300348",
                    "name": "AT&T Internet 500",
                    "productOfferingType": "BB_Plan",
                    "productOfferingTypeGroup": "BBPlan"
                  },
                  "productOfferingQualificationItem": {
                    "id": "677154db-b2da-479d-9361-1e479581f3ee",
                    "productOfferingQualificationId": "677154db-b2da-479d-9361-1e479581f3ee"
                  },
                  "creationDate": "2025-10-30T21:50:57.955Z",
                  "characteristic": [
                    {
                      "name": "serviceQualificationExpiryDate",
                      "value": "2025-11-01T21:50:57.000Z"
                    }
                  ]
                },
                {
                  "id": "08e64f92-81f6-4fb3-928e-736cb262a301",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod11320255_ref",
                    "place": [
                      {
                        "id": "00000NGHNZ",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod12300348_prod11320255_rwd-40800001_rwd-40500012_rwd-40800030_prod9040405_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod11320255",
                    "name": "Includes unlimited internet data",
                    "productOfferingType": "BB_UsageAllowance",
                    "productOfferingTypeGroup": "BBUsageAllowance"
                  },
                  "creationDate": "2025-10-30T21:50:57.955Z"
                },
                {
                  "id": "5445eb21-3ec8-45fb-86ec-841baca5c447",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "OC",
                      "priceCategory": "serviceOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "OC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 99
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 99
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_3",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "priceCategory": "serviceOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "OC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 99
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 99
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040405_ref",
                    "place": [
                      {
                        "id": "00000NGHNZ",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Installation_Method",
                        "value": "Technician_Installation"
                      },
                      {
                        "name": "IgnorePricePlan",
                        "value": "true"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod12300348_prod11320255_rwd-40800001_rwd-40500012_rwd-40800030_prod9040405_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040405",
                    "name": "Internet Installation Fee",
                    "productOfferingType": "BB_Installation",
                    "productOfferingTypeGroup": "BBInstallation"
                  },
                  "creationDate": "2025-10-30T21:50:57.955Z",
                  "productOfferingGroupOption": {
                    "groupOptionId": "ibbndl_install_grp_prod9040405"
                  }
                }
              ],
              "creationDate": "2025-10-30T21:50:57.955Z"
            },
            {
              "id": "f147c08d-3f95-4be5-bb87-5789337ab4aa",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "characteristic": [
                  {
                    "name": "autopayIntent",
                    "value": "true"
                  },
                  {
                    "name": "presentationMediaIntent",
                    "value": "email"
                  },
                  {
                    "name": "tenderType",
                    "value": "ACH"
                  }
                ]
              },
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 25
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_4",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_5",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_6",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 25
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 25
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 25
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 25
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 25
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod12160423_ref",
                "place": [
                  {
                    "id": "00000NGHNZ",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "commercialRelation",
                    "relationshipSubtype": "rel_94fe0227-ab56-45c2-b124-5fd49d570142",
                    "product": {
                      "id": "33dfb23e-57ba-4427-9266-579ebadb489d"
                    }
                  },
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "ibbndl_prod12300348_prod11320255_rwd-40800001_rwd-40500012_rwd-40800030_prod9040405_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod12160423",
                "name": "AT&T All-Fi Pro ",
                "productOfferingType": "BB_AllFiProBundle",
                "productOfferingTypeGroup": "BBAllFiProBundle",
                "productOfferingGroup": "EDS_Broadband"
              },
              "creationDate": "2025-10-30T21:50:57.955Z",
              "characteristic": [
                {
                  "name": "TermsandConditionsKey",
                  "value": "ALLFIPRO"
                }
              ]
            },
            {
              "id": "1a3d6294-9f51-4a21-b81f-455333133a5c",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "characteristic": [
                  {
                    "name": "autopayIntent",
                    "value": "true"
                  },
                  {
                    "name": "presentationMediaIntent",
                    "value": "email"
                  },
                  {
                    "name": "tenderType",
                    "value": "ACH"
                  }
                ]
              },
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 25
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 25
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 25
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 25
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 25
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 25
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod12160223_ref",
                "place": [
                  {
                    "id": "00000NGHNZ",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "commercialRelation",
                    "relationshipSubtype": "rel_94fe0227-ab56-45c2-b124-5fd49d570142"
                  },
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "ibbndl_prod12300348_prod11320255_rwd-40800001_rwd-40500012_rwd-40800030_prod9040405_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod12160223",
                "name": "AT&T HomeTech Protection",
                "productOfferingType": "BB_HomeTechProtectionPlan",
                "productOfferingTypeGroup": "BBHomeTechProtectionPlan",
                "productOfferingGroup": "EDS_Broadband"
              },
              "creationDate": "2025-10-30T21:50:57.955Z",
              "characteristic": [
                {
                  "name": "TermsandConditionsKey",
                  "value": "HTPT"
                }
              ]
            },
            {
              "id": "pnobbbsse_new_item_id_40800001",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "characteristic": [
                  {
                    "name": "autopayIntent",
                    "value": "true"
                  },
                  {
                    "name": "presentationMediaIntent",
                    "value": "email"
                  },
                  {
                    "name": "tenderType",
                    "value": "ACH"
                  }
                ]
              },
              "itemPrice": [
                {
                  "priceType": "OTR",
                  "priceCategory": "Reward",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "OTR",
                  "priceCategory": "Reward",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "rwd-40800001_ref",
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "ibbndl_prod12300348_prod11320255_rwd-40800001_rwd-40500012_rwd-40800030_prod9040405_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "rwd-40800001",
                "name": "Switch and we'll pay your cancellation fee in full.",
                "productOfferingType": "BB_REWARD",
                "productOfferingTypeGroup": "BBREWARD",
                "productOfferingGroup": "EDS_Broadband"
              }
            },
            {
              "id": "pnobbbsse_new_item_id_40800030",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "characteristic": [
                  {
                    "name": "autopayIntent",
                    "value": "true"
                  },
                  {
                    "name": "presentationMediaIntent",
                    "value": "email"
                  },
                  {
                    "name": "tenderType",
                    "value": "ACH"
                  }
                ]
              },
              "itemPrice": [
                {
                  "priceType": "OTR",
                  "priceCategory": "Reward",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 100
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 100
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "OTR",
                  "priceCategory": "Reward",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 100
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 100
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "rwd-40800030_ref",
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "ibbndl_prod12300348_prod11320255_rwd-40800001_rwd-40500012_rwd-40800030_prod9040405_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "rwd-40800030",
                "name": "$100 reward card for ordering internet online.",
                "productOfferingType": "BB_REWARD",
                "productOfferingTypeGroup": "BBREWARD",
                "productOfferingGroup": "EDS_Broadband"
              }
            }
          ],
          "relatedParty": [
            {
              "role": "customer",
              "extensions": [
                {
                  "name": "customerType",
                  "value": "Consumer"
                }
              ]
            },
            {
              "id": "A1pha9umeric",
              "name": "xyz",
              "role": "Partner",
              "@referredType": "dealerLocation"
            },
            {
              "id": "a6a408c5-b999-494e-b444-c119d11608b1",
              "role": "Profile"
            }
          ],
          "state": "inProgress",
          "@type": "DEFAULT",
          "immediatePromotion": [
            {
              "id": "PROMOTION_2",
              "promotion": {
                "id": "wrlnpr-62900028",
                "name": "Price includes $10/mo. discount when you sign up for paperless billing and AutoPay with a bank account. Or $5/mo. with a debit card.",
                "description": "Price includes $10/mo. discount when you sign up for paperless billing and AutoPay with a bank account. Or $5/mo. with a debit card.",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "isAutopayAndEbillRequired",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "434872019"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "discountCategory",
                  "value": [
                    "ABPDiscount"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "supplemental"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_3",
              "promotion": {
                "id": "wrlnpr-33300220",
                "name": "Installation fee waived",
                "description": "Installation fee waived",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "88731343"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "onetime"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "0"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "percentoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_4",
              "promotion": {
                "id": "wrlnpr-64600009",
                "name": "Extended Wi-Fi Coverage Service - Included",
                "description": "Extended Wi-Fi Coverage Service - Included",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "434910724"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "discountCategory",
                  "value": [
                    "EWCS"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_5",
              "promotion": {
                "id": "wrlnpr-64600008",
                "name": "ActiveArmor Advanced Internet Security - Included",
                "description": "ActiveArmor Advanced Internet Security - Included",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "434910684"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "discountCategory",
                  "value": [
                    "ISA"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_6",
              "promotion": {
                "id": "wrlnpr-64600007",
                "name": "Equipment Upgrade Program",
                "description": "Equipment Upgrade Program",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "434910764"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "discountCategory",
                  "value": [
                    "Wifi7"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            }
          ],
          "validation": {
            "readyToCheckout": true
          }
        }
      },
      "Cart_SMB_BB_CRP_directory_list_offer_response": {
        "value": {
          "id": "88c9d840-498a-11f1-ac9c-0d9679709a53",
          "category": "BB_Offer:BB_IPAddressType:voip",
          "orderDate": "2026-05-06T20:31:17.444Z",
          "lastUpdate": "2026-05-06T21:03:12.232Z",
          "orderPriceDate": "2026-05-06T21:03:12.212Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "001f4d1d-0352-4377-9e8e-9a7ced76a372"
            },
            {
              "name": "cpeRequiredIndicator",
              "value": "false"
            },
            {
              "name": "frequency17MhzIndicator",
              "value": "false"
            },
            {
              "name": "profileCode",
              "value": "UvClass18G"
            },
            {
              "name": "vectoringIndicator",
              "value": "false"
            },
            {
              "name": "selectedNetworkActiveIndicator",
              "value": "N"
            }
          ],
          "channel": [
            {
              "id": "IND",
              "name": "IND",
              "extensions": [
                {
                  "name": "Application",
                  "value": "saraplus"
                }
              ]
            }
          ],
          "orderTotalPrice": [
            {
              "priceType": "RC",
              "priceCategory": "serviceRC",
              "recurringChargePeriod": "month",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 1055
                }
              },
              "priceAlteration": [
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 815
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 815
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 40
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 40
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                }
              ],
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 200
                },
                "marketingAmount": {
                  "unit": "USD",
                  "value": 200
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            },
            {
              "priceType": "OC",
              "priceCategory": "serviceOC",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 99
                }
              },
              "priceAlteration": [
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                }
              ],
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "marketingAmount": {
                  "unit": "USD",
                  "value": 99
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            },
            {
              "priceType": "OTR",
              "priceCategory": "Reward",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 50
                }
              },
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 50
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            }
          ],
          "productOrderItem": [
            {
              "id": "da6eef6e-8e84-4298-93eb-5ff5279de978",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "characteristic": [
                  {
                    "name": "autopayIntent",
                    "value": "true"
                  },
                  {
                    "name": "presentationMediaIntent",
                    "value": "email"
                  }
                ]
              },
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 1000
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 815
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 815
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 185
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 185
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                },
                {
                  "priceType": "OC",
                  "priceCategory": "serviceOC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref",
                "isBundle": true,
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "ibbndl_prod11480227_rwd-47700032_prod904079",
                "name": "AT&T Business Fiber 2000",
                "productOfferingType": "BB_Offer",
                "productOfferingTypeGroup": "BBOffer",
                "productOfferingGroup": "EDS_Broadband"
              },
              "productOrderItem": [
                {
                  "id": "b3f4f23a-1ed1-4c12-9093-aea3f28f0ae1",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1000
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 815
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 815
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_2",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_3",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_4",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 185
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 185
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1000
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 815
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 815
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 185
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 185
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod11480227_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Selected_Network_Type",
                        "value": "FTTP-GPON"
                      },
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      },
                      {
                        "name": "hboMaxIncluded",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod11480227",
                    "name": "AT&T Business Fiber 2000",
                    "productOfferingType": "BB_Plan",
                    "productOfferingTypeGroup": "BBPlan"
                  },
                  "productOfferingQualificationItem": {
                    "id": "76f728ec-b009-40ea-9179-5ea00bf26061",
                    "productOfferingQualificationId": "76f728ec-b009-40ea-9179-5ea00bf26061"
                  },
                  "creationDate": "2026-05-06T20:32:24.879Z",
                  "characteristic": [
                    {
                      "name": "serviceQualificationExpiryDate",
                      "value": "2026-05-08T21:03:08.000Z"
                    }
                  ]
                },
                {
                  "id": "fba03e97-a16e-41cf-b92f-031e45f01b27",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "OC",
                      "priceCategory": "serviceOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "OC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 99
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 99
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_7",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "priceCategory": "serviceOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "OC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 99
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 99
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040796_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Installation_Method",
                        "value": "Technician_Installation"
                      },
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040796",
                    "name": "Professional Installation",
                    "productOfferingType": "BB_Installation",
                    "productOfferingTypeGroup": "BBInstallation"
                  },
                  "creationDate": "2026-05-06T20:32:24.879Z",
                  "productOfferingGroupOption": {
                    "groupOptionId": "ibbndl_install_grp_prod9040796"
                  }
                },
                {
                  "id": "pnobbbsse_new_item_id_prod9040808",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040808_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040808",
                    "name": "High Speed Internet Equipment Fee",
                    "productOfferingType": "BB_Equipment",
                    "productOfferingTypeGroup": "BB_Equipment"
                  }
                }
              ],
              "creationDate": "2026-05-06T20:32:24.879Z"
            },
            {
              "id": "bb_IPAddressType_ItemID",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod9040358_ref",
                "productCharacteristic": [
                  {
                    "name": "iPAddressType",
                    "value": "Dynamic"
                  },
                  {
                    "name": "IgnorePricePlan",
                    "value": "false"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "prod9040358_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod9040358",
                "name": "Internet for Business with Dynamic IP",
                "productOfferingType": "BB_IPAddressType",
                "productOfferingTypeGroup": "BBIPAddressType",
                "productOfferingGroup": "EDS_Broadband"
              }
            },
            {
              "id": "pnobbbsse_new_item_id_47700032",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "characteristic": [
                  {
                    "name": "autopayIntent",
                    "value": "true"
                  },
                  {
                    "name": "presentationMediaIntent",
                    "value": "email"
                  }
                ]
              },
              "itemPrice": [
                {
                  "priceType": "OTR",
                  "priceCategory": "Reward",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "OTR",
                  "priceCategory": "Reward",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "rwd-47700032_ref",
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                    }
                  },
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "rwd-47700032_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "rwd-47700032",
                "name": "We?ll cover your early termination fee up to $750 when switching from another provider.",
                "productOfferingType": "BB_REWARD",
                "productOfferingTypeGroup": "BBREWARD",
                "productOfferingGroup": "EDS_Broadband"
              }
            },
            {
              "id": "2345f474-51ed-4ad6-91db-bd25459d01d7",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_5",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_6",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod9040248_ref",
                "place": [
                  {
                    "id": "000009AV22",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ],
                "productCharacteristic": [
                  {
                    "name": "lineType",
                    "value": "Primary"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "prod9040248_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod9040248",
                "name": "AT&T Phone Unlimited North America ",
                "productOfferingType": "voip",
                "productOfferingTypeGroup": "voip",
                "productOfferingGroup": "EDS_Broadband"
              },
              "productOrderItem": [
                {
                  "id": "bb_voip_DirectoryListing_id",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040811_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "prod9040248_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040811",
                    "name": "Published Phone Listing",
                    "productOfferingType": "voip_DirectoryListing",
                    "productOfferingTypeGroup": "voipDirectoryListing"
                  }
                }
              ],
              "creationDate": "2026-05-06T21:03:08.472Z"
            },
            {
              "id": "pnobbbsse_new_item_id_30400001",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "characteristic": [
                  {
                    "name": "autopayIntent",
                    "value": "true"
                  },
                  {
                    "name": "presentationMediaIntent",
                    "value": "email"
                  }
                ]
              },
              "itemPrice": [
                {
                  "priceType": "OTR",
                  "priceCategory": "Reward",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "OTR",
                  "priceCategory": "Reward",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "rwd-30400001_ref",
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "rwd-30400001",
                "name": "$50 AT&T Visa&reg; Reward Card* ",
                "productOfferingType": "BB_REWARD",
                "productOfferingTypeGroup": "BBREWARD",
                "productOfferingGroup": "EDS_Broadband"
              }
            }
          ],
          "relatedParty": [
            {
              "id": "1d470c7b-235e-4760-a61f-697a43196b4d10211",
              "role": "Profile"
            },
            {
              "role": "customer",
              "extensions": [
                {
                  "name": "CustomerType",
                  "value": "Business"
                },
                {
                  "name": "CustomerSubType",
                  "value": "Consumer Small Office"
                }
              ]
            }
          ],
          "state": "inProgress",
          "@type": "DEFAULT",
          "immediatePromotion": [
            {
              "id": "PROMOTION_2",
              "promotion": {
                "id": "wrlnpr-60400046",
                "name": "Promotional Offer",
                "description": "Promotional Offer",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89068513"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatrate"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_3",
              "promotion": {
                "id": "wrlnpr-65700014",
                "name": "Internet + wireless bundle discount",
                "description": "Internet + wireless bundle discount",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89999998"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_4",
              "promotion": {
                "id": "wrlnpr-66500027",
                "name": "Up to $750 ETF",
                "description": "Up to $750 ETF",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89129523"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "3"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_7",
              "promotion": {
                "id": "wrlnpr-56000017",
                "name": "Waived professional installation fee",
                "description": "Free installation when ordered online ($99 value)",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89015343"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "onetime"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "0"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "percentoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_5",
              "promotion": {
                "id": "wrlnpr-60200070",
                "name": "Fiber Phone Bundle Primary",
                "description": "Fiber Phone Bundle Primary",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89065333"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatrate"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_6",
              "promotion": {
                "id": "wrlnpr-45204441",
                "name": "Promotional offer",
                "description": "Promotional offer",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "88919923"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            }
          ],
          "validation": {
            "readyToCheckout": true
          }
        }
      },
      "Cart_SMB_BB_CRP_update_directory_list_name_response": {
        "value": {
          "id": "9d5deb30-6a72-11f1-846f-d7dc492f6a14",
          "category": "BB_Offer:BB_IPAddressType:voip",
          "externalId": "26-781718345431424",
          "orderDate": "2026-06-17T17:33:12.419Z",
          "lastUpdate": "2026-06-17T17:51:59.992Z",
          "orderPriceDate": "2026-06-17T17:51:59.975Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "001f4d1d-0352-4377-9e8e-9a7ced76a372"
            },
            {
              "name": "cpeRequiredIndicator",
              "value": "false"
            },
            {
              "name": "frequency17MhzIndicator",
              "value": "false"
            },
            {
              "name": "profileCode",
              "value": "UvClass18G"
            },
            {
              "name": "vectoringIndicator",
              "value": "false"
            },
            {
              "name": "selectedNetworkActiveIndicator",
              "value": "N"
            }
          ],
          "agreement": [
            {
              "name": "CSA"
            },
            {
              "name": "ECONSENT"
            },
            {
              "name": "MRC_GEN"
            }
          ],
          "channel": [
            {
              "id": "IND",
              "name": "IND",
              "extensions": [
                {
                  "name": "Application",
                  "value": "saraplus"
                }
              ]
            }
          ],
          "orderTotalPrice": [
            {
              "priceType": "RC",
              "priceCategory": "serviceRC",
              "recurringChargePeriod": "month",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 1160
                }
              },
              "priceAlteration": [
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 815
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 815
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 40
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 40
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 40
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 40
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                }
              ],
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 265
                },
                "marketingAmount": {
                  "unit": "USD",
                  "value": 265
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            },
            {
              "priceType": "OC",
              "priceCategory": "serviceOC",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 99
                }
              },
              "priceAlteration": [
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                }
              ],
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "marketingAmount": {
                  "unit": "USD",
                  "value": 99
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            }
          ],
          "productOrderItem": [
            {
              "id": "78bde066-0a27-4209-b6ce-bf24a2bf1ac4",
              "quantity": 1,
              "action": "add",
              "billingAccount": "",
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 1000
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 815
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 815
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 185
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 185
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                },
                {
                  "priceType": "OC",
                  "priceCategory": "serviceOC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref",
                "isBundle": true,
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "ibbndl_prod11480227_rwd-47700032_prod904079",
                "name": "AT&T Business Fiber 2000",
                "productOfferingType": "BB_Offer",
                "productOfferingTypeGroup": "BBOffer",
                "productOfferingGroup": "EDS_Broadband"
              },
              "productOrderItem": [
                {
                  "id": "99c96197-a3c6-4b97-ba96-338b8d2aba74",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1000
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 815
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 815
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_2",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_3",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_4",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 185
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 185
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1000
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 815
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 815
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 185
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 185
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod11480227_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Selected_Network_Type",
                        "value": "FTTP-GPON"
                      },
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      },
                      {
                        "name": "hboMaxIncluded",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod11480227",
                    "name": "AT&T Business Fiber 2000",
                    "productOfferingType": "BB_Plan",
                    "productOfferingTypeGroup": "BBPlan"
                  },
                  "productOfferingQualificationItem": {
                    "id": "d10ed525-b714-4083-b04d-b6bddf4a6ce5",
                    "productOfferingQualificationId": "d10ed525-b714-4083-b04d-b6bddf4a6ce5"
                  },
                  "creationDate": "2026-06-17T17:33:26.252Z",
                  "characteristic": [
                    {
                      "name": "serviceQualificationExpiryDate",
                      "value": "2026-06-19T17:44:07.000Z"
                    }
                  ]
                },
                {
                  "id": "43985110-1522-4be8-9f8d-769df7025dc8",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "OC",
                      "priceCategory": "serviceOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "OC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 99
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 99
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_5",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "priceCategory": "serviceOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "OC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 99
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 99
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040796_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Installation_Method",
                        "value": "Technician_Installation"
                      },
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040796",
                    "name": "Professional Installation",
                    "productOfferingType": "BB_Installation",
                    "productOfferingTypeGroup": "BBInstallation"
                  },
                  "creationDate": "2026-06-17T17:33:26.252Z",
                  "productOfferingGroupOption": {
                    "groupOptionId": "ibbndl_install_grp_prod9040796"
                  }
                },
                {
                  "id": "pnobbbsse_new_item_id_prod9040808",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040808_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040808",
                    "name": "High Speed Internet Equipment Fee",
                    "productOfferingType": "BB_Equipment",
                    "productOfferingTypeGroup": "BB_Equipment"
                  }
                }
              ],
              "creationDate": "2026-06-17T17:33:26.252Z"
            },
            {
              "id": "bb_IPAddressType_ItemID",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod9040362_ref",
                "place": [
                  {
                    "id": "000009AV22",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ],
                "productCharacteristic": [
                  {
                    "name": "iPAddressType",
                    "value": "Static"
                  },
                  {
                    "name": "IgnorePricePlan",
                    "value": "true"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "prod9040362_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod9040362",
                "name": "61 Static IP addresses",
                "productOfferingType": "BB_IPAddressType",
                "productOfferingTypeGroup": "BBIPAddressType",
                "productOfferingGroup": "EDS_Broadband"
              },
              "creationDate": "2026-06-17T17:34:44.256Z"
            },
            {
              "id": "db18c13d-becd-4cab-ae39-100087822c3f",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_5",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_6",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod9040248_ref",
                "place": [
                  {
                    "id": "000009AV22",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ],
                "productCharacteristic": [
                  {
                    "name": "omitAddressIndicator",
                    "value": "false"
                  },
                  {
                    "name": "listingName",
                    "value": "auto express"
                  },
                  {
                    "name": "lineType",
                    "value": "Primary"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "prod9040248_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod9040811",
                "name": "AT&T Phone Unlimited North America ",
                "productOfferingType": "voip",
                "productOfferingTypeGroup": "voip",
                "productOfferingGroup": "EDS_Broadband"
              },
              "productOrderItem": [
                {
                  "id": "bb_voip_DirectoryListing_id",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040811_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "prod9040248_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040811",
                    "name": "Published Phone Listing",
                    "productOfferingType": "voip_DirectoryListing",
                    "productOfferingTypeGroup": "voipDirectoryListing"
                  }
                }
              ],
              "creationDate": "2026-06-17T17:42:53.753Z"
            },
            {
              "id": "0740df47-a783-43df-9576-6eeffe814298",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_6",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_7",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod9040248_ref",
                "place": [
                  {
                    "id": "000009AV22",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ],
                "productCharacteristic": [
                  {
                    "name": "lineType",
                    "value": "Secondary"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "prod9040248_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod9040248",
                "name": "AT&T Phone Unlimited North America ",
                "productOfferingType": "voip",
                "productOfferingTypeGroup": "voip",
                "productOfferingGroup": "EDS_Broadband"
              },
              "creationDate": "2026-06-17T17:44:07.823Z"
            }
          ],
          "relatedParty": [
            {
              "id": "e891e26f-4089-438b-9573-438de9a159a9za1z1z1a2atest1121",
              "role": "Profile"
            },
            {
              "role": "customer",
              "extensions": [
                {
                  "name": "CustomerType",
                  "value": "Business"
                },
                {
                  "name": "CustomerSubType",
                  "value": "Consumer Small Office"
                }
              ]
            }
          ],
          "state": "inProgress",
          "@type": "DEFAULT",
          "immediatePromotion": [
            {
              "id": "PROMOTION_5",
              "promotion": {
                "id": "wrlnpr-56000017",
                "name": "Waived professional installation fee",
                "description": "Free installation when ordered online ($99 value)",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89015343"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "onetime"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "0"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "percentoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_2",
              "promotion": {
                "id": "wrlnpr-60400046",
                "name": "Promotional Offer",
                "description": "Promotional Offer",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89068513"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatrate"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_3",
              "promotion": {
                "id": "wrlnpr-66900157",
                "name": "Internet + wireless bundle discount",
                "description": "Internet + wireless bundle discount",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "59999994"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_4",
              "promotion": {
                "id": "wrlnpr-66500027",
                "name": "Up to $750 ETF",
                "description": "Up to $750 ETF",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89129523"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "3"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_6",
              "promotion": {
                "id": "wrlnpr-60200070",
                "name": "Fiber Phone Bundle Primary",
                "description": "Fiber Phone Bundle Primary",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89065333"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatrate"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_7",
              "promotion": {
                "id": "wrlnpr-45204441",
                "name": "Promotional offer",
                "description": "Promotional offer",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "88919923"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            }
          ],
          "validation": {
            "status": "incomplete",
            "readyToCheckout": true,
            "readyToSubmit": false,
            "validationMessage": [
              {
                "text": "[ConstraintViolationImpl{interpolatedMessage='must not be null', propertyPath=relatedParty[1].id, rootBeanClass=class com.att.idp.model.tmf.ProductOrder, messageTemplate='{jakarta.validation.constraints.NotNull.message}'}]",
                "type": "ConstraintViolation",
                "severity": "Info"
              }
            ],
            "configuration": [
              {
                "status": "incomplete",
                "type": "DigitalID",
                "required": false,
                "postOrderConfigurable": true
              },
              {
                "status": "incomplete",
                "type": "CustomerProfile",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "BillingAccount",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "CreditInfo",
                "required": true
              },
              {
                "status": "complete",
                "type": "FulfillmentOptions",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "Terms",
                "required": true,
                "postOrderConfigurable": true
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "autopay",
                "properties": [
                  {
                    "name": "TermsAndConditionsKeys",
                    "value": "AP,OA,ME,PAPERLESS_DISCLOSURE"
                  },
                  {
                    "name": "autoPayEligiblePaymentTenders",
                    "value": "ACH,CreditCard,DebitCard"
                  }
                ],
                "required": true
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "ADVPAY",
                "properties": [
                  {
                    "name": "TermsAndConditionsKeys",
                    "value": "OP,OF"
                  },
                  {
                    "name": "advPayEligiblePaymentTenders",
                    "value": "CreditCard,DebitCard"
                  }
                ],
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "Prorated-RC",
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "Prepaid-RC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Prepaid-OC",
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "DueUponFulfillment",
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "DWNPAY",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Postpaid-OC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "Installation",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "NumberSelection",
                "required": true
              },
              {
                "status": "complete",
                "type": "AccountSecurity",
                "properties": [
                  {
                    "name": "Questions",
                    "value": "Who is your favorite childhood hero?,What is your favorite restaurant?,Who is your favorite actor?,Who is your favorite singer?"
                  }
                ],
                "required": true
              },
              {
                "status": "complete",
                "type": "VoipConfiguration",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Subscription-RC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Subscription-OC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "CardOnFile",
                "required": false
              }
            ]
          }
        }
      },
      "Cart_SMB_BB_CRP_update_directory_list_heading_name_response": {
        "value": {
          "id": "9d5deb30-6a72-11f1-846f-d7dc492f6a14",
          "category": "BB_Offer:BB_IPAddressType:voip",
          "externalId": "26-781718345431424",
          "orderDate": "2026-06-17T17:33:12.419Z",
          "lastUpdate": "2026-06-17T17:51:59.992Z",
          "orderPriceDate": "2026-06-17T17:51:59.975Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "001f4d1d-0352-4377-9e8e-9a7ced76a372"
            },
            {
              "name": "cpeRequiredIndicator",
              "value": "false"
            },
            {
              "name": "frequency17MhzIndicator",
              "value": "false"
            },
            {
              "name": "profileCode",
              "value": "UvClass18G"
            },
            {
              "name": "vectoringIndicator",
              "value": "false"
            },
            {
              "name": "selectedNetworkActiveIndicator",
              "value": "N"
            }
          ],
          "agreement": [
            {
              "name": "CSA"
            },
            {
              "name": "ECONSENT"
            },
            {
              "name": "MRC_GEN"
            }
          ],
          "channel": [
            {
              "id": "IND",
              "name": "IND",
              "extensions": [
                {
                  "name": "Application",
                  "value": "saraplus"
                }
              ]
            }
          ],
          "orderTotalPrice": [
            {
              "priceType": "RC",
              "priceCategory": "serviceRC",
              "recurringChargePeriod": "month",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 1160
                }
              },
              "priceAlteration": [
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 815
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 815
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 40
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 40
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 40
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 40
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                }
              ],
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 265
                },
                "marketingAmount": {
                  "unit": "USD",
                  "value": 265
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            },
            {
              "priceType": "OC",
              "priceCategory": "serviceOC",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 99
                }
              },
              "priceAlteration": [
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                }
              ],
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "marketingAmount": {
                  "unit": "USD",
                  "value": 99
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            }
          ],
          "productOrderItem": [
            {
              "id": "78bde066-0a27-4209-b6ce-bf24a2bf1ac4",
              "quantity": 1,
              "action": "add",
              "billingAccount": "",
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 1000
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 815
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 815
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 185
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 185
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                },
                {
                  "priceType": "OC",
                  "priceCategory": "serviceOC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref",
                "isBundle": true,
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "ibbndl_prod11480227_rwd-47700032_prod904079",
                "name": "AT&T Business Fiber 2000",
                "productOfferingType": "BB_Offer",
                "productOfferingTypeGroup": "BBOffer",
                "productOfferingGroup": "EDS_Broadband"
              },
              "productOrderItem": [
                {
                  "id": "99c96197-a3c6-4b97-ba96-338b8d2aba74",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1000
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 815
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 815
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_2",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_3",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_4",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 185
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 185
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1000
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 815
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 815
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 185
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 185
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod11480227_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Selected_Network_Type",
                        "value": "FTTP-GPON"
                      },
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      },
                      {
                        "name": "hboMaxIncluded",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod11480227",
                    "name": "AT&T Business Fiber 2000",
                    "productOfferingType": "BB_Plan",
                    "productOfferingTypeGroup": "BBPlan"
                  },
                  "productOfferingQualificationItem": {
                    "id": "d10ed525-b714-4083-b04d-b6bddf4a6ce5",
                    "productOfferingQualificationId": "d10ed525-b714-4083-b04d-b6bddf4a6ce5"
                  },
                  "creationDate": "2026-06-17T17:33:26.252Z",
                  "characteristic": [
                    {
                      "name": "serviceQualificationExpiryDate",
                      "value": "2026-06-19T17:44:07.000Z"
                    }
                  ]
                },
                {
                  "id": "43985110-1522-4be8-9f8d-769df7025dc8",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "OC",
                      "priceCategory": "serviceOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "OC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 99
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 99
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_5",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "priceCategory": "serviceOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "OC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 99
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 99
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040796_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Installation_Method",
                        "value": "Technician_Installation"
                      },
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040796",
                    "name": "Professional Installation",
                    "productOfferingType": "BB_Installation",
                    "productOfferingTypeGroup": "BBInstallation"
                  },
                  "creationDate": "2026-06-17T17:33:26.252Z",
                  "productOfferingGroupOption": {
                    "groupOptionId": "ibbndl_install_grp_prod9040796"
                  }
                },
                {
                  "id": "pnobbbsse_new_item_id_prod9040808",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040808_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040808",
                    "name": "High Speed Internet Equipment Fee",
                    "productOfferingType": "BB_Equipment",
                    "productOfferingTypeGroup": "BB_Equipment"
                  }
                }
              ],
              "creationDate": "2026-06-17T17:33:26.252Z"
            },
            {
              "id": "bb_IPAddressType_ItemID",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod9040362_ref",
                "place": [
                  {
                    "id": "000009AV22",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ],
                "productCharacteristic": [
                  {
                    "name": "iPAddressType",
                    "value": "Static"
                  },
                  {
                    "name": "IgnorePricePlan",
                    "value": "true"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "prod9040362_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod9040362",
                "name": "61 Static IP addresses",
                "productOfferingType": "BB_IPAddressType",
                "productOfferingTypeGroup": "BBIPAddressType",
                "productOfferingGroup": "EDS_Broadband"
              },
              "creationDate": "2026-06-17T17:34:44.256Z"
            },
            {
              "id": "db18c13d-becd-4cab-ae39-100087822c3f",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_5",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_6",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod9040248_ref",
                "place": [
                  {
                    "id": "000009AV22",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ],
                "productCharacteristic": [
                  {
                    "name": "headingName",
                    "value": "auto &amp; car"
                  },
                  {
                    "name": "omitAddressIndicator",
                    "value": "false"
                  },
                  {
                    "name": "lineType",
                    "value": "Primary"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "prod9040248_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod9040811",
                "name": "AT&T Phone Unlimited North America ",
                "productOfferingType": "voip",
                "productOfferingTypeGroup": "voip",
                "productOfferingGroup": "EDS_Broadband"
              },
              "productOrderItem": [
                {
                  "id": "bb_voip_DirectoryListing_id",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040811_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "prod9040248_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040811",
                    "name": "Published Phone Listing",
                    "productOfferingType": "voip_DirectoryListing",
                    "productOfferingTypeGroup": "voipDirectoryListing"
                  }
                }
              ],
              "creationDate": "2026-06-17T17:42:53.753Z"
            },
            {
              "id": "0740df47-a783-43df-9576-6eeffe814298",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_6",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_7",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod9040248_ref",
                "place": [
                  {
                    "id": "000009AV22",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ],
                "productCharacteristic": [
                  {
                    "name": "lineType",
                    "value": "Secondary"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "prod9040248_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod9040248",
                "name": "AT&T Phone Unlimited North America ",
                "productOfferingType": "voip",
                "productOfferingTypeGroup": "voip",
                "productOfferingGroup": "EDS_Broadband"
              },
              "creationDate": "2026-06-17T17:44:07.823Z"
            }
          ],
          "relatedParty": [
            {
              "id": "e891e26f-4089-438b-9573-438de9a159a9za1z1z1a2atest1121",
              "role": "Profile"
            },
            {
              "role": "customer",
              "extensions": [
                {
                  "name": "CustomerType",
                  "value": "Business"
                },
                {
                  "name": "CustomerSubType",
                  "value": "Consumer Small Office"
                }
              ]
            }
          ],
          "state": "inProgress",
          "@type": "DEFAULT",
          "immediatePromotion": [
            {
              "id": "PROMOTION_5",
              "promotion": {
                "id": "wrlnpr-56000017",
                "name": "Waived professional installation fee",
                "description": "Free installation when ordered online ($99 value)",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89015343"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "onetime"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "0"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "percentoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_2",
              "promotion": {
                "id": "wrlnpr-60400046",
                "name": "Promotional Offer",
                "description": "Promotional Offer",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89068513"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatrate"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_3",
              "promotion": {
                "id": "wrlnpr-66900157",
                "name": "Internet + wireless bundle discount",
                "description": "Internet + wireless bundle discount",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "59999994"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_4",
              "promotion": {
                "id": "wrlnpr-66500027",
                "name": "Up to $750 ETF",
                "description": "Up to $750 ETF",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89129523"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "3"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_6",
              "promotion": {
                "id": "wrlnpr-60200070",
                "name": "Fiber Phone Bundle Primary",
                "description": "Fiber Phone Bundle Primary",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89065333"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatrate"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_7",
              "promotion": {
                "id": "wrlnpr-45204441",
                "name": "Promotional offer",
                "description": "Promotional offer",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "88919923"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            }
          ],
          "validation": {
            "status": "incomplete",
            "readyToCheckout": true,
            "readyToSubmit": false,
            "validationMessage": [
              {
                "text": "[ConstraintViolationImpl{interpolatedMessage='must not be null', propertyPath=relatedParty[1].id, rootBeanClass=class com.att.idp.model.tmf.ProductOrder, messageTemplate='{jakarta.validation.constraints.NotNull.message}'}]",
                "type": "ConstraintViolation",
                "severity": "Info"
              }
            ],
            "configuration": [
              {
                "status": "incomplete",
                "type": "DigitalID",
                "required": false,
                "postOrderConfigurable": true
              },
              {
                "status": "incomplete",
                "type": "CustomerProfile",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "BillingAccount",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "CreditInfo",
                "required": true
              },
              {
                "status": "complete",
                "type": "FulfillmentOptions",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "Terms",
                "required": true,
                "postOrderConfigurable": true
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "autopay",
                "properties": [
                  {
                    "name": "TermsAndConditionsKeys",
                    "value": "AP,OA,ME,PAPERLESS_DISCLOSURE"
                  },
                  {
                    "name": "autoPayEligiblePaymentTenders",
                    "value": "ACH,CreditCard,DebitCard"
                  }
                ],
                "required": true
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "ADVPAY",
                "properties": [
                  {
                    "name": "TermsAndConditionsKeys",
                    "value": "OP,OF"
                  },
                  {
                    "name": "advPayEligiblePaymentTenders",
                    "value": "CreditCard,DebitCard"
                  }
                ],
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "Prorated-RC",
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "Prepaid-RC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Prepaid-OC",
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "DueUponFulfillment",
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "DWNPAY",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Postpaid-OC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "Installation",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "NumberSelection",
                "required": true
              },
              {
                "status": "complete",
                "type": "AccountSecurity",
                "properties": [
                  {
                    "name": "Questions",
                    "value": "Who is your favorite childhood hero?,What is your favorite restaurant?,Who is your favorite actor?,Who is your favorite singer?"
                  }
                ],
                "required": true
              },
              {
                "status": "complete",
                "type": "VoipConfiguration",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Subscription-RC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Subscription-OC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "CardOnFile",
                "required": false
              }
            ]
          }
        }
      },
      "Cart_SMB_BB_CRP_update_static_ip_offer_response": {
        "value": {
          "id": "37021650-6b52-11f1-846f-d7dc492f6a14",
          "category": "BB_Offer:BB_IPAddressType:voip",
          "externalId": "26-781813891462223",
          "orderDate": "2026-06-18T20:13:47.957Z",
          "lastUpdate": "2026-06-18T20:23:57.979Z",
          "orderPriceDate": "2026-06-18T20:23:57.960Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "001f4d1d-0352-4377-9e8e-9a7ced76a372"
            },
            {
              "name": "cpeRequiredIndicator",
              "value": "false"
            },
            {
              "name": "frequency17MhzIndicator",
              "value": "false"
            },
            {
              "name": "profileCode",
              "value": "UvClass18G"
            },
            {
              "name": "vectoringIndicator",
              "value": "false"
            },
            {
              "name": "selectedNetworkActiveIndicator",
              "value": "N"
            }
          ],
          "agreement": [
            {
              "name": "CSA"
            },
            {
              "name": "ECONSENT"
            },
            {
              "name": "MRC_GEN"
            }
          ],
          "channel": [
            {
              "id": "IND",
              "name": "IND",
              "extensions": [
                {
                  "name": "Application",
                  "value": "saraplus"
                }
              ]
            }
          ],
          "orderTotalPrice": [
            {
              "priceType": "RC",
              "priceCategory": "serviceRC",
              "recurringChargePeriod": "month",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 1165
                }
              },
              "priceAlteration": [
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 815
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 815
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 40
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 40
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                }
              ],
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 295
                },
                "marketingAmount": {
                  "unit": "USD",
                  "value": 295
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            },
            {
              "priceType": "OC",
              "priceCategory": "serviceOC",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 99
                }
              },
              "priceAlteration": [
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                }
              ],
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "marketingAmount": {
                  "unit": "USD",
                  "value": 99
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            }
          ],
          "productOrderItem": [
            {
              "id": "646cded1-7c08-446d-a881-2205e2eaecbd",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "characteristic": [
                  {
                    "name": "autopayIntent",
                    "value": "true"
                  },
                  {
                    "name": "presentationMediaIntent",
                    "value": "email"
                  }
                ]
              },
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 1000
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 815
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 815
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 185
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 185
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                },
                {
                  "priceType": "OC",
                  "priceCategory": "serviceOC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref",
                "isBundle": true,
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "ibbndl_prod11480227_rwd-47700032_prod904079",
                "name": "AT&T Business Fiber 2000",
                "productOfferingType": "BB_Offer",
                "productOfferingTypeGroup": "BBOffer",
                "productOfferingGroup": "EDS_Broadband"
              },
              "productOrderItem": [
                {
                  "id": "63e20125-a9d6-46f0-a662-a7442cc5d5a2",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1000
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 815
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 815
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_2",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_3",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_4",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 185
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 185
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1000
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 815
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 815
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 185
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 185
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod11480227_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Selected_Network_Type",
                        "value": "FTTP-GPON"
                      },
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      },
                      {
                        "name": "hboMaxIncluded",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod11480227",
                    "name": "AT&T Business Fiber 2000",
                    "productOfferingType": "BB_Plan",
                    "productOfferingTypeGroup": "BBPlan"
                  },
                  "productOfferingQualificationItem": {
                    "id": "1b786b80-723b-424d-aef2-0dd1d9047e10",
                    "productOfferingQualificationId": "1b786b80-723b-424d-aef2-0dd1d9047e10"
                  },
                  "creationDate": "2026-06-18T20:13:51.114Z",
                  "characteristic": [
                    {
                      "name": "serviceQualificationExpiryDate",
                      "value": "2026-06-20T20:14:20.000Z"
                    }
                  ]
                },
                {
                  "id": "a376dfa3-e176-487e-be8d-484423fae1a0",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "OC",
                      "priceCategory": "serviceOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "OC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 99
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 99
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_7",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "priceCategory": "serviceOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "OC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 99
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 99
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040796_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Installation_Method",
                        "value": "Technician_Installation"
                      },
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040796",
                    "name": "Professional Installation",
                    "productOfferingType": "BB_Installation",
                    "productOfferingTypeGroup": "BBInstallation"
                  },
                  "creationDate": "2026-06-18T20:13:51.114Z",
                  "productOfferingGroupOption": {
                    "groupOptionId": "ibbndl_install_grp_prod9040796"
                  }
                },
                {
                  "id": "pnobbbsse_new_item_id_prod9040808",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040808_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040808",
                    "name": "High Speed Internet Equipment Fee",
                    "productOfferingType": "BB_Equipment",
                    "productOfferingTypeGroup": "BB_Equipment"
                  }
                }
              ],
              "creationDate": "2026-06-18T20:13:51.114Z"
            },
            {
              "id": "bb_IPAddressType_ItemID",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 40
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 40
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 40
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 40
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 40
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 40
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod9040360_ref",
                "place": [
                  {
                    "id": "000009AV22",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ],
                "productCharacteristic": [
                  {
                    "name": "iPAddressType",
                    "value": "Static"
                  },
                  {
                    "name": "IgnorePricePlan",
                    "value": "true"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "prod9040360_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod9040359",
                "name": "13 Static IP addresses",
                "productOfferingType": "BB_IPAddressType",
                "productOfferingTypeGroup": "BBIPAddressType",
                "productOfferingGroup": "EDS_Broadband"
              }
            },
            {
              "id": "2191ef8b-f7e4-4b2d-aeda-9426e3e10acd",
              "quantity": 1,
              "action": "add",
              "product": {
                "place": [
                  {
                    "id": "000009AV22",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ]
              },
              "productOffering": {
                "id": "prod9040360",
                "productOfferingType": "BB_IPAddressType",
                "productOfferingTypeGroup": "BBIPAddressType",
                "productOfferingGroup": "EDS_Broadband"
              },
              "creationDate": "2026-06-18T20:14:05.176Z"
            },
            {
              "id": "1145281f-efa0-47a7-bf2e-0b8dbe323cf9",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_5",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_6",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod9040248_ref",
                "place": [
                  {
                    "id": "000009AV22",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ],
                "productCharacteristic": [
                  {
                    "name": "lineType",
                    "value": "Primary"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "prod9040248_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod9040248",
                "name": "AT&T Phone Unlimited North America ",
                "productOfferingType": "voip",
                "productOfferingTypeGroup": "voip",
                "productOfferingGroup": "EDS_Broadband"
              },
              "productOrderItem": [
                {
                  "id": "bb_voip_DirectoryListing_id",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040811_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "prod9040248_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040811",
                    "name": "Published Phone Listing",
                    "productOfferingType": "voip_DirectoryListing",
                    "productOfferingTypeGroup": "voipDirectoryListing"
                  }
                }
              ],
              "creationDate": "2026-06-18T20:14:13.850Z"
            },
            {
              "id": "a2172952-eda8-4022-82f3-dedb20815926",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 30
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 15
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 15
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_8",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 30
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 15
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 15
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod9040249_ref",
                "place": [
                  {
                    "id": "000009AV22",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ],
                "productCharacteristic": [
                  {
                    "name": "lineType",
                    "value": "Secondary"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "prod9040249_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod9040249",
                "name": "AT&T Phone Unlimited North America - additional lines",
                "productOfferingType": "voip",
                "productOfferingTypeGroup": "voip",
                "productOfferingGroup": "EDS_Broadband"
              },
              "creationDate": "2026-06-18T20:14:19.976Z"
            }
          ],
          "relatedParty": [
            {
              "id": "e891e26f-4089-438b-9573-438de9a159a9za1z1z1a2atest11221",
              "role": "Profile"
            },
            {
              "role": "customer",
              "extensions": [
                {
                  "name": "CustomerType",
                  "value": "Business"
                },
                {
                  "name": "CustomerSubType",
                  "value": "Consumer Small Office"
                }
              ]
            }
          ],
          "state": "inProgress",
          "@type": "DEFAULT",
          "immediatePromotion": [
            {
              "id": "PROMOTION_2",
              "promotion": {
                "id": "wrlnpr-60400046",
                "name": "Promotional Offer",
                "description": "Promotional Offer",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89068513"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatrate"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_3",
              "promotion": {
                "id": "wrlnpr-66900157",
                "name": "Internet + wireless bundle discount",
                "description": "Internet + wireless bundle discount",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "59999994"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_4",
              "promotion": {
                "id": "wrlnpr-66500027",
                "name": "Up to $750 ETF",
                "description": "Up to $750 ETF",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89129523"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "3"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_7",
              "promotion": {
                "id": "wrlnpr-56000017",
                "name": "Waived professional installation fee",
                "description": "Free installation when ordered online ($99 value)",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89015343"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "onetime"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "0"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "percentoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_5",
              "promotion": {
                "id": "wrlnpr-60200070",
                "name": "Fiber Phone Bundle Primary",
                "description": "Fiber Phone Bundle Primary",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89065333"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatrate"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_6",
              "promotion": {
                "id": "wrlnpr-45204441",
                "name": "Promotional offer",
                "description": "Promotional offer",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "88919923"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_8",
              "promotion": {
                "id": "wrlnpr-66500059",
                "name": "$15 Fiber Phone Bundle Additional",
                "description": "$15 Fiber Phone Bundle Additional",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89131743"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatrate"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            }
          ],
          "validation": {
            "status": "incomplete",
            "readyToCheckout": true,
            "readyToSubmit": false,
            "validationMessage": [
              {
                "text": "[ConstraintViolationImpl{interpolatedMessage='must not be null', propertyPath=relatedParty[1].id, rootBeanClass=class com.att.idp.model.tmf.ProductOrder, messageTemplate='{jakarta.validation.constraints.NotNull.message}'}]",
                "type": "ConstraintViolation",
                "severity": "Info"
              }
            ],
            "configuration": [
              {
                "status": "incomplete",
                "type": "DigitalID",
                "required": false,
                "postOrderConfigurable": true
              },
              {
                "status": "incomplete",
                "type": "CustomerProfile",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "BillingAccount",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "CreditInfo",
                "required": true
              },
              {
                "status": "complete",
                "type": "FulfillmentOptions",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "Terms",
                "required": true,
                "postOrderConfigurable": true
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "autopay",
                "properties": [
                  {
                    "name": "TermsAndConditionsKeys",
                    "value": "AP,OA,ME,PAPERLESS_DISCLOSURE"
                  },
                  {
                    "name": "autoPayEligiblePaymentTenders",
                    "value": "ACH,CreditCard,DebitCard"
                  }
                ],
                "required": true
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "ADVPAY",
                "properties": [
                  {
                    "name": "TermsAndConditionsKeys",
                    "value": "OP,OF"
                  },
                  {
                    "name": "advPayEligiblePaymentTenders",
                    "value": "CreditCard,DebitCard"
                  }
                ],
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "Prorated-RC",
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "Prepaid-RC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Prepaid-OC",
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "DueUponFulfillment",
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "DWNPAY",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Postpaid-OC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "Installation",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "NumberSelection",
                "required": true
              },
              {
                "status": "complete",
                "type": "AccountSecurity",
                "properties": [
                  {
                    "name": "Questions",
                    "value": "Who is your favorite childhood hero?,What is your favorite restaurant?,Who is your favorite actor?,Who is your favorite singer?"
                  }
                ],
                "required": true
              },
              {
                "status": "complete",
                "type": "VoipConfiguration",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Subscription-RC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Subscription-OC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "CardOnFile",
                "required": false
              }
            ]
          }
        }
      },
      "SMB_VOIP_NL_request": {
        "summary": "SMB VOIP new line number selection request",
        "x-tags": [
          "Fiber-Provide-Business",
          "Fiber-Change-Business"
        ],
        "value": {
          "portType": "NL",
          "productType": "VOIP",
          "zipCode": "30022",
          "lines": [
            {
              "productOrderItemId": "2345f474-51ed-4ad6-91db-bd25459d01d7"
            }
          ]
        }
      },
      "SMB_VOIP_LNP_eligible_request": {
        "summary": "SMB VOIP port-in eligible number selection request (multi-line)",
        "x-tags": [
          "Fiber-Provide-Business",
          "Fiber-Change-Business"
        ],
        "value": {
          "portType": "LNP",
          "productType": "VOIP",
          "zipCode": "30022",
          "lines": [
            {
              "productOrderItemId": "2345f474-51ed-4ad6-91db-bd25459d01d7",
              "existingNumber": "4045551234"
            },
            {
              "productOrderItemId": "a1b2c3d4-5678-9012-ef34-567890abcdef",
              "existingNumber": "4045555678"
            }
          ]
        }
      },
      "SMB_VOIP_LNP_not_eligible_request": {
        "summary": "SMB VOIP port-in not eligible number selection request",
        "x-tags": [
          "Fiber-Provide-Business",
          "Fiber-Change-Business"
        ],
        "value": {
          "portType": "LNP",
          "productType": "VOIP",
          "zipCode": "30022",
          "lines": [
            {
              "productOrderItemId": "2345f474-51ed-4ad6-91db-bd25459d01d7",
              "existingNumber": "4045559999"
            }
          ]
        }
      },
      "SMB_VOIP_NL_response": {
        "summary": "SMB VOIP new line number selection response — ProductOrder with VOIP number assigned",
        "x-tags": [
          "Fiber-Provide-Business",
          "Fiber-Change-Business"
        ],
        "value": {
          "id": "9b491210-669a-11f1-991c-4fb7343f4e3a",
          "category": "BB_Offer:BB_IPAddressType:voip",
          "orderDate": "2026-06-12T20:09:24.145Z",
          "lastUpdate": "2026-06-12T20:09:31.660Z",
          "orderPriceDate": "2026-06-12T20:09:31.649Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "001f4d1d-0352-4377-9e8e-9a7ced76a372"
            },
            {
              "name": "cpeRequiredIndicator",
              "value": "false"
            },
            {
              "name": "frequency17MhzIndicator",
              "value": "false"
            },
            {
              "name": "profileCode",
              "value": "UvClass18G"
            },
            {
              "name": "vectoringIndicator",
              "value": "false"
            },
            {
              "name": "selectedNetworkActiveIndicator",
              "value": "N"
            }
          ],
          "channel": [
            {
              "id": "IND",
              "name": "IND",
              "extensions": [
                {
                  "name": "Application",
                  "value": "saraplus"
                }
              ]
            }
          ],
          "orderTotalPrice": [
            {
              "priceType": "RC",
              "priceCategory": "serviceRC",
              "recurringChargePeriod": "month",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 1055
                }
              },
              "priceAlteration": [
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 815
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 815
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 40
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 40
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                }
              ],
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 200
                },
                "marketingAmount": {
                  "unit": "USD",
                  "value": 200
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            },
            {
              "priceType": "OC",
              "priceCategory": "serviceOC",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 99
                }
              },
              "priceAlteration": [
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                }
              ],
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "marketingAmount": {
                  "unit": "USD",
                  "value": 99
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            }
          ],
          "productOrderItem": [
            {
              "id": "84394440-a5fc-49ea-930f-7917d89b0831",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "characteristic": [
                  {
                    "name": "autopayIntent",
                    "value": "true"
                  },
                  {
                    "name": "presentationMediaIntent",
                    "value": "email"
                  }
                ]
              },
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 1000
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 815
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 815
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 185
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 185
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                },
                {
                  "priceType": "OC",
                  "priceCategory": "serviceOC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref",
                "isBundle": true,
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "ibbndl_prod11480227_rwd-47700032_prod904079",
                "name": "AT&T Business Fiber 2000",
                "productOfferingType": "BB_Offer",
                "productOfferingTypeGroup": "BBOffer",
                "productOfferingGroup": "EDS_Broadband"
              },
              "productOrderItem": [
                {
                  "id": "b6810a96-f20c-4cc4-a74b-f0ca69589a22",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1000
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 815
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 815
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_2",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_3",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_4",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 185
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 185
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1000
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 815
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 815
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 185
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 185
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod11480227_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Selected_Network_Type",
                        "value": "FTTP-GPON"
                      },
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      },
                      {
                        "name": "hboMaxIncluded",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod11480227",
                    "name": "AT&T Business Fiber 2000",
                    "productOfferingType": "BB_Plan",
                    "productOfferingTypeGroup": "BBPlan"
                  },
                  "productOfferingQualificationItem": {
                    "id": "b2f937be-8956-4a92-beb7-0941f2cd62a4",
                    "productOfferingQualificationId": "b2f937be-8956-4a92-beb7-0941f2cd62a4"
                  },
                  "creationDate": "2026-06-12T20:09:27.107Z",
                  "characteristic": [
                    {
                      "name": "serviceQualificationExpiryDate",
                      "value": "2026-06-14T20:09:30.000Z"
                    }
                  ]
                },
                {
                  "id": "cf6bb9e6-6899-4878-ae33-4a5dcc6b234b",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "OC",
                      "priceCategory": "serviceOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "OC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 99
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 99
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_7",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "priceCategory": "serviceOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "OC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 99
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 99
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040796_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Installation_Method",
                        "value": "Technician_Installation"
                      },
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040796",
                    "name": "Professional Installation",
                    "productOfferingType": "BB_Installation",
                    "productOfferingTypeGroup": "BBInstallation"
                  },
                  "creationDate": "2026-06-12T20:09:27.107Z",
                  "productOfferingGroupOption": {
                    "groupOptionId": "ibbndl_install_grp_prod9040796"
                  }
                },
                {
                  "id": "pnobbbsse_new_item_id_prod9040808",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040808_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040808",
                    "name": "High Speed Internet Equipment Fee",
                    "productOfferingType": "BB_Equipment",
                    "productOfferingTypeGroup": "BB_Equipment"
                  }
                }
              ],
              "creationDate": "2026-06-12T20:09:27.107Z"
            },
            {
              "id": "bb_IPAddressType_ItemID",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod9040358_ref",
                "productCharacteristic": [
                  {
                    "name": "iPAddressType",
                    "value": "Dynamic"
                  },
                  {
                    "name": "IgnorePricePlan",
                    "value": "false"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "prod9040358_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod9040358",
                "name": "Internet for Business with Dynamic IP",
                "productOfferingType": "BB_IPAddressType",
                "productOfferingTypeGroup": "BBIPAddressType",
                "productOfferingGroup": "EDS_Broadband"
              }
            },
            {
              "id": "b7d29f2a-a100-4df5-8ab8-28126be96b85",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_5",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_6",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod9040248_ref",
                "place": [
                  {
                    "id": "000009AV22",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ],
                "productCharacteristic": [
                  {
                    "name": "port-in",
                    "value": "false"
                  },
                  {
                    "name": "headingName",
                    "value": "None"
                  },
                  {
                    "name": "listingName",
                    "value": "test"
                  },
                  {
                    "name": "omitAddressIndicator",
                    "value": "false"
                  },
                  {
                    "name": "lineType",
                    "value": "Primary"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "reliesOn",
                    "product": {
                      "characteristic": [
                        {
                          "name": "Number_Management_Resource_Identifier",
                          "value": "5069636-1b28-72eb-a158-69c77b358de3"
                        }
                      ]
                    }
                  },
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "prod9040248_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod9040248",
                "name": "AT&T Phone Unlimited North America ",
                "productOfferingType": "voip",
                "productOfferingTypeGroup": "voip",
                "productOfferingGroup": "EDS_Broadband"
              },
              "productOrderItem": [
                {
                  "id": "bb_voip_DirectoryListing_id",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040811_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "prod9040248_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040811",
                    "name": "Published Phone Listing",
                    "productOfferingType": "voip_DirectoryListing",
                    "productOfferingTypeGroup": "voipDirectoryListing"
                  }
                }
              ],
              "creationDate": "2026-06-12T20:09:30.479Z"
            }
          ],
          "relatedParty": [
            {
              "id": "e891e26f-4089-438b-9573-438de9a159a9za1z1z1a2atest112",
              "role": "Profile"
            },
            {
              "role": "customer",
              "extensions": [
                {
                  "name": "CustomerType",
                  "value": "Business"
                },
                {
                  "name": "CustomerSubType",
                  "value": "Consumer Small Office"
                }
              ]
            }
          ],
          "state": "inProgress",
          "@type": "DEFAULT",
          "immediatePromotion": [
            {
              "id": "PROMOTION_7",
              "promotion": {
                "id": "wrlnpr-56000017",
                "name": "Waived professional installation fee",
                "description": "Free installation when ordered online ($99 value)",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89015343"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "onetime"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "0"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "percentoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_2",
              "promotion": {
                "id": "wrlnpr-60400046",
                "name": "Promotional Offer",
                "description": "Promotional Offer",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89068513"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatrate"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_3",
              "promotion": {
                "id": "wrlnpr-66900157",
                "name": "Internet + wireless bundle discount",
                "description": "Internet + wireless bundle discount",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "59999994"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_4",
              "promotion": {
                "id": "wrlnpr-66500027",
                "name": "Up to $750 ETF",
                "description": "Up to $750 ETF",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89129523"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "3"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_5",
              "promotion": {
                "id": "wrlnpr-60200070",
                "name": "Fiber Phone Bundle Primary",
                "description": "Fiber Phone Bundle Primary",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89065333"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatrate"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_6",
              "promotion": {
                "id": "wrlnpr-45204441",
                "name": "Promotional offer",
                "description": "Promotional offer",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "88919923"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            }
          ],
          "validation": {
            "readyToCheckout": true
          }
        }
      },
      "SMB_VOIP_LNP_eligible_response": {
        "summary": "SMB VOIP port-in eligible response — ProductOrder with ported number assigned",
        "x-tags": [
          "Fiber-Provide-Business",
          "Fiber-Change-Business"
        ],
        "value": {
          "id": "2d4b0210-6685-11f1-8ba3-c7358a62b1ea",
          "category": "BB_Offer:BB_IPAddressType:voip",
          "externalId": "26-781285779907303",
          "orderDate": "2026-06-12T17:36:00.177Z",
          "lastUpdate": "2026-06-12T19:24:03.324Z",
          "orderPriceDate": "2026-06-12T19:24:03.309Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "001f4d1d-0352-4377-9e8e-9a7ced76a372"
            },
            {
              "name": "cpeRequiredIndicator",
              "value": "false"
            },
            {
              "name": "frequency17MhzIndicator",
              "value": "false"
            },
            {
              "name": "profileCode",
              "value": "UvClass18G"
            },
            {
              "name": "vectoringIndicator",
              "value": "false"
            },
            {
              "name": "selectedNetworkActiveIndicator",
              "value": "N"
            }
          ],
          "agreement": [
            {
              "name": "CSA"
            },
            {
              "name": "PAPERLESS_DISCLOSURE"
            },
            {
              "name": "ECONSENT"
            },
            {
              "name": "MRC_GEN"
            }
          ],
          "channel": [
            {
              "id": "IND",
              "name": "IND",
              "extensions": [
                {
                  "name": "Application",
                  "value": "saraplus"
                }
              ]
            }
          ],
          "orderTotalPrice": [
            {
              "priceType": "RC",
              "priceCategory": "serviceRC",
              "recurringChargePeriod": "month",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 1210
                }
              },
              "priceAlteration": [
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 815
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 815
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 40
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 40
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 40
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 40
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                }
              ],
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 315
                },
                "marketingAmount": {
                  "unit": "USD",
                  "value": 315
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            },
            {
              "priceType": "OC",
              "priceCategory": "serviceOC",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 99
                }
              },
              "priceAlteration": [
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                }
              ],
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "marketingAmount": {
                  "unit": "USD",
                  "value": 99
                }
              },
              "taxIncluded": "Excluded",
              "role": "Price"
            }
          ],
          "productOrderItem": [
            {
              "id": "00ad646b-8d51-443e-be4d-18b2d64cddc3",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "id": "557706509942",
                "@type": "billingAccount",
                "characteristic": [
                  {
                    "name": "stateDate",
                    "value": "2026-06-12T17:37:25.349Z"
                  },
                  {
                    "name": "accountStatus",
                    "value": "defined"
                  },
                  {
                    "name": "autopayIntent",
                    "value": "true"
                  },
                  {
                    "name": "presentationMediaIntent",
                    "value": "email"
                  }
                ]
              },
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 1000
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 815
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 815
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 185
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 185
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                },
                {
                  "priceType": "OC",
                  "priceCategory": "serviceOC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 99
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref",
                "isBundle": true,
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "ibbndl_prod11480227_rwd-47700032_prod904079",
                "name": "AT&T Business Fiber 2000",
                "productOfferingType": "BB_Offer",
                "productOfferingTypeGroup": "BBOffer",
                "productOfferingGroup": "EDS_Broadband"
              },
              "productOrderItem": [
                {
                  "id": "baa2565a-c1ae-4ced-a425-ed0014f7603a",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1000
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 815
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 815
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_2",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_3",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_4",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 185
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 185
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1000
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 815
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 815
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 185
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 185
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod11480227_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Selected_Network_Type",
                        "value": "FTTP-GPON"
                      },
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      },
                      {
                        "name": "hboMaxIncluded",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod11480227",
                    "name": "AT&T Business Fiber 2000",
                    "productOfferingType": "BB_Plan",
                    "productOfferingTypeGroup": "BBPlan"
                  },
                  "productOfferingQualificationItem": {
                    "id": "5d73e430-86fa-4468-a887-17f3ad0cab14",
                    "productOfferingQualificationId": "5d73e430-86fa-4468-a887-17f3ad0cab14"
                  },
                  "creationDate": "2026-06-12T17:36:09.732Z",
                  "characteristic": [
                    {
                      "name": "serviceQualificationExpiryDate",
                      "value": "2026-06-14T19:23:58.000Z"
                    }
                  ]
                },
                {
                  "id": "05ba8aea-6b3e-4512-895e-ac9d27b164bc",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "OC",
                      "priceCategory": "serviceOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "OC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 99
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 99
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "PROMOTION_7",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "priceCategory": "serviceOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "OC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 99
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 99
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 99
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040796_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Installation_Method",
                        "value": "Technician_Installation"
                      },
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040796",
                    "name": "Professional Installation",
                    "productOfferingType": "BB_Installation",
                    "productOfferingTypeGroup": "BBInstallation"
                  },
                  "creationDate": "2026-06-12T17:36:09.732Z",
                  "productOfferingGroupOption": {
                    "groupOptionId": "ibbndl_install_grp_prod9040796"
                  }
                },
                {
                  "id": "pnobbbsse_new_item_id_prod9040808",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040808_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "ibbndl_prod11480227_rwd-47700032_prod904079_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040808",
                    "name": "High Speed Internet Equipment Fee",
                    "productOfferingType": "BB_Equipment",
                    "productOfferingTypeGroup": "BB_Equipment"
                  }
                }
              ],
              "creationDate": "2026-06-12T17:36:09.732Z"
            },
            {
              "id": "bb_IPAddressType_ItemID",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "id": "557706509942",
                "@type": "billingAccount",
                "characteristic": [
                  {
                    "name": "stateDate",
                    "value": "2026-06-12T17:37:25.349Z"
                  },
                  {
                    "name": "accountStatus",
                    "value": "defined"
                  }
                ]
              },
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod9040362_ref",
                "place": [
                  {
                    "id": "000009AV22",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ],
                "productCharacteristic": [
                  {
                    "name": "iPAddressType",
                    "value": "Static"
                  },
                  {
                    "name": "IgnorePricePlan",
                    "value": "true"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "prod9040362_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod9040358",
                "name": "61 Static IP addresses",
                "productOfferingType": "BB_IPAddressType",
                "productOfferingTypeGroup": "BBIPAddressType",
                "productOfferingGroup": "EDS_Broadband"
              }
            },
            {
              "id": "003a8073-1bdc-4cad-847a-aaee1dae2c3c",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_5",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_6",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod9040248_ref",
                "place": [
                  {
                    "id": "000009AV22",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ],
                "productCharacteristic": [
                  {
                    "name": "port-in",
                    "value": "true"
                  },
                  {
                    "name": "headingName",
                    "value": "None"
                  },
                  {
                    "name": "listingName",
                    "value": "test"
                  },
                  {
                    "name": "omitAddressIndicator",
                    "value": "false"
                  },
                  {
                    "name": "lineType",
                    "value": "Primary"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "prod9040248_ref"
                    }
                  },
                  {
                    "relationshipType": "reliesOn",
                    "product": {
                      "characteristic": [
                        {
                          "name": "Number_Management_Resource_Identifier",
                          "value": "019eb24b-1b28-72eb-a158-69c77b358de3"
                        }
                      ]
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod9040248",
                "name": "AT&T Phone Unlimited North America ",
                "productOfferingType": "voip",
                "productOfferingTypeGroup": "voip",
                "productOfferingGroup": "EDS_Broadband"
              },
              "productOrderItem": [
                {
                  "id": "bb_voip_DirectoryListing_id",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "product": {
                    "referenceId": "prod9040811_ref",
                    "place": [
                      {
                        "id": "000009AV22",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "IgnorePricePlan",
                        "value": "false"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "prod9040248_ref"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "prod9040811",
                    "name": "Published Phone Listing",
                    "productOfferingType": "voip_DirectoryListing",
                    "productOfferingTypeGroup": "voipDirectoryListing"
                  }
                }
              ],
              "creationDate": "2026-06-12T19:22:40.617Z"
            },
            {
              "id": "2e172a0c-d6af-452f-bf77-457d837bd558",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_5",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "immediatePromotionId": "PROMOTION_6",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "priceCategory": "serviceRC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 40
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 40
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 15
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 15
                    }
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "product": {
                "referenceId": "prod9040248_ref",
                "place": [
                  {
                    "id": "000009AV22",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ],
                "productCharacteristic": [
                  {
                    "name": "port-in",
                    "value": "true"
                  },
                  {
                    "name": "headingName",
                    "value": "None"
                  },
                  {
                    "name": "listingName",
                    "value": "test"
                  },
                  {
                    "name": "omitAddressIndicator",
                    "value": "false"
                  },
                  {
                    "name": "lineType",
                    "value": "Secondary"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "reliesOn",
                    "product": {
                      "characteristic": [
                        {
                          "name": "Number_Management_Resource_Identifier",
                          "value": "2569636-1b28-72eb-a158-69c77b358de3"
                        }
                      ]
                    }
                  },
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "prod9040248_ref"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "prod9040248",
                "name": "AT&T Phone Unlimited North America ",
                "productOfferingType": "voip",
                "productOfferingTypeGroup": "voip",
                "productOfferingGroup": "EDS_Broadband"
              },
              "creationDate": "2026-06-12T19:23:58.283Z"
            }
          ],
          "relatedParty": [
            {
              "id": "54fe2023-a893-414b-b927-15a1429ca128",
              "role": "owner",
              "@referredType": "individual"
            },
            {
              "id": "e891e26f-4089-438b-9573-438de9a159a9za1z1z1a2atest1",
              "role": "profile"
            },
            {
              "id": "3f222794-35a1-4a5b-835b-dc45605f1f53",
              "role": "customer",
              "extensions": [
                {
                  "name": "CustomerType",
                  "value": "Business"
                },
                {
                  "name": "CustomerSubType",
                  "value": "Consumer Small Office"
                }
              ],
              "@referredType": "customer"
            }
          ],
          "state": "inProgress",
          "@type": "DEFAULT",
          "immediatePromotion": [
            {
              "id": "PROMOTION_7",
              "promotion": {
                "id": "wrlnpr-56000017",
                "name": "Waived professional installation fee",
                "description": "Free installation when ordered online ($99 value)",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89015343"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "onetime"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "0"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "percentoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_2",
              "promotion": {
                "id": "wrlnpr-60400046",
                "name": "Promotional Offer",
                "description": "Promotional Offer",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89068513"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatrate"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_3",
              "promotion": {
                "id": "wrlnpr-66900157",
                "name": "Internet + wireless bundle discount",
                "description": "Internet + wireless bundle discount",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "59999994"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_4",
              "promotion": {
                "id": "wrlnpr-66500027",
                "name": "Up to $750 ETF",
                "description": "Up to $750 ETF",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89129523"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "3"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_5",
              "promotion": {
                "id": "wrlnpr-60200070",
                "name": "Fiber Phone Bundle Primary",
                "description": "Fiber Phone Bundle Primary",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "89065333"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatrate"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "basic"
                  ]
                }
              ]
            },
            {
              "id": "PROMOTION_6",
              "promotion": {
                "id": "wrlnpr-45204441",
                "name": "Promotional offer",
                "description": "Promotional offer",
                "type": "discount",
                "applyPolicy": "AUTOMATIC"
              },
              "immediatePromotionCharacteristic": [
                {
                  "name": "isSmbAioPromo",
                  "value": [
                    "false"
                  ]
                },
                {
                  "name": "useForPriceCalculation",
                  "value": [
                    "true"
                  ]
                },
                {
                  "name": "pricePlanCode",
                  "value": [
                    "88919923"
                  ]
                },
                {
                  "name": "promotionCycle",
                  "value": [
                    "monthly"
                  ]
                },
                {
                  "name": "duration",
                  "value": [
                    "999"
                  ]
                },
                {
                  "name": "promotionRolledUpDisplayInd",
                  "value": [
                    "Yes"
                  ]
                },
                {
                  "name": "freePromoInd",
                  "value": [
                    "No"
                  ]
                },
                {
                  "name": "promotionType",
                  "value": [
                    "flatamountoff"
                  ]
                },
                {
                  "name": "saleType",
                  "value": [
                    "additional"
                  ]
                }
              ]
            }
          ],
          "validation": {
            "status": "incomplete",
            "readyToCheckout": true,
            "readyToSubmit": false,
            "configuration": [
              {
                "status": "incomplete",
                "type": "DigitalID",
                "required": false,
                "postOrderConfigurable": true
              },
              {
                "status": "complete",
                "type": "CustomerProfile",
                "required": true
              },
              {
                "status": "complete",
                "type": "BillingAccount",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "CreditInfo",
                "required": true
              },
              {
                "status": "complete",
                "type": "FulfillmentOptions",
                "required": true
              },
              {
                "status": "incomplete",
                "type": "Terms",
                "required": true,
                "postOrderConfigurable": true
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "autopay",
                "properties": [
                  {
                    "name": "TermsAndConditionsKeys",
                    "value": "AP,OA,ME,PAPERLESS_DISCLOSURE"
                  },
                  {
                    "name": "autoPayEligiblePaymentTenders",
                    "value": "ACH,CreditCard,DebitCard"
                  }
                ],
                "required": true
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "ADVPAY",
                "properties": [
                  {
                    "name": "TermsAndConditionsKeys",
                    "value": "OP,OF"
                  },
                  {
                    "name": "advPayEligiblePaymentTenders",
                    "value": "CreditCard,DebitCard"
                  }
                ],
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "Prorated-RC",
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "Prepaid-RC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Prepaid-OC",
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "DueUponFulfillment",
                "required": false
              },
              {
                "status": "complete",
                "type": "payment",
                "subtype": "DWNPAY",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Postpaid-OC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "Installation",
                "required": true
              },
              {
                "status": "complete",
                "type": "NumberSelection",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "AccountSecurity",
                "properties": [
                  {
                    "name": "Questions",
                    "value": "Who is your favorite childhood hero?,What is your favorite restaurant?,Who is your favorite actor?,Who is your favorite singer?"
                  }
                ],
                "required": true
              },
              {
                "status": "incomplete",
                "type": "VoipConfiguration",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Subscription-RC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "payment",
                "subtype": "Subscription-OC",
                "required": false
              },
              {
                "status": "incomplete",
                "type": "CardOnFile",
                "required": false
              }
            ]
          }
        }
      },
      "SMB_VOIP_LNP_not_eligible_response": {
        "summary": "SMB VOIP port-in not eligible response — PortEligibilityResponse with ineligibility description",
        "x-tags": [
          "Fiber-Provide-Business",
          "Fiber-Change-Business"
        ],
        "value": {
          "portEligibilityInd": "N",
          "portIneligibilityDesc": "The number is not eligible for porting. The number belongs to a carrier that does not support VOIP porting in this market.",
          "marketCode": "ATL"
        }
      }
    }
  }
}