{
  "openapi": "3.1.3",
  "info": {
    "version": "1.0.2",
    "title": "extpartneromnisvcsms",
    "description": "This is an OpenAPI Specification for APIs for external partners to perform ServiceQualification checks.",
    "contact": {
      "name": "Omni API Support",
      "email": "DL-OmniAdapter@att.com"
    }
  },
  "servers": [
    {
      "url": "https://partner.att.com/omni-svcs"
    }
  ],
  "security": [],
  "tags": [
    {
      "name": "Service Qualification",
      "description": "Omni Service Qualification "
    }
  ],
  "paths": {
    "/v1/service-qualification": {
      "post": {
        "tags": [
          "Service Qualification"
        ],
        "description": "Allows external partners to verify whether a given service address and Postal code are eligible for fiber connectivity.",
        "summary": "Service qualification based on address",
        "operationId": "ServiceQualification",
        "parameters": [
          {
            "$ref": "#/components/parameters/ParameterAppname"
          }
        ],
        "requestBody": {
          "description": "Service Qualification request payload",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ServiceQualificationRequest"
              },
              "examples": {
                "servicequalification_forMove": {
                  "x-tags": [
                    "Fiber-Move-Consumer"
                  ],
                  "summary": "Service Qualification Move With BBOffers",
                  "value": {
                    "channel": {
                      "id": "IND",
                      "name": "IND",
                      "extensions": [
                        {
                          "name": "subChannel",
                          "value": "bestbuy"
                        },
                        {
                          "name": "subChannelGroup",
                          "value": "National Retail"
                        },
                        {
                          "name": "agentId",
                          "value": "s12345"
                        }
                      ]
                    },
                    "geographicAddress": {
                      "postcode": "91911",
                      "city": "CHULA VISTA",
                      "stateOrProvince": "CA",
                      "addressCharacteristic": [
                        {
                          "name": "addressLine1",
                          "valueType": "string",
                          "value": "3802 EAST MAIN ST"
                        }
                      ]
                    },
                    "customerType": "CONSUMER",
                    "offers": [
                      {
                        "productOfferingTypeGroup": "BBOffers",
                        "billingAccountNumber": "123456789",
                        "intent": "MOVE"
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Service Qualification response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ServiceQualificationResponse"
                },
                "examples": {
                  "servicequalification_perfect_match": {
                    "summary": "Service Qualification Perfect Match",
                    "x-tags": [
                      "Fiber-Provide-Consumer",
                      "Fiber-Move-Consumer"
                    ],
                    "$ref": "#/components/examples/ServiceQual_Perfectmatch_response"
                  },
                  "servicequalification_perfect_match_voip": {
                    "summary": "Service Qualification Perfect Match VOIP",
                    "x-tags": [
                      "Fiber-Provide-Consumer",
                      "Fiber-Move-Consumer"
                    ],
                    "$ref": "#/components/examples/ServiceQual_Perfectmatch_Voip_response"
                  },
                  "servicequalification_perfect_match_aia": {
                    "summary": "Service Qualification Perfect Match AIA",
                    "x-tags": [
                      "Fiber-Provide-Consumer",
                      "Fiber-Move-Consumer"
                    ],
                    "$ref": "#/components/examples/ServiceQual_Perfectmatch_AIA_response"
                  },
                  "servicequalification_perfect_match_instanton": {
                    "summary": "Service Qualification Perfect Match InstantOn",
                    "x-tags": [
                      "Fiber-Provide-Consumer",
                      "Fiber-Move-Consumer"
                    ],
                    "$ref": "#/components/examples/ServiceQual_Perfectmatch_InstantOn_response"
                  },
                  "servicequalification_with_No_Qualification_response": {
                    "summary": "Service Qualification With No Qualification Items",
                    "x-tags": [
                      "Fiber-Provide-Consumer",
                      "Fiber-Move-Consumer",
                      "Fiber-Change-Consumer",
                      "Fiber-Provide-Business",
                      "Fiber-Move-Business",
                      "Fiber-Change-Business"
                    ],
                    "$ref": "#/components/examples/ServiceQualification_with_No_Qualification"
                  },
                  "servicequalification_with_NoOffers_response": {
                    "summary": "Service Qualification With No Offers",
                    "x-tags": [
                      "Fiber-Provide-Consumer",
                      "Fiber-Move-Consumer",
                      "Fiber-Change-Consumer",
                      "Fiber-Provide-Business",
                      "Fiber-Move-Business",
                      "Fiber-Change-Business"
                    ],
                    "$ref": "#/components/examples/ServiceQualification_with_No_Offers"
                  },
                  "servicequalification_movewithOffers_response": {
                    "summary": "Service Qualification Move With BBOffers",
                    "x-tags": [
                      "Fiber-Move-Consumer",
                      "Fiber-Move-Business"
                    ],
                    "$ref": "#/components/examples/servicequalification_withOffers_response"
                  },
                  "servicequal_noaddressmatch": {
                    "summary": "Service Qualification No Address Match",
                    "x-tags": [
                      "Fiber-Provide-Consumer",
                      "Fiber-Move-Consumer",
                      "Fiber-Change-Consumer",
                      "Fiber-Provide-Business",
                      "Fiber-Move-Business",
                      "Fiber-Change-Business"
                    ],
                    "value": {
                      "addressValidation": {
                        "validationResult": "nomatch"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request - Missing fields, Invalid input data, validation failure",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/WrappedPartnerServiceError"
                },
                "examples": {
                  "MissingFields": {
                    "summary": "Missing fields",
                    "value": {
                      "error": {
                        "errorId": "EXT_SERVICE_QUAL-SBPL-0001",
                        "message": "Required fields are missing",
                        "errorSystemId": "Service Qualification",
                        "details": [
                          {
                            "code": "SBP-S100003",
                            "message": "Postal Code is Invalid"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/WrappedPartnerServiceError"
                },
                "examples": {
                  "ServiceQualificationSystemError": {
                    "summary": "System Error",
                    "value": {
                      "error": {
                        "errorId": "EXT_SERVICE_QUAL-SBPL-500",
                        "message": "System Error",
                        "errorSystemId": "Service Qualification",
                        "details": [
                          {
                            "code": "SBP-S10003",
                            "message": "system error"
                          }
                        ]
                      }
                    }
                  },
                  "ServiceQualificationAIAError": {
                    "summary": "AIA Error",
                    "value": {
                      "error": {
                        "errorId": "EXTPNO-OFFERS-CPOPOFFER-0006",
                        "message": "Unsupported Flow",
                        "errorSystemId": "extpartnerproductoffersdiscovery",
                        "details": [
                          {
                            "code": "INT-0010",
                            "message": "AIA is not supported yet, please switch to regular AT&T internet AIR flow"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "ServiceQualificationRequest": {
        "type": "object",
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/SalesChannel",
            "description": "Information about the sales channel and sub-channel through which the service qualification request is being made."
          },
          "geographicAddress": {
            "$ref": "#/components/schemas/Address",
            "description": "The service address for which the service qualification check needs to be performed."
          },
          "customerType": {
            "description": "Customer Type to be used for filtering offers. e.g. CONSUMER, IRU, CRU, BUSINESS.",
            "maxLength": 100,
            "minLength": 2,
            "type": "string",
            "enum": [
              "CONSUMER",
              "IRU",
              "CRU",
              "BUSINESS"
            ]
          },
          "offers": {
            "type": "array",
            "description": "List of offers to check for eligibility during service qualification. For Move orders, billingAccountNumber and intent fields are also used for offer filtering.",
            "items": {
              "type": "object",
              "properties": {
                "productOfferingTypeGroup": {
                  "type": "string",
                  "description": "The productOfferingTypeGroup field is used to identify the type of offer (e.g., BBOffers for broadband offers)",
                  "enum": [
                    "mobilePlan",
                    "mobileAddon",
                    "mobileDevice",
                    "mobileOffer",
                    "sim",
                    "BBAddons",
                    "BBOffers"
                  ]
                },
                "billingAccountNumber": {
                  "type": "string",
                  "description": "Customer Billing Account Number",
                  "example": "123456789"
                },
                "intent": {
                  "type": "string",
                  "description": "Intent of the flow (e.g., MOVE). For the Provide flow, this will be empty.",
                  "example": "MOVE"
                }
              }
            }
          }
        }
      },
      "ServiceQualificationResponse": {
        "type": "object",
        "properties": {
          "addressValidation": {
            "$ref": "#/components/schemas/AddressValidation",
            "description": "Results of address validation, including a valid geographic addresses and an address match code indicating the quality of the match between the input address and the validated addresses."
          },
          "serviceQualification": {
            "$ref": "#/components/schemas/ServiceQualification",
            "description": "Service qualification results for the given address, including service qualification items and service inventory."
          },
          "serviceCharacteristic": {
            "type": "array",
            "description": "Populated with the list of serviceCharacteristic if the validationResult is a perfect match.",
            "items": {
              "$ref": "#/components/schemas/ServiceCharacteristic"
            }
          },
          "swimlaneList": {
            "type": "array",
            "description": "List of swim lane configurations for each available plan at a successfully qualified address.",
            "items": {
              "type": "object",
              "properties": {
                "plan": {
                  "type": "string",
                  "description": "Plan identifier",
                  "example": "Hsia1000g"
                },
                "swimlane": {
                  "type": "string",
                  "description": "Swim lane identifier for the plan",
                  "example": "29"
                },
                "planTier": {
                  "type": "string",
                  "description": "Plan tier designation",
                  "example": "D"
                },
                "planMRCBillingOffer": {
                  "type": "string",
                  "description": "Monthly Recurring Charge (MRC) billing offer identifier for the plan",
                  "example": "88541733"
                },
                "BBFootPrint": {
                  "type": "string",
                  "description": "Broadband footprint indicator describing the service delivery method",
                  "example": "FiberKitOptional"
                },
                "PSid": {
                  "type": "string",
                  "description": "Product Service identifier",
                  "example": "NA001"
                }
              }
            }
          },
          "offers": {
            "type": "object",
            "description": "List of Offers that are eligible for the given address.",
            "properties": {
              "BBOffers": {
                "$ref": "#/components/schemas/OfferList",
                "description": "BBOffers that are eligible for the given address. This field is only returned if the request includes offers with productOfferingTypeGroup as BBOffers. If there are no eligible BBOffers, this field will be returned as an empty list."
              }
            }
          }
        }
      },
      "OfferList": {
        "type": "array",
        "description": "List of offers that are eligible for the given address. Each offer includes details such as the offer name, description, and other relevant characteristics.",
        "items": {
          "$ref": "#/components/schemas/ProductOffering"
        }
      },
      "ValidGeographicAddress": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique Place Id for the address"
          },
          "streetNr": {
            "type": "string",
            "description": "Number identifying a specific property on a public street. It may be combined with streetNrLast for ranged addresses"
          },
          "streetName": {
            "type": "string",
            "description": "Name of the street or other street type"
          },
          "streetType": {
            "type": "string",
            "description": "Type of the street. Alley, avenue, boulevard, brae, crescent, drive, highway, lane, terrace, parade, place, tarn, way, wharf"
          },
          "streetSuffix": {
            "type": "string",
            "description": "Street Suffix that the address is in"
          },
          "city": {
            "type": "string",
            "description": "City that the address is in"
          },
          "stateOrProvince": {
            "type": "string",
            "description": "The State or Province that the address is in"
          },
          "postcode": {
            "type": "string",
            "description": "Descriptor for a postal delivery area, used to speed and simplify the delivery of mail."
          },
          "postcodeExtension": {
            "type": "string",
            "description": "4 digit extension of the postcode"
          },
          "country": {
            "type": "string",
            "description": "Country that the address is in"
          },
          "completeTimeZone": {
            "type": "string",
            "description": "Complete time zone information for the address"
          },
          "geographicSubAddress": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "subUnitType": {
                  "type": "string",
                  "description": "The type of subunit\ne.g. BERTH, FLAT, PIER, SUITE, SHOP, TOWER, UNIT, WHARF"
                },
                "subUnitNumber": {
                  "type": "string",
                  "description": "The discriminator used for the subunit\noften just a simple number e.g. FLAT 5, may also be a range"
                },
                "structureType": {
                  "type": "string",
                  "description": "Type of the Structure"
                },
                "structureValue": {
                  "type": "string",
                  "description": "Value of the Structure"
                }
              }
            }
          }
        }
      },
      "AddressValidation": {
        "type": "object",
        "properties": {
          "validationResult": {
            "type": "string",
            "description": "Address Match Code."
          },
          "validGeographicAddress": {
            "$ref": "#/components/schemas/ValidGeographicAddress",
            "description": "Populated with the validated address if the validationResult is a perfect match."
          },
          "alternateGeographicAddress": {
            "type": "array",
            "description": "Populated with the list of addresses if there are multiple matches or MDU (Multiple Dwelling Units)",
            "items": {
              "$ref": "#/components/schemas/ValidGeographicAddress"
            }
          }
        }
      },
      "ServiceQualification": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "queryServiceQualificationDate": {
              "type": "string",
              "format": "date-time",
              "description": "The date and time when the service qualification check was performed."
            },
            "serviceQualificationItem": {
              "type": "array",
              "description": "A list of service qualification items.",
              "items": {
                "type": "object",
                "description": "A service qualification item providing details about the service category and service.",
                "properties": {
                  "category": {
                    "type": "object",
                    "description": "The (service) category resource is used to group service candidates in logical containers. Categories can contain other categories.",
                    "properties": {
                      "name": {
                        "type": "string",
                        "description": "Name of the category"
                      },
                      "displayName": {
                        "type": "string",
                        "description": "Display name of the category"
                      }
                    }
                  },
                  "service": {
                    "type": "object",
                    "properties": {
                      "category": {
                        "type": "string"
                      },
                      "displayName": {
                        "type": "string",
                        "description": "Display name of the service"
                      },
                      "serviceType": {
                        "type": "string"
                      },
                      "serviceCharacteristic": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "name": {
                              "type": "string",
                              "description": "Name of the service characteristic"
                            },
                            "valueType": {
                              "type": "string",
                              "description": "Type of the value"
                            },
                            "value": {
                              "type": "string",
                              "description": "Value of the service characteristic"
                            }
                          },
                          "description": "A list of characteristics that characterize this service e.g. QualificationResult, Priority, TransportTypes "
                        }
                      }
                    },
                    "description": "Name of the service"
                  }
                }
              }
            },
            "serviceInventory": {
              "type": "array",
              "description": "A list of existing services at the address.",
              "items": {
                "type": "object",
                "properties": {
                  "category": {
                    "type": "object",
                    "properties": {
                      "name": {
                        "type": "string",
                        "description": "Name of the category"
                      },
                      "displayName": {
                        "type": "string",
                        "description": "Display name of the category"
                      }
                    },
                    "description": "The (service) category resource is used to group service candidates in logical containers. Categories can contain other categories."
                  },
                  "service": {
                    "type": "object",
                    "properties": {
                      "category": {
                        "type": "string",
                        "description": "Category of the service"
                      },
                      "name": {
                        "type": "string",
                        "description": "Name of the service"
                      },
                      "serviceType": {
                        "type": "string",
                        "description": "Type of the service"
                      },
                      "available": {
                        "type": "boolean",
                        "description": "Indicates whether the service is available at the address"
                      }
                    },
                    "description": "Name of the service"
                  }
                }
              }
            }
          }
        }
      },
      "Address": {
        "type": "object",
        "properties": {
          "postcode": {
            "type": "string",
            "description": "Descriptor for a postal delivery area, used to speed and simplify the delivery of mail.",
            "example": "91911"
          },
          "city": {
            "type": "string",
            "description": "City that the address is in",
            "example": "CHULA VISTA"
          },
          "stateOrProvince": {
            "type": "string",
            "description": "The State or Province that the address is in",
            "example": "CA"
          },
          "addressCharacteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AddressCharacteristic"
            }
          }
        }
      },
      "AddressCharacteristic": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Key of addressLine1 from Address characteristic.",
            "example": "addressLine1"
          },
          "valueType": {
            "type": "string",
            "example": "string"
          },
          "value": {
            "type": "string",
            "description": "Value of addressLine1 from Address characteristic.",
            "example": "3802 EAST MAIN ST"
          }
        },
        "description": "Representation of a GeographicSubAddress\nIt is used for addressing within a property in an urban area (country properties are often defined differently). It may refer to a building, a building cluster, or a floor of a multistory building."
      },
      "ServiceCharacteristic": {
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of the service characteristic"
          },
          "valueType": {
            "type": "string",
            "description": "Type of the value"
          },
          "value": {
            "type": "string",
            "description": "Value of the service characteristic"
          }
        },
        "description": "A list of characteristics that characterize this service e.g. DwellingType, InstantHSIAOnIndicator "
      },
      "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."
      },
      "PriceRef": {
        "type": "object",
        "properties": {
          "dutyFreeAmount": {
            "type": "object",
            "description": "Price amount without tax",
            "properties": {
              "unit": {
                "type": "string",
                "description": "Currency unit of the price amount, if this field is empty assume USD",
                "example": "USD"
              },
              "value": {
                "description": "Numeric value of the price amount",
                "type": "number"
              }
            }
          },
          "marketingAmount": {
            "type": "object",
            "description": "Marketing amount is the price which business wants to show to customer which may exclude certain limited time promotions to show more accurate price over longer duration",
            "properties": {
              "unit": {
                "type": "string",
                "description": "Currency unit of the marketing amount, if this field is empty assume USD",
                "example": "USD"
              },
              "value": {
                "type": "number",
                "description": "Numeric value of the marketing amount",
                "example": 60.99
              }
            }
          }
        }
      },
      "PriceAlterationRef": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of the price  e.g. Discount",
            "example": "Discount"
          },
          "priceType": {
            "type": "string",
            "description": "Price type of the price alteration e.g. RC, OC",
            "example": "RC"
          },
          "immediatePromotionId": {
            "type": "string",
            "description": "Reference to the promotion instance Id that is applied as part of this price alteration",
            "example": "RC"
          },
          "chargeType": {
            "type": "string",
            "description": "Charge type of the price alteration",
            "example": "credit",
            "enum": [
              "credit",
              "debit",
              "discount"
            ]
          },
          "price": {
            "type": "object",
            "description": "Price alteration amount",
            "properties": {
              "dutyFreeAmount": {
                "type": "object",
                "properties": {
                  "unit": {
                    "type": "string",
                    "description": "Unit of price",
                    "example": "USD"
                  },
                  "value": {
                    "type": "number",
                    "description": "Numeric value of the price alteration",
                    "example": 10
                  }
                }
              }
            }
          }
        }
      },
      "ProductOfferingPrice": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Optional field depicting Name of the price",
            "example": "Easy self-setup kit Price"
          },
          "priceCategory": {
            "type": "string",
            "description": "Optional field depicting Price category",
            "example": "serviceRC"
          },
          "priceType": {
            "type": "string",
            "description": "Price type",
            "example": "RC"
          },
          "recurringChargePeriod": {
            "type": "string",
            "description": "Recurring charge period",
            "example": "month",
            "enum": [
              "month",
              "week"
            ]
          },
          "recurringChargePeriodLength": {
            "type": "number",
            "description": "Length of the recurring charge period",
            "example": 1
          },
          "role": {
            "type": "string",
            "description": "Role of the price",
            "example": "Price",
            "enum": [
              "Price",
              "Bundle Price Alteration"
            ]
          },
          "price": {
            "$ref": "#/components/schemas/PriceRef"
          },
          "finalPrice": {
            "$ref": "#/components/schemas/PriceRef"
          },
          "standalonePrice": {
            "$ref": "#/components/schemas/PriceRef"
          },
          "priceAlteration": {
            "type": "array",
            "description": "List of price alterations that are applied on the price such as promotions",
            "items": {
              "$ref": "#/components/schemas/PriceAlterationRef"
            }
          },
          "productOfferingPrice": {
            "type": "object",
            "description": "Hyperlocal Pricing Strategy attributes",
            "properties": {
              "id": {
                "type": "string",
                "description": "Hyperlocal pricing strategy id",
                "example": "SO003"
              },
              "name": {
                "type": "string",
                "description": "Hyperlocal pricing strategy name",
                "example": "South East LA"
              },
              "priceType": {
                "type": "string",
                "description": "Hyperlocal pricing strategy price type",
                "example": "Subsidy"
              }
            }
          },
          "periodCoverage": {
            "type": "object",
            "description": "Hyperlocal Pricing Strategy attributes",
            "properties": {
              "startDateTime": {
                "type": "string",
                "description": "Start date and time of the hyperlocal pricing strategy",
                "example": "2024-01-01T00:00:00Z"
              },
              "endDateTime": {
                "type": "string",
                "description": "End date and time of the hyperlocal pricing strategy",
                "example": "2024-12-31T23:59:59Z"
              }
            }
          },
          "taxIncluded": {
            "type": "string",
            "description": "Indicates whether the price includes tax or not",
            "example": "Excluded"
          }
        }
      },
      "ProductOfferingCharacteristic": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of the product offer characteristic",
            "example": "Payment_Type"
          },
          "localizedName": {
            "type": "string",
            "description": "Localized name of the product offer characteristic",
            "example": ""
          },
          "valueType": {
            "type": "string",
            "description": "Value type of the product offer characteristic useful for parsing values of number, or boolean type",
            "example": ""
          },
          "value": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "value": {
                  "type": "string",
                  "example": "Pay_on_Bill"
                },
                "localizedValue": {
                  "type": "string",
                  "example": "Pay on Bill"
                },
                "default": {
                  "type": "boolean",
                  "example": false
                }
              }
            }
          }
        }
      },
      "BundledProductOfferingOption": {
        "type": "object",
        "description": "Pricing options for bundled product",
        "properties": {
          "numberRelOfferDefault": {
            "type": "integer",
            "description": "Default number of related offers to include when selecting this option"
          },
          "numberRelOfferLowerLimit": {
            "type": "integer",
            "description": "Lower limit for number of related offers that can be selected"
          },
          "numberRelOfferUpperLimit": {
            "type": "integer",
            "description": "Upper limit for number of related offers that can be selected"
          },
          "productOfferingPrice": {
            "type": "array",
            "description": "Price of all bundled products and price alterations with promotion references",
            "items": {
              "$ref": "#/components/schemas/ProductOfferingPrice"
            }
          },
          "productOfferingTotalPrice": {
            "type": "array",
            "description": "Total price of all bundled products with aggregated price alterations by price type",
            "items": {
              "$ref": "#/components/schemas/ProductOfferingPrice"
            }
          },
          "productOfferingCharacteristic": {
            "type": "array",
            "description": "Bundled product offer options characteristics",
            "items": {
              "$ref": "#/components/schemas/ProductOfferingCharacteristic"
            }
          }
        }
      },
      "BundledProductOffering": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier for the bundled product offering",
            "example": "c9715944-afed-42eb-a35f-51c2ced6bea4"
          },
          "name": {
            "type": "string",
            "description": "Name of the bundled product offering",
            "example": "Bring Your Own Phone"
          },
          "description": {
            "type": "string",
            "description": "Description of the bundled product offering",
            "example": "Bring Your Own Phone"
          },
          "productOfferingType": {
            "type": "string",
            "description": "Type of the bundled product offering",
            "example": "Mobile_Device"
          },
          "productOfferingTypeGroup": {
            "type": "string",
            "description": "Group of the bundled product offering type",
            "example": "mobileDevice"
          },
          "bundledProductOfferingOption": {
            "type": "array",
            "description": "List of options available for the bundled product offering",
            "items": {
              "$ref": "#/components/schemas/BundledProductOfferingOption"
            }
          },
          "conflictingProductOfferIds": {
            "type": "array",
            "description": "List of IDs of conflicting product offers for the bundled product offering",
            "items": {
              "type": "string",
              "description": "Product offer ID of a conflicting product offer"
            }
          },
          "productOfferingTotalPrice": {
            "type": "array",
            "description": "Total price of the bundled product offering including promotions",
            "items": {
              "$ref": "#/components/schemas/ProductOfferingPrice"
            }
          }
        }
      },
      "BundledProductOfferingGroupOption": {
        "type": "object",
        "description": "Shows if multiple options are available of which only one or more needs to be selected e.g. SelfInstallation and TechInstallation",
        "properties": {
          "groupOptionId": {
            "type": "string",
            "example": "3405d3aa-b60a-11ef-ae7c-27965683c6f2"
          },
          "description": {
            "type": "string",
            "description": "Description of the group option",
            "example": "Select Device"
          },
          "bundledProductOffering": {
            "type": "array",
            "description": "List of bundled product offers that are part of this group option",
            "items": {
              "$ref": "#/components/schemas/BundledProductOffering"
            }
          }
        }
      },
      "ImmediatePromotionRef": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Promotion instance Id, used for referencing promotions in priceAlterations",
            "example": "62900028"
          },
          "status": {
            "type": "string",
            "description": "Status of the promotion application",
            "example": "add",
            "enum": [
              "add",
              "keep",
              "revoke",
              "update"
            ]
          },
          "promotion": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "Unique identifier for the promotion",
                "example": "wrlnpr-62900028"
              },
              "name": {
                "type": "string",
                "description": "Name of the promotion",
                "example": "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": {
                "type": "string",
                "description": "Description of the promotion",
                "example": "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": {
                "type": "string",
                "description": "Type of the promotion",
                "example": "discount"
              },
              "applyPolicy": {
                "type": "string",
                "description": "Policy for applying the promotion can be manual or automatic",
                "example": "automatic"
              },
              "promotionCharacteristics": {
                "type": "array",
                "description": "List of characteristics of the promotion",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "example": "duration"
                    },
                    "value": {
                      "type": "string",
                      "example": "999"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "ProductOffering": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the product offer, use this for adding to cart or for fetching addons based on this product offer",
            "example": "06c387fb-bfd5-4287-a1e8-b9da4c0be06e"
          },
          "name": {
            "type": "string",
            "description": "Name of the product offer",
            "example": "Value Plus VL"
          },
          "localizedName": {
            "type": "string",
            "description": "Localized name of the product offer based on channel locale",
            "example": "Value Plus VL"
          },
          "description": {
            "type": "string",
            "description": "Description of the product offer",
            "example": "Value Plus VL"
          },
          "productOfferingType": {
            "type": "string",
            "description": "Type of the product offer",
            "example": "BB_Offer, Mobile_Offer"
          },
          "productOfferingTypeGroup": {
            "type": "string",
            "description": "Product offering type is part of this group e.g. mobilePlan, mobileAddon, mobileDevice, mobileOffer, sim, BBOffer, BBPlan, BBInstallation, BBHomeTechProtectionPlan, BBREWARD",
            "example": "BBOffer"
          },
          "broadbandFactsUrl": {
            "type": "string",
            "description": "Url for broadband nutrition label facts for the offer if taxation geocode can be determined from address",
            "example": "https://test2.att.com/static-content-service-ui/v1/labelfeed/shared/nutrition/CONS/85333ec5-e9aa-4c8e-b886-04afb19e4a6a?taxationgeocode=261830000"
          },
          "bundledProductOffering": {
            "type": "array",
            "description": "List of bundled product offers that are part of this product offer",
            "items": {
              "$ref": "#/components/schemas/BundledProductOffering"
            }
          },
          "productOfferingTotalPrice": {
            "type": "array",
            "description": "Total price of the bundled offers including promotions",
            "items": {
              "$ref": "#/components/schemas/ProductOfferingPrice"
            }
          },
          "bundledProductOfferingGroupOption": {
            "type": "array",
            "description": "Shows if multiple options are available of which only one or more needs to be selected e.g. SelfInstallation and TechInstallation",
            "items": {
              "$ref": "#/components/schemas/BundledProductOfferingGroupOption"
            }
          },
          "immediatePromotion": {
            "type": "array",
            "description": "List of applicable promotions",
            "items": {
              "$ref": "#/components/schemas/ImmediatePromotionRef"
            }
          },
          "productOfferingCharacteristic": {
            "type": "array",
            "description": "List of characteristics of the product offer",
            "items": {
              "$ref": "#/components/schemas/ProductOfferingCharacteristic"
            }
          }
        }
      },
      "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"
      }
    },
    "examples": {
      "ServiceQual_Perfectmatch_response": {
        "value": {
          "addressValidation": {
            "validationResult": "success",
            "validGeographicAddress": {
              "id": "00000NG3XH",
              "streetNr": "3802",
              "streetName": "MAIN",
              "streetType": "ST",
              "city": "CHULA VISTA",
              "stateOrProvince": "CA",
              "postcode": "91911",
              "postcodeExtension": "6246",
              "country": "USA",
              "completeTimeZone": "Pacific Time (PST/PDT)",
              "geographicSubAddress": [
                {
                  "subUnitType": "APT",
                  "subUnitNumber": "5"
                }
              ]
            }
          },
          "serviceCharacteristic": [
            {
              "name": "InstantHSIAOnIndicator",
              "valueType": "string",
              "value": "false"
            }
          ],
          "serviceQualification": [
            {
              "queryServiceQualificationDate": "2025-10-09T20:47:12.05Z",
              "serviceQualificationItem": [
                {
                  "category": {
                    "name": "INTERNET",
                    "displayName": "Internet"
                  },
                  "service": {
                    "category": "HSIA",
                    "displayName": "AT&T Internet",
                    "serviceType": "HSIA",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      }
                    ]
                  }
                },
                {
                  "category": {
                    "name": "INTERNET",
                    "displayName": "Internet"
                  },
                  "service": {
                    "category": "FIBER",
                    "displayName": "AT&T Fiber",
                    "serviceType": "FIBER",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      }
                    ]
                  }
                }
              ],
              "serviceInventory": [
                {
                  "category": {
                    "name": "INTERNET",
                    "displayName": "Internet"
                  },
                  "service": {
                    "category": "FIBER",
                    "name": "FIBER",
                    "serviceType": "FIBER",
                    "available": true
                  }
                },
                {
                  "category": {
                    "name": "INTERNET",
                    "displayName": "Internet"
                  },
                  "service": {
                    "category": "HSIA",
                    "name": "HSIA",
                    "serviceType": "HSIA",
                    "available": true
                  }
                }
              ]
            }
          ],
          "swimlaneList": [
            {
              "plan": "Hsia5000g",
              "swimlane": "29",
              "planTier": "F",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKit",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia2000g",
              "swimlane": "29",
              "planTier": "E",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKit",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia1000g",
              "swimlane": "29",
              "planTier": "D",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia500g",
              "swimlane": "29",
              "planTier": "C",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia300g",
              "swimlane": "29",
              "planTier": "B",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia100g",
              "swimlane": "29",
              "planTier": "A",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            }
          ]
        }
      },
      "ServiceQual_Perfectmatch_Voip_response": {
        "value": {
          "addressValidation": {
            "validationResult": "success",
            "validGeographicAddress": {
              "id": "000006Z2W2",
              "streetNr": "9382",
              "streetName": "JUNIOR",
              "streetType": "AVE",
              "city": "APOPKA",
              "stateOrProvince": "FL",
              "postcode": "32703",
              "postcodeExtension": "1831",
              "country": "USA",
              "completeTimeZone": "Eastern Time (EST/EDT)"
            }
          },
          "serviceQualification": [
            {
              "serviceQualificationItem": [
                {
                  "category": {
                    "name": "INTERNET",
                    "displayName": "Internet"
                  },
                  "service": {
                    "category": "FIBER",
                    "displayName": "AT&T Fiber",
                    "serviceType": "FIBER",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      },
                      {
                        "name": "priority",
                        "valueType": "number",
                        "value": "1"
                      },
                      {
                        "name": "TransportTypes",
                        "valueType": "string",
                        "value": "FTTP-GPON"
                      },
                      {
                        "name": "NetworkTransportType",
                        "valueType": "string",
                        "value": "FTTP-GPON"
                      },
                      {
                        "name": "PreferredNetworkType",
                        "valueType": "string",
                        "value": "FTTP-GPON"
                      },
                      {
                        "name": "UversePendingOrder",
                        "valueType": "boolean",
                        "value": "false"
                      },
                      {
                        "name": "LightGreenIndicator",
                        "valueType": "boolean",
                        "value": "false"
                      },
                      {
                        "name": "MaxDownloadSpeedMbps",
                        "valueType": "number",
                        "value": "5000"
                      },
                      {
                        "name": "MaxUploadSpeedMbps",
                        "valueType": "number",
                        "value": "5000"
                      },
                      {
                        "name": "LightGig",
                        "valueType": "boolean",
                        "value": "false"
                      },
                      {
                        "name": "MultiGig",
                        "valueType": "boolean",
                        "value": "true"
                      },
                      {
                        "name": "GigaPowerAvailabilityIndicator",
                        "valueType": "boolean",
                        "value": "true"
                      },
                      {
                        "name": "UverseEligible",
                        "valueType": "boolean",
                        "value": "true"
                      },
                      {
                        "name": "AvailableForSell",
                        "valueType": "boolean",
                        "value": "true"
                      },
                      {
                        "name": "OpticType",
                        "valueType": "string",
                        "value": "XGS PON"
                      },
                      {
                        "name": "OntCategory",
                        "valueType": "string",
                        "value": "INTERNAL"
                      },
                      {
                        "name": "HomeBasedBusiness",
                        "valueType": "boolean",
                        "value": "true"
                      }
                    ]
                  }
                },
                {
                  "category": {
                    "name": "INTERNET",
                    "displayName": "Internet"
                  },
                  "service": {
                    "category": "HSIA",
                    "displayName": "AT&T Internet",
                    "serviceType": "HSIA",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      },
                      {
                        "name": "priority",
                        "valueType": "number",
                        "value": "2"
                      },
                      {
                        "name": "UversePendingOrder",
                        "valueType": "boolean",
                        "value": "false"
                      },
                      {
                        "name": "LightGreenIndicator",
                        "valueType": "boolean",
                        "value": "false"
                      },
                      {
                        "name": "MaxDownloadSpeedMbps",
                        "valueType": "number",
                        "value": "0"
                      },
                      {
                        "name": "MaxUploadSpeedMbps",
                        "valueType": "number",
                        "value": "0"
                      },
                      {
                        "name": "LightSpeedEligible",
                        "valueType": "boolean",
                        "value": "true"
                      },
                      {
                        "name": "UverseEligible",
                        "valueType": "boolean",
                        "value": "true"
                      },
                      {
                        "name": "GigaPowerAvailabilityIndicator",
                        "valueType": "boolean",
                        "value": "true"
                      },
                      {
                        "name": "InternetBandwidthEligible",
                        "valueType": "boolean",
                        "value": "false"
                      },
                      {
                        "name": "IpdslInternetEligible",
                        "valueType": "boolean",
                        "value": "false"
                      },
                      {
                        "name": "IpdslEligible",
                        "valueType": "boolean",
                        "value": "false"
                      },
                      {
                        "name": "IpdslamBondedPairEligible",
                        "valueType": "boolean",
                        "value": "false"
                      },
                      {
                        "name": "AvailableForSell",
                        "valueType": "boolean",
                        "value": "true"
                      }
                    ]
                  }
                },
                {
                  "category": {
                    "name": "TV",
                    "displayName": "TV"
                  },
                  "service": {
                    "category": "DTV",
                    "displayName": "DirectTV",
                    "serviceType": "DTV",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      },
                      {
                        "name": "priority",
                        "valueType": "number",
                        "value": "1"
                      }
                    ]
                  }
                },
                {
                  "category": {
                    "name": "TV",
                    "displayName": "TV"
                  },
                  "service": {
                    "category": "IPTV",
                    "displayName": "AT&T IPTV",
                    "serviceType": "IPTV",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      },
                      {
                        "name": "priority",
                        "valueType": "number",
                        "value": "2"
                      }
                    ]
                  }
                },
                {
                  "category": {
                    "name": "PHONE",
                    "displayName": "Phone"
                  },
                  "service": {
                    "category": "VOIP",
                    "displayName": "VOIP",
                    "serviceType": "VOIP",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      },
                      {
                        "name": "priority",
                        "valueType": "number",
                        "value": "1"
                      }
                    ]
                  }
                },
                {
                  "category": {
                    "name": "PHONE",
                    "displayName": "Phone"
                  },
                  "service": {
                    "category": "AP-A",
                    "displayName": "AP-A",
                    "serviceType": "AP-A",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      },
                      {
                        "name": "priority",
                        "valueType": "number",
                        "value": "2"
                      },
                      {
                        "name": "AP-ATransportTypes",
                        "valueType": "string",
                        "value": "APA-WLS"
                      }
                    ]
                  }
                },
                {
                  "category": {
                    "name": "PHONE",
                    "displayName": "Phone"
                  },
                  "service": {
                    "category": "POTS",
                    "displayName": "AT&T POTS",
                    "serviceType": "POTS",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      },
                      {
                        "name": "priority",
                        "valueType": "number",
                        "value": "3"
                      }
                    ]
                  }
                },
                {
                  "category": {
                    "name": "WLS",
                    "displayName": "Wireless"
                  },
                  "service": {
                    "category": "WIRELESS",
                    "displayName": "Wireless",
                    "serviceType": "WIRELESS",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      },
                      {
                        "name": "priority",
                        "valueType": "number",
                        "value": "1"
                      }
                    ]
                  }
                }
              ],
              "serviceInventory": [
                {
                  "category": {
                    "name": "INTERNET",
                    "displayName": "Internet"
                  },
                  "service": {
                    "category": "UVERSE",
                    "name": "UVERSE",
                    "serviceType": "UVERSE",
                    "available": true
                  }
                }
              ]
            }
          ],
          "swimlaneList": [
            {
              "plan": "Hsia5000g",
              "swimlane": "29",
              "planTier": "F",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKit",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia2000g",
              "swimlane": "29",
              "planTier": "E",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKit",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia1000g",
              "swimlane": "29",
              "planTier": "D",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia500g",
              "swimlane": "29",
              "planTier": "C",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia300g",
              "swimlane": "29",
              "planTier": "B",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia100g",
              "swimlane": "29",
              "planTier": "A",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            }
          ]
        }
      },
      "ServiceQual_Perfectmatch_AIA_response": {
        "value": {
          "addressValidation": {
            "validationResult": "success",
            "validGeographicAddress": {
              "id": "00000FSUXI",
              "streetNr": "12150",
              "streetName": "KING",
              "streetType": "RD",
              "city": "ROSWELL",
              "stateOrProvince": "GA",
              "postcode": "30075",
              "postcodeExtension": "5522",
              "country": "USA",
              "completeTimeZone": "Eastern Time (EST/EDT)"
            }
          },
          "serviceQualification": [
            {
              "queryServiceQualificationDate": "2026-05-01T15:29:10.864371033Z",
              "serviceQualificationItem": [
                {
                  "category": {
                    "name": "INTERNET",
                    "displayName": "Internet"
                  },
                  "service": {
                    "category": "WBB",
                    "displayName": "AT&T Internet Air",
                    "serviceType": "WBB",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      },
                      {
                        "name": "priority",
                        "valueType": "number",
                        "value": "1"
                      },
                      {
                        "name": "TransportTypes",
                        "valueType": "string",
                        "value": "AIA"
                      },
                      {
                        "name": "UversePendingOrder",
                        "valueType": "boolean",
                        "value": "false"
                      },
                      {
                        "name": "LightGreenIndicator",
                        "valueType": "boolean",
                        "value": "false"
                      },
                      {
                        "name": "MaxSpeed",
                        "valueType": "string",
                        "value": "175.0"
                      },
                      {
                        "name": "MaxData",
                        "valueType": "string",
                        "value": "unlimited"
                      },
                      {
                        "name": "SpecialSvc",
                        "valueType": "string",
                        "value": "RMO"
                      }
                    ]
                  }
                },
                {
                  "category": {
                    "name": "TV",
                    "displayName": "TV"
                  },
                  "service": {
                    "category": "DTV",
                    "displayName": "DirectTV",
                    "serviceType": "DTV",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      },
                      {
                        "name": "priority",
                        "valueType": "number",
                        "value": "1"
                      }
                    ]
                  }
                },
                {
                  "category": {
                    "name": "PHONE",
                    "displayName": "Phone"
                  },
                  "service": {
                    "category": "AP-A",
                    "displayName": "AP-A",
                    "serviceType": "AP-A",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      },
                      {
                        "name": "priority",
                        "valueType": "number",
                        "value": "1"
                      },
                      {
                        "name": "AP-ATransportTypes",
                        "valueType": "string",
                        "value": "APA-WLS"
                      }
                    ]
                  }
                },
                {
                  "category": {
                    "name": "PHONE",
                    "displayName": "Phone"
                  },
                  "service": {
                    "category": "POTS",
                    "displayName": "AT&T POTS",
                    "serviceType": "POTS",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      },
                      {
                        "name": "priority",
                        "valueType": "number",
                        "value": "2"
                      }
                    ]
                  }
                },
                {
                  "category": {
                    "name": "WLS",
                    "displayName": "Wireless"
                  },
                  "service": {
                    "category": "WIRELESS",
                    "displayName": "Wireless",
                    "serviceType": "WIRELESS",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      },
                      {
                        "name": "priority",
                        "valueType": "number",
                        "value": "1"
                      }
                    ]
                  }
                }
              ],
              "serviceInventory": [
                {
                  "category": {
                    "name": "WLS",
                    "displayName": "Wireless"
                  },
                  "service": {
                    "category": "WIRELESS",
                    "name": "WIRELESS",
                    "serviceType": "WIRELESS",
                    "available": true
                  }
                }
              ]
            }
          ],
          "serviceCharacteristic": [
            {
              "name": "InstantHSIAOnIndicator",
              "valueType": "boolean",
              "value": "false"
            }
          ]
        }
      },
      "ServiceQual_Perfectmatch_InstantOn_response": {
        "value": {
          "addressValidation": {
            "validationResult": "success",
            "validGeographicAddress": {
              "id": "00011F2ET4",
              "streetNr": "12890",
              "streetName": "BLACK BOB",
              "streetType": "RD",
              "city": "OLATHE",
              "stateOrProvince": "KS",
              "postcode": "66061",
              "postcodeExtension": "7237",
              "country": "USA",
              "completeTimeZone": "Central Time (CST/CDT)",
              "geographicSubAddress": [
                {
                  "subUnitType": "UNIT",
                  "subUnitNumber": "9208"
                }
              ]
            }
          },
          "serviceCharacteristic": [
            {
              "name": "InstantHSIAOnIndicator",
              "valueType": "string",
              "value": "true"
            }
          ],
          "serviceQualification": [
            {
              "queryServiceQualificationDate": "2025-10-09T20:47:12.05Z",
              "serviceQualificationItem": [
                {
                  "category": {
                    "name": "INTERNET",
                    "displayName": "Internet"
                  },
                  "service": {
                    "category": "HSIA",
                    "displayName": "AT&T Internet",
                    "serviceType": "HSIA",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      }
                    ]
                  }
                },
                {
                  "category": {
                    "name": "INTERNET",
                    "displayName": "Internet"
                  },
                  "service": {
                    "category": "FIBER",
                    "displayName": "AT&T Fiber",
                    "serviceType": "FIBER",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      }
                    ]
                  }
                }
              ],
              "serviceInventory": [
                {
                  "category": {
                    "name": "INTERNET",
                    "displayName": "Internet"
                  },
                  "service": {
                    "category": "FIBER",
                    "name": "FIBER",
                    "serviceType": "FIBER",
                    "available": true
                  }
                },
                {
                  "category": {
                    "name": "INTERNET",
                    "displayName": "Internet"
                  },
                  "service": {
                    "category": "HSIA",
                    "name": "HSIA",
                    "serviceType": "HSIA",
                    "available": true
                  }
                }
              ]
            }
          ],
          "swimlaneList": [
            {
              "plan": "Hsia5000g",
              "swimlane": "29",
              "planTier": "F",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKit",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia2000g",
              "swimlane": "29",
              "planTier": "E",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKit",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia1000g",
              "swimlane": "29",
              "planTier": "D",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia500g",
              "swimlane": "29",
              "planTier": "C",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia300g",
              "swimlane": "29",
              "planTier": "B",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia100g",
              "swimlane": "29",
              "planTier": "A",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            }
          ]
        }
      },
      "ServiceQualification_with_No_Qualification": {
        "value": {
          "addressValidation": {
            "validationResult": "success",
            "validGeographicAddress": {
              "id": "000013Q2A6",
              "streetNr": "5200",
              "streetName": "SUMMIT RIDGE",
              "streetType": "DR",
              "city": "RENO",
              "stateOrProvince": "NV",
              "postcode": "89523",
              "postcodeExtension": "9014",
              "country": "USA",
              "geographicSubAddress": [
                {
                  "subUnitType": "APT",
                  "subUnitNumber": "1212"
                }
              ]
            }
          },
          "serviceQualification": [
            {
              "queryServiceQualificationDate": "2026-03-20T16:58:08.848Z"
            }
          ]
        }
      },
      "ServiceQualification_with_No_Offers": {
        "value": {
          "addressValidation": {
            "validationResult": "success",
            "validGeographicAddress": {
              "id": "00001Y1AV1",
              "streetNr": "18504",
              "streetName": "126TH",
              "streetType": "AVE",
              "streetSuffix": "NE",
              "city": "BOTHELL",
              "stateOrProvince": "WA",
              "postcode": "98011",
              "postcodeExtension": "9318",
              "country": "USA"
            }
          },
          "serviceQualification": [
            {
              "queryServiceQualificationDate": "2026-02-09T20:04:28.461425835Z",
              "serviceQualificationItem": [
                {
                  "category": {
                    "name": "WLS",
                    "displayName": "Wireless"
                  },
                  "service": {
                    "category": "WIRELESS",
                    "displayName": "Wireless",
                    "serviceType": "WIRELESS",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      },
                      {
                        "name": "priority",
                        "valueType": "number",
                        "value": "1"
                      }
                    ]
                  }
                }
              ]
            }
          ],
          "swimlaneList": [
            {
              "plan": "Hsia5000g",
              "swimlane": "29",
              "planTier": "F",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKit",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia2000g",
              "swimlane": "29",
              "planTier": "E",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKit",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia1000g",
              "swimlane": "29",
              "planTier": "D",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia500g",
              "swimlane": "29",
              "planTier": "C",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia300g",
              "swimlane": "29",
              "planTier": "B",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia100g",
              "swimlane": "29",
              "planTier": "A",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            }
          ],
          "offers": {}
        }
      },
      "servicequalification_withOffers_response": {
        "value": {
          "addressValidation": {
            "validationResult": "success",
            "validGeographicAddress": {
              "id": "00000NG3XH",
              "streetNr": "3802",
              "streetName": "MAIN",
              "streetType": "ST",
              "city": "CHULA VISTA",
              "stateOrProvince": "CA",
              "postcode": "91911",
              "postcodeExtension": "6246",
              "country": "USA",
              "completeTimeZone": "Pacific Time (PST/PDT)",
              "geographicSubAddress": [
                {
                  "subUnitType": "APT",
                  "subUnitNumber": "5"
                }
              ]
            }
          },
          "serviceQualification": [
            {
              "queryServiceQualificationDate": "2025-10-09T20:47:12.05Z",
              "serviceQualificationItem": [
                {
                  "category": {
                    "name": "INTERNET",
                    "displayName": "Internet"
                  },
                  "service": {
                    "category": "HSIA",
                    "displayName": "AT&T Internet",
                    "serviceType": "HSIA",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      }
                    ]
                  }
                },
                {
                  "category": {
                    "name": "INTERNET",
                    "displayName": "Internet"
                  },
                  "service": {
                    "category": "FIBER",
                    "displayName": "AT&T Fiber",
                    "serviceType": "FIBER",
                    "serviceCharacteristic": [
                      {
                        "name": "QualificationResult",
                        "valueType": "string",
                        "value": "qualified"
                      }
                    ]
                  }
                }
              ],
              "serviceInventory": [
                {
                  "category": {
                    "name": "INTERNET",
                    "displayName": "Internet"
                  },
                  "service": {
                    "category": "FIBER",
                    "name": "FIBER",
                    "serviceType": "FIBER",
                    "available": true
                  }
                },
                {
                  "category": {
                    "name": "INTERNET",
                    "displayName": "Internet"
                  },
                  "service": {
                    "category": "HSIA",
                    "name": "HSIA",
                    "serviceType": "HSIA",
                    "available": true
                  }
                }
              ]
            }
          ],
          "swimlaneList": [
            {
              "plan": "Hsia5000g",
              "swimlane": "29",
              "planTier": "F",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKit",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia2000g",
              "swimlane": "29",
              "planTier": "E",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKit",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia1000g",
              "swimlane": "29",
              "planTier": "D",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia500g",
              "swimlane": "29",
              "planTier": "C",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia300g",
              "swimlane": "29",
              "planTier": "B",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            },
            {
              "plan": "Hsia100g",
              "swimlane": "29",
              "planTier": "A",
              "planMRCBillingOffer": "88541733",
              "BBFootPrint": "FiberKitOptional",
              "PSid": "NA001"
            }
          ],
          "offers": {
            "BBOffers": [
              {
                "id": "ibbndl_prod12300337_prod8580387_rwd-40800001_rwd-32300005_prod8960401",
                "name": "AT&T Internet 1000",
                "localizedName": "AT&T Internet 1000",
                "description": "1 GIG speed + unlimited internet data",
                "productOfferingType": "BB_Offer",
                "productOfferingTypeGroup": "BBOffer",
                "bundledProductOffering": [
                  {
                    "id": "prod12300337",
                    "name": "AT&T Internet 1000",
                    "description": "1 GIG speed + unlimited internet data",
                    "productOfferingType": "BB_Plan",
                    "productOfferingTypeGroup": "BBPlan",
                    "bundledProductOfferingOption": [
                      {
                        "productOfferingPrice": [
                          {
                            "name": "AT&T Internet 1000 Price",
                            "priceType": "RC",
                            "recurringChargePeriod": "month",
                            "recurringChargePeriodLength": 1,
                            "role": "Price",
                            "price": {
                              "dutyFreeAmount": {
                                "unit": "USD",
                                "value": 90
                              }
                            },
                            "finalPrice": {
                              "dutyFreeAmount": {
                                "unit": "USD",
                                "value": 80
                              },
                              "marketingAmount": {
                                "unit": "USD",
                                "value": 80
                              }
                            },
                            "priceAlteration": [
                              {
                                "name": "Discount",
                                "priceType": "RC",
                                "chargeType": "credit",
                                "immediatePromotionId": "62900028",
                                "price": {
                                  "dutyFreeAmount": {
                                    "unit": "USD",
                                    "value": 10
                                  }
                                }
                              }
                            ],
                            "taxIncluded": "Excluded"
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "id": "prod8580387",
                    "name": "Includes unlimited internet data",
                    "description": "Includes unlimited internet data",
                    "productOfferingType": "BB_UsageAllowance",
                    "productOfferingTypeGroup": "BBUsageAllowance",
                    "bundledProductOfferingOption": [
                      {
                        "productOfferingPrice": [
                          {
                            "name": "Includes unlimited internet data Price",
                            "priceType": "RC",
                            "recurringChargePeriod": "month",
                            "recurringChargePeriodLength": 1,
                            "role": "Price",
                            "price": {
                              "dutyFreeAmount": {
                                "unit": "USD",
                                "value": 0
                              }
                            },
                            "finalPrice": {
                              "dutyFreeAmount": {
                                "unit": "USD",
                                "value": 0
                              }
                            },
                            "taxIncluded": "Excluded"
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "id": "rwd-40800001",
                    "name": "Switch and we'll pay your cancellation fee in full.",
                    "description": "<p><b>Switcher Reward Card Offer: Subj to change and may be discontinued at any time. </b>Available only to new residential customers who switch from their current provider to AT&amp;T Fiber (300 or higher) plan. Customer must provide valid proof of previous internet provider&#8217;s Early Termination (ETF) charge dated no more than 60 calendar days prior to AT&amp;T Fiber order. <b>Reward Card Value: </b>Amount based on customer&#8217;s actual ETF from previous rounded up to the nearest $10 increment. Offer excludes taxes, service fees, return equip fees, or ETF incurred on services bundled with previous provider. </p>\r\n<p><b>Reward Card Redemption:</b> Will be sent email or letter w/ redemption info. Redemption required w/in 75 days from reward notification email or mail date. Card delivered w/in 3-4 weeks after redemption to customers who maintain &amp; pay for qualifying service through reward fulfillment. Card expires at month-end 6 mos after issuance. For Cardholder Agreement, go to <a href=\"https://rewardcenter.att.com/\" target=\"https://rewardcenter.att.com\">rewardcenter.att.com</a>. Card issued by The Bancorp Bank N.A., Member FDIC, pursuant to a license from Visa U.S.A. Inc. and can be used everywhere Visa debit cards are accepted in the United States, District of Columbia, US Virgin Islands, and Puerto Rico. No cash access. The Bancorp Bank N.A. does not endorse or sponsor and is not affiliated in any way with any product or service offered by AT&amp;T. </p>\r\n<p><b>Offers may not be combined with certain other promotional offers on the same services and may be modified or discontinued at any time without notice. Other conditions may apply to all offers.</b></p>",
                    "productOfferingType": "BB_Reward",
                    "productOfferingTypeGroup": "BBReward",
                    "bundledProductOfferingOption": [
                      {
                        "productOfferingPrice": [
                          {
                            "name": "Switch and we'll pay your cancellation fee in full. Price",
                            "priceType": "OTR",
                            "role": "Price",
                            "price": {
                              "dutyFreeAmount": {
                                "unit": "USD",
                                "value": 0
                              }
                            },
                            "finalPrice": {
                              "dutyFreeAmount": {
                                "unit": "USD",
                                "value": 0
                              }
                            },
                            "taxIncluded": "Excluded"
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "id": "rwd-32300005",
                    "name": "$150 reward card for ordering internet online.",
                    "description": "<p><b><u>REWARD CARD OFFERS </u>Online only at att.com. </b>For new residential customers purchasing an AT&amp;T Fiber plan (300 or higher). Residents of select multi-dwelling units not eligible. </p>\r\n<p><b>Up to $150 Reward Card: Subj to change and may be discontinued at any time. $50 </b>with Internet 300; <b>$100</b> with Internet 500; <b>$150 </b>with Internet 1000 or higher plan. </p>\r\n<p><b>Redemption: </b> </p>\r\n<p>Watch your mailbox! </p> <ul> <li>You will be sent an email or letter with redemption instructions for each card offer, if applicable.   </li> </ul> <ul> <li>Please allow up to 6 weeks from the time you activate your qualifying service. </li> </ul><p>Redemption required w/in 75 days from reward notification mail or email date. </p>  <ul> <li>Card(s) delivered w/in 3-4 weeks after redemption to customers who maintain &amp; pay for qualifying service through reward fulfillment. </li> </ul> <ul> <li>Card(s) expires at month-end 6 months after issuance. </li> </ul><p>For Cardholder Agreement, go to <a href=\"https://rewardcenter.att.com/\" target=\"https://rewardcenter.att.com\">rewardcenter.att.com</a>. AT&amp;T Visa Reward Card is issued by The Bancorp Bank   pursuant to a license from Visa U.S.A. Inc. and can be used everywhere Visa debit cards are accepted in the United States, District of Columbia, US Virgin Islands, and Puerto Rico.  No cash access. The Bancorp Bank does not endorse or sponsor and is not affiliated in any way with any product or service offered by AT&amp;T. </p>",
                    "productOfferingType": "BB_Reward",
                    "productOfferingTypeGroup": "BBReward",
                    "bundledProductOfferingOption": [
                      {
                        "productOfferingPrice": [
                          {
                            "name": "$150 reward card for ordering internet online. Price",
                            "priceType": "OTR",
                            "role": "Price",
                            "price": {
                              "dutyFreeAmount": {
                                "unit": "USD",
                                "value": 150
                              }
                            },
                            "finalPrice": {
                              "dutyFreeAmount": {
                                "unit": "USD",
                                "value": 150
                              }
                            },
                            "taxIncluded": "Excluded"
                          }
                        ]
                      }
                    ]
                  }
                ],
                "productOfferingCharacteristic": [
                  {
                    "name": "displayName",
                    "localizedName": "displayName",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "Internet",
                        "localizedValue": "Internet",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "offerDetails",
                    "localizedName": "offerDetails",
                    "valueType": "String",
                    "value": [
                      {
                        "value": " <p>Geographic and service restrictions apply to AT&amp;T Internet services. Not all speeds available in all areas.</p><br><p><u></u></p><br><p><u>Internet plans (768K to 75M)</u></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet plans 768K-75M for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. After 12 mos., then-prevailing rate applies unless canceled before the end of 12 months. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount. <b>Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;Data Allowance:</b> $10 charge applies for each additional 50GB (up to $100/mo). Unlimited data allowance may also be purchased separately for an add&#8217;l $30/mo. For more info, go to <u>att.com/internet-usage</u>.</p><br><p><b></b></p><br><p><b>&#8224;&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. Actual customer speeds are not guaranteed and may vary based on several factors. For more information, go to <u>att.com/speed101</u>.</p><br><p><u></u></p><br><p><u>Internet 100</u></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 100 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. After 12 mos., then-prevailing rate applies unless canceled before the end of 12 months. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount<b>. Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><u></u></p><br><p><u>Internet 300, 500, &amp; 1000</u></p><br><p><b></b></p><br><p><b>Limited availability. May not be available in your area.</b></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 300, Internet 500, and Internet 1000 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount. <b>Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply<b>. Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. 1 GIG speeds available to new customers with the latest router (&#8220;BGW320&#8221;) and recommended setup. Actual customer speeds may vary based on a number of factors and are not guaranteed. For more information, go to <u>att.com/speed101</u>.</p><br><p><u></u></p><br><p><u>Internet 2000 &amp; 5000</u></p><br><p><b></b></p><br><p><b>Limited availability. May not be available in your area.</b></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 2000 and Internet 5000 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount<b>. Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. Actual customer speeds may vary based on a number of factors and are not guaranteed. For 5 GIG speed, single device wired speed maximum 4.7Gbps. For more information, go to <u>att.com/speed101</u>.</p><br><br><p>Offers may not be combined with certain other promotional offers on the same services and may be modified or discontinued at any time without notice. Other conditions apply to all offers.</p><br><br><p>&copy;2022 AT&amp;T Intellectual Property. AT&amp;T and the AT&amp;T logo are trademarks of AT&amp;T Intellectual Property.</p>",
                        "localizedValue": " <p>Geographic and service restrictions apply to AT&amp;T Internet services. Not all speeds available in all areas.</p><br><p><u></u></p><br><p><u>Internet plans (768K to 75M)</u></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet plans 768K-75M for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. After 12 mos., then-prevailing rate applies unless canceled before the end of 12 months. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount. <b>Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;Data Allowance:</b> $10 charge applies for each additional 50GB (up to $100/mo). Unlimited data allowance may also be purchased separately for an add&#8217;l $30/mo. For more info, go to <u>att.com/internet-usage</u>.</p><br><p><b></b></p><br><p><b>&#8224;&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. Actual customer speeds are not guaranteed and may vary based on several factors. For more information, go to <u>att.com/speed101</u>.</p><br><p><u></u></p><br><p><u>Internet 100</u></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 100 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. After 12 mos., then-prevailing rate applies unless canceled before the end of 12 months. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount<b>. Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><u></u></p><br><p><u>Internet 300, 500, &amp; 1000</u></p><br><p><b></b></p><br><p><b>Limited availability. May not be available in your area.</b></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 300, Internet 500, and Internet 1000 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount. <b>Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply<b>. Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. 1 GIG speeds available to new customers with the latest router (&#8220;BGW320&#8221;) and recommended setup. Actual customer speeds may vary based on a number of factors and are not guaranteed. For more information, go to <u>att.com/speed101</u>.</p><br><p><u></u></p><br><p><u>Internet 2000 &amp; 5000</u></p><br><p><b></b></p><br><p><b>Limited availability. May not be available in your area.</b></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 2000 and Internet 5000 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount<b>. Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. Actual customer speeds may vary based on a number of factors and are not guaranteed. For 5 GIG speed, single device wired speed maximum 4.7Gbps. For more information, go to <u>att.com/speed101</u>.</p><br><br><p>Offers may not be combined with certain other promotional offers on the same services and may be modified or discontinued at any time without notice. Other conditions apply to all offers.</p><br><br><p>&copy;2022 AT&amp;T Intellectual Property. AT&amp;T and the AT&amp;T logo are trademarks of AT&amp;T Intellectual Property.</p>",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "description",
                    "localizedName": "description",
                    "valueType": "String",
                    "value": [
                      {
                        "value": " <p>Geographic and service restrictions apply to AT&amp;T Internet services. Not all speeds available in all areas.</p><br><p><u></u></p><br><p><u>Internet plans (768K to 75M)</u></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet plans 768K-75M for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. After 12 mos., then-prevailing rate applies unless canceled before the end of 12 months. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount. <b>Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;Data Allowance:</b> $10 charge applies for each additional 50GB (up to $100/mo). Unlimited data allowance may also be purchased separately for an add&#8217;l $30/mo. For more info, go to <u>att.com/internet-usage</u>.</p><br><p><b></b></p><br><p><b>&#8224;&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. Actual customer speeds are not guaranteed and may vary based on several factors. For more information, go to <u>att.com/speed101</u>.</p><br><p><u></u></p><br><p><u>Internet 100</u></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 100 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. After 12 mos., then-prevailing rate applies unless canceled before the end of 12 months. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount<b>. Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><u></u></p><br><p><u>Internet 300, 500, &amp; 1000</u></p><br><p><b></b></p><br><p><b>Limited availability. May not be available in your area.</b></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 300, Internet 500, and Internet 1000 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount. <b>Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply<b>. Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. 1 GIG speeds available to new customers with the latest router (&#8220;BGW320&#8221;) and recommended setup. Actual customer speeds may vary based on a number of factors and are not guaranteed. For more information, go to <u>att.com/speed101</u>.</p><br><p><u></u></p><br><p><u>Internet 2000 &amp; 5000</u></p><br><p><b></b></p><br><p><b>Limited availability. May not be available in your area.</b></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 2000 and Internet 5000 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount<b>. Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. Actual customer speeds may vary based on a number of factors and are not guaranteed. For 5 GIG speed, single device wired speed maximum 4.7Gbps. For more information, go to <u>att.com/speed101</u>.</p><br><br><p>Offers may not be combined with certain other promotional offers on the same services and may be modified or discontinued at any time without notice. Other conditions apply to all offers.</p><br><br><p>&copy;2022 AT&amp;T Intellectual Property. AT&amp;T and the AT&amp;T logo are trademarks of AT&amp;T Intellectual Property.</p>",
                        "localizedValue": " <p>Geographic and service restrictions apply to AT&amp;T Internet services. Not all speeds available in all areas.</p><br><p><u></u></p><br><p><u>Internet plans (768K to 75M)</u></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet plans 768K-75M for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. After 12 mos., then-prevailing rate applies unless canceled before the end of 12 months. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount. <b>Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;Data Allowance:</b> $10 charge applies for each additional 50GB (up to $100/mo). Unlimited data allowance may also be purchased separately for an add&#8217;l $30/mo. For more info, go to <u>att.com/internet-usage</u>.</p><br><p><b></b></p><br><p><b>&#8224;&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. Actual customer speeds are not guaranteed and may vary based on several factors. For more information, go to <u>att.com/speed101</u>.</p><br><p><u></u></p><br><p><u>Internet 100</u></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 100 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. After 12 mos., then-prevailing rate applies unless canceled before the end of 12 months. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount<b>. Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><u></u></p><br><p><u>Internet 300, 500, &amp; 1000</u></p><br><p><b></b></p><br><p><b>Limited availability. May not be available in your area.</b></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 300, Internet 500, and Internet 1000 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount. <b>Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply<b>. Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. 1 GIG speeds available to new customers with the latest router (&#8220;BGW320&#8221;) and recommended setup. Actual customer speeds may vary based on a number of factors and are not guaranteed. For more information, go to <u>att.com/speed101</u>.</p><br><p><u></u></p><br><p><u>Internet 2000 &amp; 5000</u></p><br><p><b></b></p><br><p><b>Limited availability. May not be available in your area.</b></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 2000 and Internet 5000 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount<b>. Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. Actual customer speeds may vary based on a number of factors and are not guaranteed. For 5 GIG speed, single device wired speed maximum 4.7Gbps. For more information, go to <u>att.com/speed101</u>.</p><br><br><p>Offers may not be combined with certain other promotional offers on the same services and may be modified or discontinued at any time without notice. Other conditions apply to all offers.</p><br><br><p>&copy;2022 AT&amp;T Intellectual Property. AT&amp;T and the AT&amp;T logo are trademarks of AT&amp;T Intellectual Property.</p>",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "rank",
                    "localizedName": "rank",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "1",
                        "localizedValue": "1",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "fraoBenefitApplied",
                    "localizedName": "fraoBenefitApplied",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "false",
                        "localizedValue": "false",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "privateOfferApplied",
                    "localizedName": "privateOfferApplied",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "false",
                        "localizedValue": "false",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "gigaSpeed",
                    "localizedName": "gigaSpeed",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "true",
                        "localizedValue": "true",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "longDescription",
                    "localizedName": "longDescription",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "AT&T High Speed Internet 1000",
                        "localizedValue": "AT&T High Speed Internet 1000",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "pricePlanCode",
                    "localizedName": "pricePlanCode",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "88541733",
                        "localizedValue": "88541733",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "hsiaSwimlane",
                    "localizedName": "hsiaSwimlane",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "29",
                        "localizedValue": "29",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "shortDisplayName",
                    "localizedName": "shortDisplayName",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "AT&T FIBER — INTERNET 1000",
                        "localizedValue": "AT&T FIBER — INTERNET 1000",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "broadbandTier",
                    "localizedName": "broadbandTier",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "4",
                        "localizedValue": "4",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "omsProductCode",
                    "localizedName": "omsProductCode",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "Hsia1000g",
                        "localizedValue": "Hsia1000g",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "speedType",
                    "localizedName": "speedType",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "NA",
                        "localizedValue": "NA",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "hboMaxIncluded",
                    "localizedName": "hboMaxIncluded",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "false",
                        "localizedValue": "false",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "isEnrichedFiber",
                    "localizedName": "isEnrichedFiber",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "false",
                        "localizedValue": "false",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "isCurrentPlan",
                    "localizedName": "isCurrentPlan",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "false",
                        "localizedValue": "false",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "downloadSpeed",
                    "localizedName": "downloadSpeed",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "1000 Mbps",
                        "localizedValue": "1000 Mbps",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "uploadSpeed",
                    "localizedName": "uploadSpeed",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "3 Mbps",
                        "localizedValue": "3 Mbps",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "features",
                    "localizedName": "features",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "<strong>Average load times</strong> </br> <ul> <li><strong>YouTube, </strong>2MB, 0.02 sec.<li><strong>MP3, </strong>5MB, 0.04 sec.<li><strong>Video, </strong>4GB, 39 secs</ul>",
                        "localizedValue": "<strong>Average load times</strong> </br> <ul> <li><strong>YouTube, </strong>2MB, 0.02 sec.<li><strong>MP3, </strong>5MB, 0.04 sec.<li><strong>Video, </strong>4GB, 39 secs</ul>",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "Benefits",
                    "localizedName": "Benefits",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "<li>Unleash the full potential of your smart home</li><li>Seamlessly connect with others and share extra-large files in seconds</li><li>Super-fast 1 GIG upload and download speeds</li>",
                        "localizedValue": "<li>Unleash the full potential of your smart home</li><li>Seamlessly connect with others and share extra-large files in seconds</li><li>Super-fast 1 GIG upload and download speeds</li>",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "BBFootPrint",
                    "localizedName": "BBFootPrint",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "FiberKitOptional",
                        "localizedValue": "FiberKitOptional"
                      }
                    ]
                  },
                  {
                    "name": "unlimitedIPUsage",
                    "localizedName": "unlimitedIPUsage",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "true",
                        "localizedValue": "true",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "baseIpUsageItem_shortDisplayName",
                    "localizedName": "baseIpUsageItem_shortDisplayName",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "Includes unlimited internet data",
                        "localizedValue": "Includes unlimited internet data",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "overageBucket_ratePerBucket",
                    "localizedName": "overageBucket_ratePerBucket",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "10",
                        "localizedValue": "10",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "overageBucket_maxChargePerBillCycle",
                    "localizedName": "overageBucket_maxChargePerBillCycle",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "100",
                        "localizedValue": "100",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "overageBucket_bucketSize",
                    "localizedName": "overageBucket_bucketSize",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "50GB",
                        "localizedValue": "50GB",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "usageAllowance",
                    "localizedName": "usageAllowance",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "999999 GB",
                        "localizedValue": "999999 GB",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "usageType",
                    "localizedName": "usageType",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "base",
                        "localizedValue": "base",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "displayRanking",
                    "localizedName": "displayRanking",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "0",
                        "localizedValue": "0",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "displayRanking",
                    "localizedName": "displayRanking",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "0",
                        "localizedValue": "0",
                        "default": false
                      }
                    ]
                  },
                  {
                    "name": "isSelfInstallEligible",
                    "localizedName": "isSelfInstallEligible",
                    "valueType": "String",
                    "value": [
                      {
                        "value": "true",
                        "localizedValue": "true",
                        "default": false
                      }
                    ]
                  }
                ],
                "immediatePromotion": [
                  {
                    "id": "62900028",
                    "status": "add",
                    "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",
                      "promotionCharacteristics": [
                        {
                          "name": "duration",
                          "value": "999"
                        },
                        {
                          "name": "isAccessPromo",
                          "value": "false"
                        },
                        {
                          "name": "isSmbAioPromo",
                          "value": "false"
                        },
                        {
                          "name": "useForPriceCalculation",
                          "value": "true"
                        },
                        {
                          "name": "shortDisplayName",
                          "value": "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."
                        },
                        {
                          "name": "displayRanking",
                          "value": "7"
                        },
                        {
                          "name": "promotionCode",
                          "value": "IS2281"
                        },
                        {
                          "name": "tenderTypes",
                          "value": "ACH"
                        },
                        {
                          "name": "isDefaultTenderTypePromo",
                          "value": "true"
                        },
                        {
                          "name": "promotionType",
                          "value": "flatamountoff"
                        },
                        {
                          "name": "saleType",
                          "value": "supplemental"
                        },
                        {
                          "name": "promotionCycle",
                          "value": "monthly"
                        },
                        {
                          "name": "promotionRolledUpDisplayInd",
                          "value": "Yes"
                        },
                        {
                          "name": "freePromoInd",
                          "value": "No"
                        }
                      ]
                    }
                  }
                ],
                "productOfferingTotalPrice": [
                  {
                    "priceType": "RC",
                    "recurringChargePeriod": "month",
                    "recurringChargePeriodLength": 1,
                    "price": {
                      "dutyFreeAmount": {
                        "unit": "USD",
                        "value": 90
                      }
                    },
                    "finalPrice": {
                      "dutyFreeAmount": {
                        "unit": "USD",
                        "value": 80
                      }
                    },
                    "priceAlteration": [
                      {
                        "name": "Discount",
                        "priceType": "RC",
                        "chargeType": "credit",
                        "price": {
                          "dutyFreeAmount": {
                            "unit": "USD",
                            "value": 10
                          }
                        }
                      }
                    ],
                    "taxIncluded": "Excluded"
                  },
                  {
                    "priceType": "OTR",
                    "price": {
                      "dutyFreeAmount": {
                        "unit": "USD",
                        "value": 150
                      }
                    },
                    "finalPrice": {
                      "dutyFreeAmount": {
                        "unit": "USD",
                        "value": 150
                      }
                    },
                    "priceAlteration": [],
                    "taxIncluded": "Excluded"
                  },
                  {
                    "name": "Easy self-setup kit Price",
                    "priceType": "OC",
                    "role": "Price",
                    "price": {
                      "dutyFreeAmount": {
                        "unit": "USD",
                        "value": 0
                      }
                    },
                    "finalPrice": {
                      "dutyFreeAmount": {
                        "unit": "USD",
                        "value": 0
                      }
                    },
                    "priceAlteration": [],
                    "taxIncluded": "Excluded"
                  }
                ],
                "bundledProductOfferingGroupOption": [
                  {
                    "groupOptionId": "ibbndl_install_grp_prod8960401",
                    "bundledProductOffering": [
                      {
                        "id": "prod8960401",
                        "name": "Easy self-setup kit",
                        "description": "Internet Installation Fee",
                        "productOfferingType": "BB_Installation",
                        "productOfferingTypeGroup": "BBInstallation",
                        "bundledProductOfferingOption": [
                          {
                            "productOfferingPrice": [
                              {
                                "name": "Easy self-setup kit Price",
                                "priceType": "OC",
                                "role": "Price",
                                "price": {
                                  "dutyFreeAmount": {
                                    "unit": "USD",
                                    "value": 0
                                  }
                                },
                                "finalPrice": {
                                  "dutyFreeAmount": {
                                    "unit": "USD",
                                    "value": 0
                                  }
                                },
                                "priceAlteration": [],
                                "taxIncluded": "Excluded"
                              }
                            ]
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            ]
          }
        }
      }
    }
  }
}