{
  "openapi": "3.0.1",
  "info": {
    "title": "Unified Shopping Cart and Purchase Services",
    "description": "The Unified Shopping Cart, coupled with purchase services and fulfillment options, is a streamlined solution for product ordering, integrating all required order parameters. This application provides APIs which offer a robust suite of operations that consistently interact with CRM/Order Negotiation systems. A product order (Unified Shopping Cart) is created based on a product offer that is defined in a catalog.\n\nTMF API Reference : TMF 622 - Product Ordering Management\n\n <b> Upstream services:</b> \n\n `myATT, native app, ACC(AT&T customer connect) ` \n\n [Unified Shopping Cart Services website](https://wiki.web.att.com/display/DRC/Shopping+Cart+Management+APIs)\n\n [Send an email to Omni Commerce Cart Services Team](mailto:DL-OmnichannelCart@att.com) \n\n [Send an email to Omni Commerce Purchase Services Team](mailto:dl-idpcheckout@list.att.com)\n\n [Sequence Diagram](https://wiki.web.att.com/display/DRC/Shopping+Cart+Management+APIs)",
    "version": "v1"
  },
  "tags": [
    {
      "name": "Cart Operations",
      "description": "APIs that aid in cart related operations."
    }
  ],
  "paths": {
    "/msapi/sales/shopping-cart-api/v1/carts/initialize": {
      "post": {
        "tags": [
          "Cart Operations"
        ],
        "summary": "Inititalize cart and create Shopping Cart id",
        "description": "This operation initializes the shopping cart. It is responsible for creating a new cart and returning a valid cart ID, which is essential for all subsequent commerce operations. If a cart already exists for the user, this API will not create a new one; instead, it will return the existing cart ID.",
        "operationId": "initializeToCart",
        "parameters": [
          {
            "$ref": "#/components/parameters/idpctxuuid"
          },
          {
            "$ref": "#/components/parameters/mockscenario"
          },
          {
            "$ref": "#/components/parameters/idpctxLinkedWirelessAccNums"
          },
          {
            "$ref": "#/components/parameters/idpctxAcctInfoCustType"
          }
        ],
        "requestBody": {
          "description": "Initialize Shopping Cart and retrieve cart id.",
          "content": {
            "application/json;charset=utf-8": {
              "schema": {
                "$ref": "#/components/schemas/InitializeCart_RequestBody"
              },
              "examples": {
                "ATTR Channel Sample Request": {
                  "value": {
                    "cartType": "ATTCart",
                    "channel": {
                      "id": "ATTR",
                      "name": "ATTR",
                      "extensions": [
                        {
                          "name": "StoreId",
                          "value": "12334"
                        },
                        {
                          "name": "AgentId",
                          "value": "sv1323"
                        }
                      ]
                    },
                    "relatedParty": [
                      {
                        "id": "00fa7310-38c9-11ec-8d3d-0242ac130003",
                        "role": "Profile",
                        "extensions": [
                          {
                            "name": "zipCode",
                            "value": "98021"
                          },
                          {
                            "name": "user-type",
                            "value": "anonymous"
                          }
                        ]
                      },
                      {
                        "role": "Customer",
                        "extensions": [
                          {
                            "name": "customerType",
                            "value": "Consumer"
                          },
                          {
                            "name": "customerSubType",
                            "value": "Individual"
                          },
                          {
                            "name": "accessEligible",
                            "value": "true"
                          }
                        ]
                      },
                      {
                        "id": "00fa7310-38c9-11ec-8d3d-0242ac130003",
                        "role": "Individual"
                      },
                      {
                        "@referredType": "fan",
                        "id": "03008386 ",
                        "role": "partner"
                      }
                    ]
                  }
                },
                "SMB Provide flow Sample Request": {
                  "value": {
                    "cartType": "DEFAULT",
                    "channel": {
                      "id": "SelfService",
                      "name": "SelfService"
                    },
                    "relatedParty": [
                      {
                        "role": "customer",
                        "extensions": [
                          {
                            "name": "CustomerType",
                            "value": "Business"
                          },
                          {
                            "name": "CustomerSubType",
                            "value": "Consumer Small Office"
                          }
                        ]
                      }
                    ]
                  }
                },
                "Standalone TLG wireless - AAL initialize Request": {
                  "value": {
                    "cartType": "DEFAULT",
                    "channel": {
                      "id": "SelfService",
                      "name": "SelfService"
                    },
                    "relatedParty": [
                      {
                        "id": "534441795158",
                        "role": "owner",
                        "@referredType": "TLGAccount"
                      },
                      {
                        "role": "Customer",
                        "id": "534441795158",
                        "@referredType": "TLGAccount",
                        "extensions": [
                          {
                            "name": "customerType",
                            "value": "Consumer"
                          },
                          {
                            "name": "customerSubType",
                            "value": "Individual"
                          }
                        ]
                      },
                      {
                        "id": "uuid_6001",
                        "role": "Profile",
                        "extensions": [
                          {
                            "name": "user-type",
                            "value": "registered"
                          }
                        ]
                      }
                    ]
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Success",
            "headers": {},
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/ProductOrder"
                },
                "examples": {
                  "CartResponse": {
                    "value": {
                      "id": "7aaeaaa0-e38b-11ed-87c3-a77f9285ffc6",
                      "orderDate": "2023-04-25T17:06:11.658Z",
                      "lastUpdate": "2023-04-25T17:06:11.658Z",
                      "channel": [
                        {
                          "id": "ATTR",
                          "name": "ATTR",
                          "role": "agent",
                          "extensions": [
                            {
                              "name": "storeId",
                              "value": "12334"
                            },
                            {
                              "name": "agentId",
                              "value": "sv12345"
                            },
                            {
                              "name": "Application",
                              "value": "myATTNative"
                            }
                          ]
                        }
                      ],
                      "relatedParty": [
                        {
                          "id": "00fa7319-38c9-11ec-8d3d-0242at2",
                          "role": "Profile",
                          "extensions": [
                            {
                              "name": "user-type",
                              "value": "anonymous"
                            }
                          ]
                        },
                        {
                          "role": "Customer",
                          "extensions": [
                            {
                              "name": "customerType",
                              "value": "Consumer"
                            },
                            {
                              "name": "customerSubType",
                              "value": "Individual"
                            },
                            {
                              "name": "accessEligible",
                              "value": "true"
                            }
                          ]
                        }
                      ],
                      "state": "inProgress",
                      "@type": "DEFAULT"
                    }
                  },
                  "SMBCartResponse": {
                    "value": {
                      "id": "0fad9560-5f3e-11ef-81d7-235ac68d0259",
                      "orderDate": "2024-08-20T21:49:22.742Z",
                      "lastUpdate": "2024-08-20T21:49:22.742Z",
                      "orderExtensions": [
                        {
                          "name": "idpctx-session-id",
                          "value": "ce1b9825-4e44-4028-a110-0a7efe0996f3"
                        }
                      ],
                      "channel": [
                        {
                          "id": "SelfService",
                          "name": "SelfService",
                          "extensions": [
                            {
                              "name": "Application",
                              "value": "websales"
                            }
                          ]
                        }
                      ],
                      "relatedParty": [
                        {
                          "id": "66c50f62-2240-a524-743e-070a36bde110",
                          "role": "profile"
                        },
                        {
                          "role": "customer",
                          "extensions": [
                            {
                              "name": "CustomerType",
                              "value": "Business"
                            },
                            {
                              "name": "CustomerSubType",
                              "value": "Consumer Small Office"
                            }
                          ]
                        }
                      ],
                      "state": "inProgress",
                      "@type": "DEFAULT",
                      "validation": {
                        "readyToCheckout": false
                      }
                    }
                  },
                  "Standalone TLG wireless - AAL initialize Response": {
                    "value": {
                      "id": "3358b180-58de-11f0-b8d7-6b6fdc85a764",
                      "category": "",
                      "orderDate": "2025-07-04T13:53:01.592Z",
                      "lastUpdate": "2025-07-04T13:53:01.595Z",
                      "orderExtensions": [
                        {
                          "name": "idpctx-session-id",
                          "value": "sessionid_6001"
                        }
                      ],
                      "channel": [
                        {
                          "id": "SelfService",
                          "name": "SelfService",
                          "extensions": [
                            {
                              "name": "Application",
                              "value": "websales"
                            }
                          ]
                        }
                      ],
                      "relatedParty": [
                        {
                          "id": "534441795158",
                          "role": "owner",
                          "@referredType": "TLGAccount"
                        },
                        {
                          "id": "534441795158",
                          "role": "customer",
                          "extensions": [
                            {
                              "name": "customerType",
                              "value": "Consumer"
                            },
                            {
                              "name": "customerSubType",
                              "value": "Individual"
                            }
                          ],
                          "@referredType": "TLGAccount"
                        },
                        {
                          "id": "uuid_6001",
                          "role": "Profile",
                          "extensions": [
                            {
                              "name": "user-type",
                              "value": "registered"
                            }
                          ]
                        }
                      ],
                      "state": "inProgress",
                      "@type": "DEFAULT",
                      "validation": {
                        "readyToCheckout": false
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                },
                "examples": {
                  "UuidBadRequestError": {
                    "value": {
                      "code": "SC-V40000",
                      "reason": "MISSING_OR_INVALID_REQUIRED_FIELD",
                      "message": "Required request header 'idpctx-uuid' for method parameter type String is not present"
                    }
                  },
                  "SMB LineType Error": {
                    "value": {
                      "code": "SC-V40004",
                      "reason": "INVALID-CART-REQUEST",
                      "message": "Invalid Cart Request. LineType is required for Voip item",
                      "status": "400"
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "application/json;charset=utf-8": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                },
                "examples": {
                  "CarInternalError": {
                    "value": {
                      "code": "SC-B50000",
                      "reason": "CART-INTERNAL-ERROR",
                      "message": "Internal exception occurred while processing the request",
                      "status": "500"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "examples": {
      "Mobile_Accessory_Response": {
        "value": {
          "id": "28e79b00-1566-11f0-82cd-47533949fb73",
          "category": "Mobile_Accessory",
          "orderDate": "2025-04-09T17:14:56.560Z",
          "lastUpdate": "2025-04-09T17:15:03.880Z",
          "orderPriceDate": "2025-04-09T17:15:03.880Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "54010900-65c3-495a-k265-1j1854585d98"
            }
          ],
          "channel": [
            {
              "id": "SelfService",
              "name": "SelfService",
              "extensions": [
                {
                  "name": "Application",
                  "value": "websales"
                }
              ]
            }
          ],
          "orderTotalPrice": [
            {
              "priceType": "immediate",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 199.9
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 216.4
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 16.5
                },
                "appliedTax": [
                  {
                    "taxDefinition": {
                      "name": "Sales Tax",
                      "taxRate": 0.0825,
                      "isExemption": false,
                      "exemptionType": "none",
                      "taxJurisdiction": {
                        "name": "Sales Tax",
                        "level": "Sales Tax",
                        "id": "DUMMY ID"
                      }
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 16.5
                    },
                    "taxableAmount": {
                      "unit": "USD",
                      "value": 94.71
                    },
                    "characteristic": [
                      {
                        "name": "taxableInd",
                        "value": "X"
                      },
                      {
                        "name": "taxAuditInfo"
                      },
                      {
                        "name": "printGroup"
                      },
                      {
                        "name": "taxOnTaxAmount"
                      },
                      {
                        "name": "SKUSpecificInd",
                        "value": "false"
                      },
                      {
                        "name": "taxGeneralLedgerAccount"
                      },
                      {
                        "name": "displayOrder",
                        "value": "0"
                      },
                      {
                        "name": "percentTaxable",
                        "value": "X"
                      },
                      {
                        "name": "taxCode",
                        "value": "SALESTAX"
                      },
                      {
                        "name": "taxDate",
                        "value": "2025-04-09T01:01:01"
                      },
                      {
                        "name": "impositionType"
                      },
                      {
                        "name": "geoCodeInfo"
                      },
                      {
                        "name": "taxLineID",
                        "value": "1"
                      },
                      {
                        "name": "imposition"
                      },
                      {
                        "name": "taxCategoryCode",
                        "value": "SALESTAX"
                      },
                      {
                        "name": "revenueBase"
                      },
                      {
                        "name": "memoGL",
                        "value": "SALESTAX"
                      },
                      {
                        "name": "shipToTaxAreaID",
                        "value": "440851940"
                      },
                      {
                        "name": "shipFromTaxAreaID",
                        "value": "390950000"
                      },
                      {
                        "name": "taxableCost",
                        "value": "94.71"
                      },
                      {
                        "name": "orderTaxAreaID",
                        "value": "390950000"
                      },
                      {
                        "name": "taxableMSRP",
                        "value": "199.90"
                      }
                    ],
                    "extensions": {
                      "Tax": [
                        {
                          "key": "printGroup",
                          "value": "TAX"
                        }
                      ]
                    }
                  }
                ]
              },
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 199.9
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 216.4
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 16.5
                }
              },
              "immediatePayOption": {
                "payImmediately": true
              }
            }
          ],
          "productOrderItem": [
            {
              "id": "49df57ab-db85-4817-8df1-7117ba4b60ea",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "OC",
                  "priceCategory": "equipmentOC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99.95
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 108.2
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 8.25
                    },
                    "appliedTax": [
                      {
                        "taxDefinition": {
                          "name": "Sales Tax",
                          "taxRate": 0.0825,
                          "isExemption": false,
                          "exemptionType": "none",
                          "taxJurisdiction": {
                            "name": "Sales Tax",
                            "level": "Sales Tax",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 8.25
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 47
                        },
                        "characteristic": [
                          {
                            "name": "taxableInd",
                            "value": "X"
                          },
                          {
                            "name": "taxAuditInfo"
                          },
                          {
                            "name": "printGroup"
                          },
                          {
                            "name": "taxOnTaxAmount"
                          },
                          {
                            "name": "SKUSpecificInd",
                            "value": "false"
                          },
                          {
                            "name": "taxGeneralLedgerAccount"
                          },
                          {
                            "name": "displayOrder",
                            "value": "0"
                          },
                          {
                            "name": "percentTaxable",
                            "value": "X"
                          },
                          {
                            "name": "taxCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "taxDate",
                            "value": "2025-04-09T01:01:01"
                          },
                          {
                            "name": "impositionType"
                          },
                          {
                            "name": "geoCodeInfo"
                          },
                          {
                            "name": "taxLineID",
                            "value": "1"
                          },
                          {
                            "name": "imposition"
                          },
                          {
                            "name": "taxCategoryCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "revenueBase"
                          },
                          {
                            "name": "memoGL",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "shipToTaxAreaID",
                            "value": "440851940"
                          },
                          {
                            "name": "shipFromTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableCost",
                            "value": "47.0"
                          },
                          {
                            "name": "orderTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableMSRP",
                            "value": "99.95"
                          }
                        ],
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99.95
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 108.2
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 8.25
                    },
                    "appliedTax": [
                      {
                        "taxDefinition": {
                          "name": "Sales Tax",
                          "taxRate": 0.0825,
                          "isExemption": false,
                          "exemptionType": "none",
                          "taxJurisdiction": {
                            "name": "Sales Tax",
                            "level": "Sales Tax",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 8.25
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 47
                        },
                        "characteristic": [
                          {
                            "name": "taxableInd",
                            "value": "X"
                          },
                          {
                            "name": "taxAuditInfo"
                          },
                          {
                            "name": "printGroup"
                          },
                          {
                            "name": "taxOnTaxAmount"
                          },
                          {
                            "name": "SKUSpecificInd",
                            "value": "false"
                          },
                          {
                            "name": "taxGeneralLedgerAccount"
                          },
                          {
                            "name": "displayOrder",
                            "value": "0"
                          },
                          {
                            "name": "percentTaxable",
                            "value": "X"
                          },
                          {
                            "name": "taxCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "taxDate",
                            "value": "2025-04-09T01:01:01"
                          },
                          {
                            "name": "impositionType"
                          },
                          {
                            "name": "geoCodeInfo"
                          },
                          {
                            "name": "taxLineID",
                            "value": "1"
                          },
                          {
                            "name": "imposition"
                          },
                          {
                            "name": "taxCategoryCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "revenueBase"
                          },
                          {
                            "name": "memoGL",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "shipToTaxAreaID",
                            "value": "440851940"
                          },
                          {
                            "name": "shipFromTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableCost",
                            "value": "47.0"
                          },
                          {
                            "name": "orderTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableMSRP",
                            "value": "99.95"
                          }
                        ],
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "immediatePayOption": {
                    "payImmediately": true
                  },
                  "taxIncluded": "Included",
                  "role": "DueUponFulfillment"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99.95
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 108.2
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 8.25
                    },
                    "appliedTax": [
                      {
                        "taxDefinition": {
                          "name": "Sales Tax",
                          "taxRate": 0.0825,
                          "isExemption": false,
                          "exemptionType": "none",
                          "taxJurisdiction": {
                            "name": "Sales Tax",
                            "level": "Sales Tax",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 8.25
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 47
                        },
                        "characteristic": [
                          {
                            "name": "taxableInd",
                            "value": "X"
                          },
                          {
                            "name": "taxAuditInfo"
                          },
                          {
                            "name": "printGroup"
                          },
                          {
                            "name": "taxOnTaxAmount"
                          },
                          {
                            "name": "SKUSpecificInd",
                            "value": "false"
                          },
                          {
                            "name": "taxGeneralLedgerAccount"
                          },
                          {
                            "name": "displayOrder",
                            "value": "0"
                          },
                          {
                            "name": "percentTaxable",
                            "value": "X"
                          },
                          {
                            "name": "taxCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "taxDate",
                            "value": "2025-04-09T01:01:01"
                          },
                          {
                            "name": "impositionType"
                          },
                          {
                            "name": "geoCodeInfo"
                          },
                          {
                            "name": "taxLineID",
                            "value": "1"
                          },
                          {
                            "name": "imposition"
                          },
                          {
                            "name": "taxCategoryCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "revenueBase"
                          },
                          {
                            "name": "memoGL",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "shipToTaxAreaID",
                            "value": "440851940"
                          },
                          {
                            "name": "shipFromTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableCost",
                            "value": "47.0"
                          },
                          {
                            "name": "orderTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableMSRP",
                            "value": "99.95"
                          }
                        ],
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99.95
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 108.2
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 8.25
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": true
                  }
                }
              ],
              "product": {
                "productCharacteristic": [
                  {
                    "name": "billingCode",
                    "value": "4954R"
                  },
                  {
                    "name": "priceType",
                    "value": "OC"
                  },
                  {
                    "name": "productKey",
                    "value": "prod10900234"
                  },
                  {
                    "name": "sku",
                    "value": "sku2840232"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "Indirect_Delivery_Shipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "nextDayDeliveryShipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "Pick_In_Store"
                  }
                ]
              },
              "productOffering": {
                "id": "Mobile_Accessory_prod10900234_sku2840232",
                "name": "JBL Endurance Peak 3 True Wireless - Black",
                "productOfferingType": "Mobile_Accessory",
                "productOfferingGroup": "CT_Mobility"
              },
              "creationDate": "2025-04-09T17:15:02.209Z"
            }
          ],
          "relatedParty": [
            {
              "id": "54011900-65c4-494c-l935-1j9965596d98",
              "role": "Profile",
              "extensions": [
                {
                  "name": "user-type",
                  "value": "anonymous"
                },
                {
                  "name": "zipCode",
                  "value": "75072"
                }
              ]
            }
          ],
          "state": "inProgress",
          "@type": "DEFAULT",
          "validation": {
            "readyToCheckout": true
          }
        }
      },
      "Standalone_TLG_wireless_AAL_Device_Sim_TurnIn_Response": {
        "value": {
          "@type": "DEFAULT",
          "category": "Mobile_Offer",
          "channel": [
            {
              "extensions": [
                {
                  "name": "agentId",
                  "value": "vt4171"
                },
                {
                  "name": "storeId",
                  "value": "0237"
                },
                {
                  "name": "agentChannel",
                  "value": "MSS"
                },
                {
                  "name": "agentSubChannel",
                  "value": "ICBC"
                },
                {
                  "name": "retailRepDevice",
                  "value": "Tablet"
                },
                {
                  "name": "retailRepDeviceUniqueId",
                  "value": "XXX-XX-XXXX"
                },
                {
                  "name": "Application",
                  "value": "SF-SALES"
                }
              ],
              "id": "ATTR",
              "name": "ATTR",
              "role": "Agent"
            }
          ],
          "id": "c36d3130-843d-11f0-97ba-872c9f9a529b",
          "lastUpdate": "2025-08-28T18:35:25.507Z",
          "orderDate": "2025-08-28T18:35:25.507Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "cah7carryschk"
            },
            {
              "name": "commonServiceSessionId",
              "value": "SESSIO0030N3ID_Auth_10"
            }
          ],
          "productOrderItem": [
            {
              "action": "add",
              "billingAccount": {
                "characteristic": [
                  {
                    "name": "System_of_Record",
                    "value": "TLG"
                  }
                ],
                "id": "534029026868",
                "ratingType": "postpaid"
              },
              "creationDate": "2025-08-28T18:35:31.993Z",
              "id": "99b55099-37fa-4f37-85a7-f15ff2f20413",
              "product": {
                "place": [
                  {
                    "id": "D118",
                    "role": "store"
                  }
                ],
                "primaryProductId": "9198028687",
                "productCharacteristic": [
                  {
                    "name": "IMEI",
                    "value": "xxxxxxxxxxxxxxx"
                  },
                  {
                    "name": "maxSKUQtyPerOrder",
                    "value": "5"
                  }
                ],
                "productRelationship": [
                  {
                    "product": {
                      "primaryProductId": "9198028687"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "legacy-wireless-dummy-offer-id",
                "productOfferingGroup": "CT_Mobility",
                "productOfferingType": "Mobile_Offer"
              },
              "productOrderItem": [
                {
                  "action": "swap;add",
                  "billingAccount": {
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "id": "534029026868",
                    "ratingType": "postpaid"
                  },
                  "characteristic": [
                    {
                      "name": "contractType",
                      "value": "lease"
                    },
                    {
                      "name": "commitmentTermId",
                      "value": "10300001"
                    },
                    {
                      "name": "mobileNumber",
                      "value": "9198028687"
                    },
                    {
                      "name": "contractLength",
                      "value": "36"
                    },
                    {
                      "name": "selectedUpgradeOption",
                      "value": "REGULAR"
                    },
                    {
                      "name": "IMEI",
                      "value": "xxxxxxxxxxxxxxx"
                    },
                    {
                      "name": "commitmentTerm",
                      "value": "NE36MNUP"
                    }
                  ],
                  "creationDate": "2025-08-28T18:35:31.993Z",
                  "fulfillmentMethod": "STORE",
                  "id": "2789fe14-274d-4217-bda1-c6732447c52c",
                  "product": {
                    "place": [
                      {
                        "id": "D118",
                        "role": "store"
                      }
                    ],
                    "primaryProductId": "9198028687",
                    "productCharacteristic": [
                      {
                        "name": "IMEI",
                        "value": "xxxxxxxxxxxxxxx"
                      },
                      {
                        "name": "maxSKUQtyPerOrder",
                        "value": "5"
                      }
                    ],
                    "productRelationship": [
                      {
                        "product": {
                          "primaryProductId": "9198028687"
                        }
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "Mobile_Device_prod32812_sku32812v6",
                    "productOfferingType": "Mobile_Device"
                  },
                  "productOfferingGroupOption": {
                    "groupOptionId": "0e8dccb2-61db-11ee-bb2a-956ccdf31828"
                  },
                  "quantity": 1
                },
                {
                  "action": "add",
                  "billingAccount": {
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "id": "534029026868",
                    "ratingType": "postpaid"
                  },
                  "creationDate": "2025-08-28T18:35:31.993Z",
                  "id": "853e434c-9481-4c24-9918-69501a0a9be9",
                  "product": {
                    "productCharacteristic": [
                      {
                        "name": "exchangeType",
                        "value": "NUG"
                      },
                      {
                        "name": "imei",
                        "value": "XXX"
                      },
                      {
                        "name": "make",
                        "value": "Apple"
                      },
                      {
                        "name": "model",
                        "value": "iPhone 15 Pro Max"
                      },
                      {
                        "name": "productImageURL",
                        "value": "https://s3.amazonaws.com/erp-prod/ORAPRD2/12420179-2440094-5145330.jpg"
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "Mobile_TradeIn_Device_1000IPH16PRO2024CPCFRN_45502",
                    "productOfferingType": "Mobile_TradeIn_Device"
                  },
                  "quantity": 1
                },
                {
                  "action": "add",
                  "billingAccount": {
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "id": "534029026868",
                    "ratingType": "postpaid"
                  },
                  "characteristic": [
                    {
                      "name": "EID",
                      "value": "89049032007208888900169776587533"
                    },
                    {
                      "name": "SIM_Type",
                      "value": "eSIM"
                    }
                  ],
                  "creationDate": "2025-08-28T18:35:31.993Z",
                  "id": "3a47b77c-ac35-4c4b-ac28-873bd0a52736",
                  "product": {
                    "place": [
                      {
                        "id": "D118",
                        "role": "store"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "EID",
                        "value": "89049032007208888900169776587533"
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "Mobile_Sim_27100010_27100010-sku9350228",
                    "productOfferingType": "SIM"
                  },
                  "quantity": 1
                }
              ],
              "quantity": 1
            }
          ],
          "relatedParty": [
            {
              "@referredType": "TLGAccount",
              "id": "534029026868",
              "role": "owner"
            },
            {
              "@referredType": "TLGAccount",
              "extensions": [
                {
                  "name": "customerType",
                  "value": "Consumer"
                },
                {
                  "name": "customerSubType",
                  "value": "Individual"
                }
              ],
              "id": "534029026868",
              "role": "customer"
            },
            {
              "extensions": [
                {
                  "name": "user-type",
                  "value": "registered"
                }
              ],
              "id": "UUID-cd40-4b49-bafc",
              "role": "Profile"
            }
          ],
          "state": "inProgress",
          "validation": {
            "readyToCheckout": false
          }
        }
      },
      "Standalone_TLG_wireless_AAL_Device_Sim_TradeIn_Response": {
        "value": {
          "id": "b74b3fe0-6152-11f0-8d39-97567347e045",
          "category": "Mobile_Offer",
          "orderDate": "2025-07-15T08:07:13.886Z",
          "lastUpdate": "2025-07-15T08:07:20.610Z",
          "orderPriceDate": "2025-07-15T08:07:20.609Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "sessionid_6007"
            }
          ],
          "channel": [
            {
              "id": "SelfService",
              "name": "SelfService",
              "extensions": [
                {
                  "name": "Application",
                  "value": "websales"
                }
              ]
            }
          ],
          "orderTotalPrice": [
            {
              "priceType": "immediate",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 132
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 132
                },
                "appliedTax": [
                  {
                    "taxDefinition": {
                      "name": "Sales Tax",
                      "taxRate": 0.0825,
                      "isExemption": false,
                      "exemptionType": "none",
                      "taxJurisdiction": {
                        "name": "Sales Tax",
                        "level": "Sales Tax",
                        "id": "DUMMY ID"
                      }
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 132
                    },
                    "taxableAmount": {
                      "unit": "USD",
                      "value": 1599
                    },
                    "characteristic": [
                      {
                        "name": "taxableInd",
                        "value": "X"
                      },
                      {
                        "name": "taxAuditInfo"
                      },
                      {
                        "name": "printGroup"
                      },
                      {
                        "name": "taxOnTaxAmount"
                      },
                      {
                        "name": "SKUSpecificInd",
                        "value": "false"
                      },
                      {
                        "name": "taxGeneralLedgerAccount"
                      },
                      {
                        "name": "displayOrder",
                        "value": "0"
                      },
                      {
                        "name": "percentTaxable",
                        "value": "X"
                      },
                      {
                        "name": "taxCode",
                        "value": "SALESTAX"
                      },
                      {
                        "name": "taxDate",
                        "value": "2025-07-15T12:00:00"
                      },
                      {
                        "name": "impositionType"
                      },
                      {
                        "name": "geoCodeInfo"
                      },
                      {
                        "name": "taxLineID",
                        "value": "1"
                      },
                      {
                        "name": "imposition"
                      },
                      {
                        "name": "taxCategoryCode",
                        "value": "SALESTAX"
                      },
                      {
                        "name": "revenueBase"
                      },
                      {
                        "name": "memoGL",
                        "value": "SALESTAX"
                      },
                      {
                        "name": "orderTaxAreaID",
                        "value": "390950000"
                      },
                      {
                        "name": "taxableMSRP",
                        "value": "1599.99"
                      },
                      {
                        "name": "shipToTaxAreaID",
                        "value": "440857820"
                      },
                      {
                        "name": "shipFromTaxAreaID",
                        "value": "431570560"
                      },
                      {
                        "name": "taxableCost",
                        "value": "1599.0"
                      }
                    ],
                    "extensions": {
                      "Tax": [
                        {
                          "key": "printGroup",
                          "value": "TAX"
                        }
                      ]
                    }
                  }
                ]
              },
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 132
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 132
                }
              },
              "immediatePayOption": {
                "payImmediately": true
              }
            },
            {
              "priceType": "RC",
              "recurringChargePeriod": "month",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 44.45
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 44.45
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "priceAlteration": [
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 5.56
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 5.56
                    }
                  },
                  "alterationType": "promotion",
                  "immediatePromotionId": "PROMO_ITEM_01",
                  "chargeType": "Credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 27.78
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 27.78
                    }
                  },
                  "alterationType": "promotion",
                  "immediatePromotionId": "PROMO_ITEM_02"
                }
              ],
              "recurringChargePeriodLength": 36,
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 11.12
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 11.12
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              }
            },
            {
              "priceType": "OC",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              }
            }
          ],
          "productOrderItem": [
            {
              "id": "9005b5cc-8eae-4293-903c-9bd77fc25f77",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "id": "177084428124",
                "characteristic": [
                  {
                    "name": "System_of_Record",
                    "value": "TLG"
                  }
                ],
                "ratingType": "postpaid"
              },
              "itemPrice": [
                {
                  "name": "Activation Fee",
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  },
                  "taxIncluded": "Included",
                  "role": "DueAtFirstBill"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 132
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 132
                    },
                    "appliedTax": [
                      {
                        "taxDefinition": {
                          "name": "Sales Tax",
                          "taxRate": 0.0825,
                          "isExemption": false,
                          "exemptionType": "none",
                          "taxJurisdiction": {
                            "name": "Sales Tax",
                            "level": "Sales Tax",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 1599
                        },
                        "characteristic": [
                          {
                            "name": "taxableInd",
                            "value": "X"
                          },
                          {
                            "name": "taxAuditInfo"
                          },
                          {
                            "name": "printGroup"
                          },
                          {
                            "name": "taxOnTaxAmount"
                          },
                          {
                            "name": "SKUSpecificInd",
                            "value": "false"
                          },
                          {
                            "name": "taxGeneralLedgerAccount"
                          },
                          {
                            "name": "displayOrder",
                            "value": "0"
                          },
                          {
                            "name": "percentTaxable",
                            "value": "X"
                          },
                          {
                            "name": "taxCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "taxDate",
                            "value": "2025-07-15T12:00:00"
                          },
                          {
                            "name": "impositionType"
                          },
                          {
                            "name": "geoCodeInfo"
                          },
                          {
                            "name": "taxLineID",
                            "value": "1"
                          },
                          {
                            "name": "imposition"
                          },
                          {
                            "name": "taxCategoryCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "revenueBase"
                          },
                          {
                            "name": "memoGL",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "orderTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableMSRP",
                            "value": "1599.99"
                          },
                          {
                            "name": "shipToTaxAreaID",
                            "value": "440857820"
                          },
                          {
                            "name": "shipFromTaxAreaID",
                            "value": "431570560"
                          },
                          {
                            "name": "taxableCost",
                            "value": "1599.0"
                          }
                        ],
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 132
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 132
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": true
                  }
                },
                {
                  "priceType": "RC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 44.45
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 44.45
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 5.56
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 5.56
                        }
                      },
                      "alterationType": "promotion",
                      "immediatePromotionId": "PROMO_ITEM_01",
                      "chargeType": "Credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 27.78
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 27.78
                        }
                      },
                      "alterationType": "promotion",
                      "immediatePromotionId": "PROMO_ITEM_02"
                    }
                  ],
                  "recurringChargePeriodLength": 36,
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 11.12
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 11.12
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  }
                },
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  }
                }
              ],
              "product": {
                "productCharacteristic": [
                  {
                    "name": "billingCode",
                    "value": "6638E"
                  },
                  {
                    "name": "deviceCategory",
                    "value": "smartphone"
                  },
                  {
                    "name": "priceType",
                    "value": "OC"
                  },
                  {
                    "name": "fulfillmentWaiver",
                    "value": "overnight"
                  },
                  {
                    "name": "productKey",
                    "value": "prod32812"
                  },
                  {
                    "name": "sku",
                    "value": "sku32812v13"
                  },
                  {
                    "name": "maxSKUQtyPerOrder",
                    "value": "5"
                  },
                  {
                    "name": "defaultFreeOvernightShip",
                    "value": "none"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "Indirect_Delivery_Shipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "nextDayDeliveryShipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "twoDayDeliveryShipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "Pick_In_Store"
                  }
                ]
              },
              "productOffering": {
                "id": "legacy-wireless-dummy-offer-id",
                "productOfferingType": "Mobile_Offer",
                "productOfferingGroup": "CT_Mobility"
              },
              "productOrderItem": [
                {
                  "id": "8db0c031-d146-4500-a5d5-9611cbe86657",
                  "quantity": 1,
                  "action": "add",
                  "billingAccount": {
                    "id": "177084428124",
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "ratingType": "postpaid"
                  },
                  "itemPrice": [
                    {
                      "description": "AT&T Installment Plan",
                      "name": "Monthly Installment Amount",
                      "priceType": "RC",
                      "priceCategory": "equipmentRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 5.56
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 5.56
                            }
                          },
                          "alterationType": "promotion",
                          "immediatePromotionId": "PROMO_ITEM_01",
                          "chargeType": "Credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 27.78
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 27.78
                            }
                          },
                          "alterationType": "promotion",
                          "immediatePromotionId": "PROMO_ITEM_02"
                        }
                      ],
                      "recurringChargePeriodLength": 36,
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 11.12
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 11.12
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      },
                      "installmentOption": {
                        "id": "10300001",
                        "name": "NE36MNUP",
                        "@type": "LEASE",
                        "installmentOption": "mandatory",
                        "numberOfInstallments": 36
                      },
                      "taxIncluded": "Included"
                    },
                    {
                      "name": "Device Finance",
                      "priceType": "OC",
                      "priceCategory": "equipmentOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "chargeType": "Credit"
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "chargeType": "Credit"
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "taxIncluded": "Included",
                      "role": "DueUponFulfillment"
                    },
                    {
                      "name": "Device MSRP",
                      "priceType": "OC",
                      "priceCategory": "equipmentOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1731.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 132
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 1599
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "1599.99"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "1599.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1731.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 132
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 1599
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "1599.99"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "1599.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "taxIncluded": "Included",
                      "role": "DueUponFulfillment"
                    },
                    {
                      "description": "AT&T Installment Plan Down payment",
                      "name": "Device downpayment",
                      "priceType": "OC",
                      "priceCategory": "equipmentOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "role": "DWNPAY"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 132
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 1599
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "1599.99"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "1599.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 132
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      }
                    },
                    {
                      "priceType": "RC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 5.56
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 5.56
                            }
                          },
                          "alterationType": "promotion",
                          "immediatePromotionId": "PROMO_ITEM_01",
                          "chargeType": "Credit"
                        },
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 27.78
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 27.78
                            }
                          },
                          "alterationType": "promotion",
                          "immediatePromotionId": "PROMO_ITEM_02"
                        }
                      ],
                      "recurringChargePeriodLength": 36,
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 11.12
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 11.12
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      }
                    }
                  ],
                  "product": {
                    "productCharacteristic": [
                      {
                        "name": "billingCode",
                        "value": "6638E"
                      },
                      {
                        "name": "deviceCategory",
                        "value": "smartphone"
                      },
                      {
                        "name": "priceType",
                        "value": "OC"
                      },
                      {
                        "name": "fulfillmentWaiver",
                        "value": "overnight"
                      },
                      {
                        "name": "productKey",
                        "value": "prod32812"
                      },
                      {
                        "name": "sku",
                        "value": "sku32812v13"
                      },
                      {
                        "name": "maxSKUQtyPerOrder",
                        "value": "5"
                      },
                      {
                        "name": "defaultFreeOvernightShip",
                        "value": "none"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "Indirect_Delivery_Shipping"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "nextDayDeliveryShipping"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "twoDayDeliveryShipping"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "Pick_In_Store"
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "Mobile_Device_prod32812_sku32812v13",
                    "name": "Apple iPhone 16 Pro Max - 1TB - Black Titanium",
                    "productOfferingType": "Mobile_Device"
                  },
                  "creationDate": "2025-07-15T08:07:18.682Z",
                  "characteristic": [
                    {
                      "name": "commitmentTermId",
                      "value": "10300001"
                    },
                    {
                      "name": "contractLength",
                      "value": "36"
                    },
                    {
                      "name": "contractType",
                      "value": "monthly"
                    },
                    {
                      "name": "commitmentTerm",
                      "value": "NE36MNUP"
                    }
                  ]
                },
                {
                  "id": "71cc8010-388a-43bb-af76-ad130819b17e",
                  "quantity": 1,
                  "action": "add",
                  "billingAccount": {
                    "id": "177084428124",
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "ratingType": "postpaid"
                  },
                  "itemPrice": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "0.0"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "0.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "0.0"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "0.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "taxIncluded": "Included",
                      "role": "DueUponFulfillment"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "0.0"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "0.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      }
                    }
                  ],
                  "product": {
                    "productCharacteristic": [
                      {
                        "name": "simType",
                        "value": "eSIM"
                      },
                      {
                        "name": "billingCode",
                        "value": "7999C"
                      },
                      {
                        "name": "priceType",
                        "value": "OC"
                      },
                      {
                        "name": "productKey",
                        "value": "27100010"
                      },
                      {
                        "name": "sku",
                        "value": "27100010-sku9350228"
                      },
                      {
                        "name": "SIM_Type",
                        "value": "eSIM"
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "Mobile_Sim_27100010_27100010-sku9350228",
                    "name": "Electronic SIM for device - 7999C",
                    "productOfferingType": "SIM"
                  },
                  "creationDate": "2025-07-15T08:07:18.682Z"
                },
                {
                  "id": "cd765005-bafb-448c-9502-3b27c2b454e5",
                  "quantity": 1,
                  "action": "add",
                  "billingAccount": {
                    "id": "177084428124",
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "ratingType": "postpaid"
                  },
                  "itemPrice": [
                    {
                      "priceType": "NA",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 420
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 420
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1000
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1000
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      }
                    }
                  ],
                  "product": {
                    "productCharacteristic": [
                      {
                        "name": "deviceCondition-POWER_ON",
                        "value": "Y"
                      },
                      {
                        "name": "deviceCondition-LCD_FUNCTIONALITY",
                        "value": "Y"
                      },
                      {
                        "name": "deviceCondition-DEACTIVATED",
                        "value": "Y"
                      },
                      {
                        "name": "deviceCondition-NO_DAMAGE",
                        "value": "Y"
                      },
                      {
                        "name": "exchangeType",
                        "value": "HYLA"
                      },
                      {
                        "name": "modelCode",
                        "value": "2440094"
                      },
                      {
                        "name": "modelPrice",
                        "value": "420"
                      },
                      {
                        "name": "make",
                        "value": "Apple"
                      },
                      {
                        "name": "model",
                        "value": "iPhone 15 Pro Max"
                      },
                      {
                        "name": "productImageURL",
                        "value": "https://s3.amazonaws.com/erp-prod/ORAPRD2/12420179-2440094-5145330.jpg"
                      },
                      {
                        "name": "capacity",
                        "value": "256GB"
                      },
                      {
                        "name": "Delivery_Methods",
                        "value": "26500016"
                      },
                      {
                        "name": "Delivery_Methods",
                        "value": "28700008"
                      },
                      {
                        "name": "Delivery_Methods",
                        "value": "28700009"
                      },
                      {
                        "name": "promotionType",
                        "value": "BILL_CREDIT"
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "Mobile_TradeIn_Device_1000IPH16V4IDP_29963",
                    "name": "Return Device",
                    "productOfferingType": "Mobile_TradeIn_Device"
                  },
                  "creationDate": "2025-07-15T08:07:18.683Z"
                }
              ],
              "creationDate": "2025-07-15T08:07:18.683Z"
            }
          ],
          "relatedParty": [
            {
              "id": "177084428124",
              "role": "owner",
              "@referredType": "TLGAccount"
            },
            {
              "id": "uuid_6009",
              "role": "Profile",
              "extensions": [
                {
                  "name": "user-type",
                  "value": "registered"
                }
              ]
            },
            {
              "id": "177084428124",
              "role": "customer",
              "extensions": [
                {
                  "name": "zipCode",
                  "value": "94801"
                },
                {
                  "name": "customerType",
                  "value": "Consumer"
                },
                {
                  "name": "customerSubType",
                  "value": "Individual"
                }
              ],
              "@referredType": "TLGAccount"
            }
          ],
          "state": "inProgress",
          "@type": "DEFAULT",
          "immediatePromotion": [
            {
              "id": "PROMO_ITEM_01",
              "promotion": {
                "id": "wrlspr-40762",
                "name": "ONLINE ONLY: You're getting a $200 bill credit with new voice on elig. unlimited plan (speed restr's apply). Credits start within 3 bills.",
                "description": "ONLINE ONLY: You're getting a $200 bill credit with new voice on elig. unlimited plan (speed restr's apply). Credits start within 3 bills.",
                "type": "BILLCREDITWITHQUALIFIER",
                "applyPolicy": "AUTOMATIC"
              },
              "triggerItem": [
                {
                  "id": "8db0c031-d146-4500-a5d5-9611cbe86657"
                }
              ],
              "benefitItem": [
                {
                  "id": "8db0c031-d146-4500-a5d5-9611cbe86657"
                }
              ]
            },
            {
              "id": "PROMO_ITEM_02",
              "promotion": {
                "id": "wrlspr-29963",
                "name": "OFFER APPLIED: You're getting up to $1,000 off iPhone 16 Pro Max with elig. trade-in on installment & elig. unlimited plan (speed restr's apply). Credits start within 3 bills. Without unlimited, device is full price.",
                "description": "OFFER APPLIED: You're getting up to $1,000 off iPhone 16 Pro Max with elig. trade-in on installment & elig. unlimited plan (speed restr's apply). Credits start within 3 bills. Without unlimited, device is full price.",
                "type": "DEVICE_TRADEIN",
                "applyPolicy": "AUTOMATIC"
              },
              "triggerItem": [
                {
                  "id": "cd765005-bafb-448c-9502-3b27c2b454e5"
                }
              ],
              "benefitItem": [
                {
                  "id": "8db0c031-d146-4500-a5d5-9611cbe86657"
                }
              ],
              "immediatePromotionCharacteristic": [
                {
                  "name": "promotionType",
                  "value": [
                    "BILL_CREDIT"
                  ]
                }
              ]
            }
          ],
          "validation": {
            "readyToCheckout": false
          }
        }
      },
      "Standalone_TLG_wireless_AAL_Plan_Response": {
        "value": {
          "id": "cd427280-614f-11f0-94c4-c9b439b0caf3",
          "category": "Mobile_Offer",
          "orderDate": "2025-07-15T07:46:22.248Z",
          "lastUpdate": "2025-07-15T07:46:33.164Z",
          "orderPriceDate": "2025-07-15T07:46:27.725Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "sessionid_6007"
            }
          ],
          "channel": [
            {
              "id": "SelfService",
              "name": "SelfService",
              "extensions": [
                {
                  "name": "Application",
                  "value": "websales"
                }
              ]
            }
          ],
          "orderTotalPrice": [
            {
              "priceType": "immediate",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 132
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 132
                },
                "appliedTax": [
                  {
                    "taxDefinition": {
                      "name": "Sales Tax",
                      "taxRate": 0.0825,
                      "isExemption": false,
                      "exemptionType": "none",
                      "taxJurisdiction": {
                        "name": "Sales Tax",
                        "level": "Sales Tax",
                        "id": "DUMMY ID"
                      }
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 132
                    },
                    "taxableAmount": {
                      "unit": "USD",
                      "value": 1599
                    },
                    "characteristic": [
                      {
                        "name": "taxableInd",
                        "value": "X"
                      },
                      {
                        "name": "taxAuditInfo"
                      },
                      {
                        "name": "printGroup"
                      },
                      {
                        "name": "taxOnTaxAmount"
                      },
                      {
                        "name": "SKUSpecificInd",
                        "value": "false"
                      },
                      {
                        "name": "taxGeneralLedgerAccount"
                      },
                      {
                        "name": "displayOrder",
                        "value": "0"
                      },
                      {
                        "name": "percentTaxable",
                        "value": "X"
                      },
                      {
                        "name": "taxCode",
                        "value": "SALESTAX"
                      },
                      {
                        "name": "taxDate",
                        "value": "2025-07-15T12:00:00"
                      },
                      {
                        "name": "impositionType"
                      },
                      {
                        "name": "geoCodeInfo"
                      },
                      {
                        "name": "taxLineID",
                        "value": "1"
                      },
                      {
                        "name": "imposition"
                      },
                      {
                        "name": "taxCategoryCode",
                        "value": "SALESTAX"
                      },
                      {
                        "name": "revenueBase"
                      },
                      {
                        "name": "memoGL",
                        "value": "SALESTAX"
                      },
                      {
                        "name": "orderTaxAreaID",
                        "value": "390950000"
                      },
                      {
                        "name": "taxableMSRP",
                        "value": "1599.99"
                      },
                      {
                        "name": "shipToTaxAreaID",
                        "value": "440857820"
                      },
                      {
                        "name": "shipFromTaxAreaID",
                        "value": "431570560"
                      },
                      {
                        "name": "taxableCost",
                        "value": "1599.0"
                      }
                    ],
                    "extensions": {
                      "Tax": [
                        {
                          "key": "printGroup",
                          "value": "TAX"
                        }
                      ]
                    }
                  }
                ]
              },
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 132
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 132
                }
              },
              "immediatePayOption": {
                "payImmediately": true
              }
            },
            {
              "priceType": "RC",
              "recurringChargePeriod": "month",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 140.44
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 140.44
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "priceAlteration": [
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 5.56
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 5.56
                    }
                  },
                  "alterationType": "promotion",
                  "immediatePromotionId": "PROMO_ITEM_02",
                  "chargeType": "Credit"
                },
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 10
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 10
                    }
                  },
                  "alterationType": "promotion",
                  "immediatePromotionId": "PROMO_ITEM_01"
                }
              ],
              "recurringChargePeriodLength": 36,
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 124.88
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 128.37
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 3.49
                }
              }
            },
            {
              "priceType": "OC",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              }
            }
          ],
          "productOrderItem": [
            {
              "id": "68b5a165-b16b-4f49-bb6a-d37be3305135",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "id": "177084428124",
                "characteristic": [
                  {
                    "name": "System_of_Record",
                    "value": "TLG"
                  },
                  {
                    "name": "accountStatus",
                    "value": "O"
                  }
                ],
                "ratingType": "postpaid"
              },
              "itemPrice": [
                {
                  "name": "Activation Fee",
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  },
                  "taxIncluded": "Included",
                  "role": "DueAtFirstBill"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 132
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 132
                    },
                    "appliedTax": [
                      {
                        "taxDefinition": {
                          "name": "Sales Tax",
                          "taxRate": 0.0825,
                          "isExemption": false,
                          "exemptionType": "none",
                          "taxJurisdiction": {
                            "name": "Sales Tax",
                            "level": "Sales Tax",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 1599
                        },
                        "characteristic": [
                          {
                            "name": "taxableInd",
                            "value": "X"
                          },
                          {
                            "name": "taxAuditInfo"
                          },
                          {
                            "name": "printGroup"
                          },
                          {
                            "name": "taxOnTaxAmount"
                          },
                          {
                            "name": "SKUSpecificInd",
                            "value": "false"
                          },
                          {
                            "name": "taxGeneralLedgerAccount"
                          },
                          {
                            "name": "displayOrder",
                            "value": "0"
                          },
                          {
                            "name": "percentTaxable",
                            "value": "X"
                          },
                          {
                            "name": "taxCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "taxDate",
                            "value": "2025-07-15T12:00:00"
                          },
                          {
                            "name": "impositionType"
                          },
                          {
                            "name": "geoCodeInfo"
                          },
                          {
                            "name": "taxLineID",
                            "value": "1"
                          },
                          {
                            "name": "imposition"
                          },
                          {
                            "name": "taxCategoryCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "revenueBase"
                          },
                          {
                            "name": "memoGL",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "orderTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableMSRP",
                            "value": "1599.99"
                          },
                          {
                            "name": "shipToTaxAreaID",
                            "value": "440857820"
                          },
                          {
                            "name": "shipFromTaxAreaID",
                            "value": "431570560"
                          },
                          {
                            "name": "taxableCost",
                            "value": "1599.0"
                          }
                        ],
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 132
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 132
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": true
                  }
                },
                {
                  "priceType": "RC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 140.44
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 140.44
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 5.56
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 5.56
                        }
                      },
                      "alterationType": "promotion",
                      "immediatePromotionId": "PROMO_ITEM_02",
                      "chargeType": "Credit"
                    },
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 10
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 10
                        }
                      },
                      "alterationType": "promotion",
                      "immediatePromotionId": "PROMO_ITEM_01"
                    }
                  ],
                  "recurringChargePeriodLength": 36,
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 124.88
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 128.37
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 3.49
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  }
                },
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  }
                }
              ],
              "product": {
                "productCharacteristic": [
                  {
                    "name": "billingCode",
                    "value": "6638E"
                  },
                  {
                    "name": "deviceCategory",
                    "value": "smartphone"
                  },
                  {
                    "name": "priceType",
                    "value": "OC"
                  },
                  {
                    "name": "fulfillmentWaiver",
                    "value": "overnight"
                  },
                  {
                    "name": "productKey",
                    "value": "prod32812"
                  },
                  {
                    "name": "sku",
                    "value": "sku32812v13"
                  },
                  {
                    "name": "maxSKUQtyPerOrder",
                    "value": "5"
                  },
                  {
                    "name": "defaultFreeOvernightShip",
                    "value": "none"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "Indirect_Delivery_Shipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "nextDayDeliveryShipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "twoDayDeliveryShipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "Pick_In_Store"
                  }
                ]
              },
              "productOffering": {
                "id": "legacy-wireless-dummy-offer-id",
                "productOfferingType": "Mobile_Offer",
                "productOfferingGroup": "CT_Mobility"
              },
              "productOrderItem": [
                {
                  "id": "67d63395-d1d2-4507-961b-58bf185d2332",
                  "quantity": 1,
                  "action": "add",
                  "billingAccount": {
                    "id": "177084428124",
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "ratingType": "postpaid"
                  },
                  "itemPrice": [
                    {
                      "description": "AT&T Installment Plan",
                      "name": "Monthly Installment Amount",
                      "priceType": "RC",
                      "priceCategory": "equipmentRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 5.56
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 5.56
                            }
                          },
                          "alterationType": "promotion",
                          "immediatePromotionId": "PROMO_ITEM_02",
                          "chargeType": "Credit"
                        }
                      ],
                      "recurringChargePeriodLength": 36,
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 38.89
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 38.89
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      },
                      "installmentOption": {
                        "id": "10300001",
                        "name": "NE36MNUP",
                        "@type": "LEASE",
                        "installmentOption": "mandatory",
                        "numberOfInstallments": 36
                      },
                      "taxIncluded": "Included"
                    },
                    {
                      "name": "Device Finance",
                      "priceType": "OC",
                      "priceCategory": "equipmentOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "chargeType": "Credit"
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "chargeType": "Credit"
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "taxIncluded": "Included",
                      "role": "DueUponFulfillment"
                    },
                    {
                      "name": "Device MSRP",
                      "priceType": "OC",
                      "priceCategory": "equipmentOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1731.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 132
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 1599
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "1599.99"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "1599.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1731.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 132
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 1599
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "1599.99"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "1599.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "taxIncluded": "Included",
                      "role": "DueUponFulfillment"
                    },
                    {
                      "description": "AT&T Installment Plan Down payment",
                      "name": "Device downpayment",
                      "priceType": "OC",
                      "priceCategory": "equipmentOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "role": "DWNPAY"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 132
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 1599
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "1599.99"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "1599.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 132
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 132
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      }
                    },
                    {
                      "priceType": "RC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 5.56
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 5.56
                            }
                          },
                          "alterationType": "promotion",
                          "immediatePromotionId": "PROMO_ITEM_02",
                          "chargeType": "Credit"
                        }
                      ],
                      "recurringChargePeriodLength": 36,
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 38.89
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 38.89
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      }
                    }
                  ],
                  "product": {
                    "productCharacteristic": [
                      {
                        "name": "billingCode",
                        "value": "6638E"
                      },
                      {
                        "name": "deviceCategory",
                        "value": "smartphone"
                      },
                      {
                        "name": "priceType",
                        "value": "OC"
                      },
                      {
                        "name": "fulfillmentWaiver",
                        "value": "overnight"
                      },
                      {
                        "name": "sku",
                        "value": "sku32812v13"
                      },
                      {
                        "name": "productKey",
                        "value": "prod32812"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "Pick_In_Store"
                      },
                      {
                        "name": "defaultFreeOvernightShip",
                        "value": "none"
                      },
                      {
                        "name": "maxSKUQtyPerOrder",
                        "value": "5"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "Indirect_Delivery_Shipping"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "nextDayDeliveryShipping"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "twoDayDeliveryShipping"
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "Mobile_Device_prod32812_sku32812v13",
                    "name": "Apple iPhone 16 Pro Max - 1TB - Black Titanium",
                    "productOfferingType": "Mobile_Device"
                  },
                  "creationDate": "2025-07-15T07:46:26.226Z",
                  "characteristic": [
                    {
                      "name": "commitmentTermId",
                      "value": "10300001"
                    },
                    {
                      "name": "contractLength",
                      "value": "36"
                    },
                    {
                      "name": "contractType",
                      "value": "monthly"
                    },
                    {
                      "name": "commitmentTerm",
                      "value": "NE36MNUP"
                    }
                  ]
                },
                {
                  "id": "8dac31aa-5819-458d-8c28-6ddd46b92e80",
                  "quantity": 1,
                  "action": "add",
                  "billingAccount": {
                    "id": "177084428124",
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "ratingType": "postpaid"
                  },
                  "itemPrice": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "0.0"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "0.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "0.0"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "0.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "taxIncluded": "Included",
                      "role": "DueUponFulfillment"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "Sales Tax",
                              "taxRate": 0.0825,
                              "isExemption": false,
                              "exemptionType": "none",
                              "taxJurisdiction": {
                                "name": "Sales Tax",
                                "level": "Sales Tax",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "characteristic": [
                              {
                                "name": "taxableInd",
                                "value": "X"
                              },
                              {
                                "name": "taxAuditInfo"
                              },
                              {
                                "name": "printGroup"
                              },
                              {
                                "name": "taxOnTaxAmount"
                              },
                              {
                                "name": "SKUSpecificInd",
                                "value": "false"
                              },
                              {
                                "name": "taxGeneralLedgerAccount"
                              },
                              {
                                "name": "displayOrder",
                                "value": "0"
                              },
                              {
                                "name": "percentTaxable",
                                "value": "X"
                              },
                              {
                                "name": "taxCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "taxDate",
                                "value": "2025-07-15T12:00:00"
                              },
                              {
                                "name": "impositionType"
                              },
                              {
                                "name": "geoCodeInfo"
                              },
                              {
                                "name": "taxLineID",
                                "value": "1"
                              },
                              {
                                "name": "imposition"
                              },
                              {
                                "name": "taxCategoryCode",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "revenueBase"
                              },
                              {
                                "name": "memoGL",
                                "value": "SALESTAX"
                              },
                              {
                                "name": "orderTaxAreaID",
                                "value": "390950000"
                              },
                              {
                                "name": "taxableMSRP",
                                "value": "0.0"
                              },
                              {
                                "name": "shipToTaxAreaID",
                                "value": "440857820"
                              },
                              {
                                "name": "shipFromTaxAreaID",
                                "value": "431570560"
                              },
                              {
                                "name": "taxableCost",
                                "value": "0.0"
                              }
                            ],
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      }
                    }
                  ],
                  "product": {
                    "productCharacteristic": [
                      {
                        "name": "billingCode",
                        "value": "7999C"
                      },
                      {
                        "name": "simType",
                        "value": "eSIM"
                      },
                      {
                        "name": "priceType",
                        "value": "OC"
                      },
                      {
                        "name": "sku",
                        "value": "27100010-sku9350228"
                      },
                      {
                        "name": "productKey",
                        "value": "27100010"
                      },
                      {
                        "name": "SIM_Type",
                        "value": "eSIM"
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "Mobile_Sim_27100010_27100010-sku9350228",
                    "name": "Electronic SIM for device - 7999C",
                    "productOfferingType": "SIM"
                  },
                  "creationDate": "2025-07-15T07:46:26.226Z"
                },
                {
                  "id": "b69d2dff-b87e-4160-b46b-0420410397e2",
                  "quantity": 1,
                  "action": "add",
                  "billingAccount": {
                    "id": "177084428124",
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "ratingType": "postpaid"
                  },
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      },
                      "taxIncluded": "Included"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      }
                    }
                  ],
                  "product": {
                    "productCharacteristic": [
                      {
                        "name": "billingCode",
                        "value": "UNLIMTSDG"
                      },
                      {
                        "name": "priceType",
                        "value": "RC"
                      },
                      {
                        "name": "productKey",
                        "value": "prod10690221"
                      },
                      {
                        "name": "sku",
                        "value": "sku10060281"
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "Mobile_Share_Group_prod10690221_sku10060281",
                    "name": "AT&T Unlimited Your Way®",
                    "productOfferingType": "Mobile_Share_Group"
                  },
                  "creationDate": "2025-07-15T07:46:31.370Z",
                  "characteristic": [
                    {
                      "name": "mobileGroupId",
                      "value": "G16871476"
                    }
                  ]
                },
                {
                  "id": "41ea9871-95fb-434c-a099-974b127bb3f4",
                  "quantity": 1,
                  "action": "add",
                  "billingAccount": {
                    "id": "177084428124",
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "ratingType": "postpaid"
                  },
                  "itemPrice": [
                    {
                      "description": "The basic plan recurring charge",
                      "name": "Basic Plan RC",
                      "priceType": "RC",
                      "priceCategory": "serviceRC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 95.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 95.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 10
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 10
                            }
                          },
                          "alterationType": "promotion",
                          "immediatePromotionId": "PROMO_ITEM_01"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 85.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 89.48
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 3.49
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "AT&T Administrative/Regulatory Cost Recovery Fee"
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 3.49
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 0
                            }
                          }
                        ]
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      },
                      "taxIncluded": "Included"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 95.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 95.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 10
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 10
                            }
                          },
                          "alterationType": "promotion",
                          "immediatePromotionId": "PROMO_ITEM_01"
                        }
                      ],
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 85.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 89.48
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 3.49
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      }
                    }
                  ],
                  "product": {
                    "productCharacteristic": [
                      {
                        "name": "billingCode",
                        "value": "LPMTOP1"
                      },
                      {
                        "name": "priceType",
                        "value": "RC"
                      },
                      {
                        "name": "productKey",
                        "value": "prod12010230"
                      },
                      {
                        "name": "sku",
                        "value": "sku11590232"
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "Mobile_Share_Feature_prod12010230_sku11590232",
                    "name": "AT&T Unlimited Premium® PL plan",
                    "productOfferingType": "Mobile_Share_Feature"
                  },
                  "creationDate": "2025-07-15T07:46:31.370Z"
                },
                {
                  "id": "10c0bead-6784-491c-917c-038c2c3bddc2",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      },
                      "taxIncluded": "Included"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      }
                    }
                  ],
                  "product": {
                    "referenceId": "c93e2434-d5d0-4354-a8e3-f00e2d8356e5",
                    "productCharacteristic": [
                      {
                        "name": "billingCode",
                        "value": "SDDVRP"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "68b5a165-b16b-4f49-bb6a-d37be3305135"
                        }
                      },
                      {
                        "relationshipType": "enabledBy",
                        "product": {
                          "referenceId": "41ea9871-95fb-434c-a099-974b127bb3f4"
                        }
                      }
                    ],
                    "productSpecification": {
                      "id": "620be78e-2da8-42a5-9e8d-a5fa8b493dc1",
                      "name": "Mobile Share Plan"
                    }
                  },
                  "productOffering": {
                    "id": "Mobile_Plan_prod6130421_sku6220543",
                    "name": "Mobile Share Plan",
                    "productOfferingType": "Mobile_Plan"
                  }
                }
              ],
              "creationDate": "2025-07-15T07:46:26.226Z"
            }
          ],
          "relatedParty": [
            {
              "id": "177084428124",
              "role": "owner",
              "@referredType": "TLGAccount"
            },
            {
              "id": "uuid_6008",
              "role": "Profile",
              "extensions": [
                {
                  "name": "user-type",
                  "value": "registered"
                }
              ]
            },
            {
              "id": "177084428124",
              "role": "customer",
              "extensions": [
                {
                  "name": "customerType",
                  "value": "Consumer"
                },
                {
                  "name": "zipCode",
                  "value": "94801"
                },
                {
                  "name": "customerSubType",
                  "value": "Individual"
                }
              ],
              "@referredType": "TLGAccount"
            }
          ],
          "state": "inProgress",
          "@type": "DEFAULT",
          "immediatePromotion": [
            {
              "id": "PROMO_ITEM_01",
              "promotion": {
                "id": "wrlspr-25750",
                "name": "AutoPay and paperless billing discount",
                "description": "AutoPay and paperless billing discount",
                "type": "PROMOTION",
                "applyPolicy": "AUTOMATIC"
              },
              "triggerItem": [
                {
                  "id": "41ea9871-95fb-434c-a099-974b127bb3f4"
                }
              ],
              "benefitItem": [
                {
                  "id": "41ea9871-95fb-434c-a099-974b127bb3f4"
                }
              ]
            },
            {
              "id": "PROMO_ITEM_02",
              "promotion": {
                "id": "wrlspr-40762",
                "name": "ONLINE ONLY: You're getting a $200 bill credit with new voice on elig. unlimited plan (speed restr's apply). Credits start within 3 bills.",
                "description": "ONLINE ONLY: You're getting a $200 bill credit with new voice on elig. unlimited plan (speed restr's apply). Credits start within 3 bills.",
                "type": "BILLCREDITWITHQUALIFIER",
                "applyPolicy": "AUTOMATIC"
              },
              "triggerItem": [
                {
                  "id": "67d63395-d1d2-4507-961b-58bf185d2332"
                }
              ],
              "benefitItem": [
                {
                  "id": "67d63395-d1d2-4507-961b-58bf185d2332"
                }
              ]
            }
          ],
          "validation": {
            "readyToCheckout": true
          }
        }
      },
      "Standalone_TLG_wireless_Device_Sim_AAL_Response": {
        "value": {
          "id": "5c4d2840-614a-11f0-a1dd-93da74cde74b",
          "category": "Mobile_Offer",
          "orderDate": "2025-07-15T07:07:25.252Z",
          "lastUpdate": "2025-07-15T07:07:50.637Z",
          "orderPriceDate": "2025-07-15T07:07:50.637Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "sessionid_6007"
            }
          ],
          "channel": [
            {
              "id": "SelfService",
              "name": "SelfService",
              "extensions": [
                {
                  "name": "Application",
                  "value": "websales"
                }
              ]
            }
          ],
          "orderTotalPrice": [
            {
              "priceType": "immediate",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "appliedTax": [
                  {
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  }
                ]
              },
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "immediatePayOption": {
                "payImmediately": true
              }
            },
            {
              "priceType": "RC",
              "recurringChargePeriod": "month",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 44.45
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 44.45
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "priceAlteration": [
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "priceReduction": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "alterationType": "promotion",
                  "immediatePromotionId": "PROMO_ITEM_01",
                  "chargeType": "Credit"
                }
              ],
              "recurringChargePeriodLength": 36,
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 44.45
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 44.45
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              }
            },
            {
              "priceType": "OC",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 35
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                }
              }
            }
          ],
          "productOrderItem": [
            {
              "id": "9d77610c-50ce-4c94-b364-01f94aebb9e0",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "id": "554646504216",
                "characteristic": [
                  {
                    "name": "System_of_Record",
                    "value": "TLG"
                  }
                ],
                "ratingType": "postpaid"
              },
              "itemPrice": [
                {
                  "name": "Activation Fee",
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  },
                  "taxIncluded": "Excluded",
                  "role": "DueAtFirstBill"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "appliedTax": [
                      {
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      }
                    ]
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": true
                  }
                },
                {
                  "priceType": "RC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 44.45
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 44.45
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "priceReduction": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "alterationType": "promotion",
                      "immediatePromotionId": "PROMO_ITEM_01",
                      "chargeType": "Credit"
                    }
                  ],
                  "recurringChargePeriodLength": 36,
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 44.45
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 44.45
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  }
                },
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 35
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  }
                }
              ],
              "product": {
                "productCharacteristic": [
                  {
                    "name": "billingCode",
                    "value": "6638E"
                  },
                  {
                    "name": "deviceCategory",
                    "value": "smartphone"
                  },
                  {
                    "name": "priceType",
                    "value": "OC"
                  },
                  {
                    "name": "fulfillmentWaiver",
                    "value": "overnight"
                  },
                  {
                    "name": "productKey",
                    "value": "prod32812"
                  },
                  {
                    "name": "sku",
                    "value": "sku32812v13"
                  },
                  {
                    "name": "maxSKUQtyPerOrder",
                    "value": "5"
                  },
                  {
                    "name": "defaultFreeOvernightShip",
                    "value": "none"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "Indirect_Delivery_Shipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "nextDayDeliveryShipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "twoDayDeliveryShipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "Pick_In_Store"
                  }
                ]
              },
              "productOffering": {
                "id": "legacy-wireless-dummy-offer-id",
                "productOfferingType": "Mobile_Offer",
                "productOfferingGroup": "CT_Mobility"
              },
              "productOrderItem": [
                {
                  "id": "ef38a63d-d765-4f50-9499-9b1b4576e17b",
                  "quantity": 1,
                  "action": "add",
                  "billingAccount": {
                    "id": "554646504216",
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "ratingType": "postpaid"
                  },
                  "itemPrice": [
                    {
                      "description": "AT&T Installment Plan",
                      "name": "Monthly Installment Amount",
                      "priceType": "RC",
                      "priceCategory": "equipmentRC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "promotion",
                          "immediatePromotionId": "PROMO_ITEM_01",
                          "chargeType": "Credit"
                        }
                      ],
                      "recurringChargePeriodLength": 36,
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      },
                      "installmentOption": {
                        "id": "10300001",
                        "name": "NE36MNUP",
                        "@type": "LEASE",
                        "installmentOption": "mandatory",
                        "numberOfInstallments": 36
                      },
                      "taxIncluded": "Excluded"
                    },
                    {
                      "name": "Device Finance",
                      "priceType": "OC",
                      "priceCategory": "equipmentOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "chargeType": "Credit"
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "chargeType": "Credit"
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "taxIncluded": "Included",
                      "role": "DueUponFulfillment"
                    },
                    {
                      "name": "Device MSRP",
                      "priceType": "OC",
                      "priceCategory": "equipmentOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 1599.99
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "taxIncluded": "Included",
                      "role": "DueUponFulfillment"
                    },
                    {
                      "description": "AT&T Installment Plan Down payment",
                      "name": "Device downpayment",
                      "priceType": "OC",
                      "priceCategory": "equipmentOC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "role": "DWNPAY"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      }
                    },
                    {
                      "priceType": "RC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 0
                            }
                          },
                          "alterationType": "promotion",
                          "immediatePromotionId": "PROMO_ITEM_01",
                          "chargeType": "Credit"
                        }
                      ],
                      "recurringChargePeriodLength": 36,
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 44.45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      }
                    }
                  ],
                  "product": {
                    "productCharacteristic": [
                      {
                        "name": "billingCode",
                        "value": "6638E"
                      },
                      {
                        "name": "deviceCategory",
                        "value": "smartphone"
                      },
                      {
                        "name": "priceType",
                        "value": "OC"
                      },
                      {
                        "name": "fulfillmentWaiver",
                        "value": "overnight"
                      },
                      {
                        "name": "productKey",
                        "value": "prod32812"
                      },
                      {
                        "name": "sku",
                        "value": "sku32812v13"
                      },
                      {
                        "name": "maxSKUQtyPerOrder",
                        "value": "5"
                      },
                      {
                        "name": "defaultFreeOvernightShip",
                        "value": "none"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "Indirect_Delivery_Shipping"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "nextDayDeliveryShipping"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "twoDayDeliveryShipping"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "Pick_In_Store"
                      }
                    ]
                  },
                  "productOffering": {
                    "id": "Mobile_Device_prod32812_sku32812v13",
                    "name": "Apple iPhone 16 Pro Max - 1TB - Black Titanium",
                    "productOfferingType": "Mobile_Device"
                  },
                  "creationDate": "2025-07-15T07:07:48.663Z",
                  "characteristic": [
                    {
                      "name": "commitmentTermId",
                      "value": "10300001"
                    },
                    {
                      "name": "contractLength",
                      "value": "36"
                    },
                    {
                      "name": "contractType",
                      "value": "monthly"
                    },
                    {
                      "name": "commitmentTerm",
                      "value": "NE36MNUP"
                    }
                  ]
                },
                {
                  "id": "160b4b5c-662c-4b43-80d9-6f8f9fb39c71",
                  "quantity": 1,
                  "action": "add",
                  "billingAccount": {
                    "id": "554646504216",
                    "characteristic": [
                      {
                        "name": "System_of_Record",
                        "value": "TLG"
                      }
                    ],
                    "ratingType": "postpaid"
                  },
                  "itemPrice": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "appliedTax": [
                          {
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            }
                          }
                        ]
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "appliedTax": [
                          {
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            }
                          }
                        ]
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      },
                      "taxIncluded": "Excluded",
                      "role": "DueUponFulfillment"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "OC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "appliedTax": [
                          {
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            }
                          }
                        ]
                      },
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": true
                      }
                    }
                  ],
                  "product": {},
                  "productOffering": {
                    "id": "Mobile_Sim_27100010_27100010-sku9350228",
                    "productOfferingType": "SIM"
                  },
                  "creationDate": "2025-07-15T07:07:48.663Z"
                }
              ],
              "creationDate": "2025-07-15T07:07:48.663Z"
            }
          ],
          "relatedParty": [
            {
              "id": "554646504216",
              "role": "owner",
              "@referredType": "TLGAccount"
            },
            {
              "id": "uuid_6006",
              "role": "Profile",
              "extensions": [
                {
                  "name": "user-type",
                  "value": "registered"
                }
              ]
            },
            {
              "id": "554646504216",
              "role": "customer",
              "extensions": [
                {
                  "name": "zipCode",
                  "value": "94801"
                },
                {
                  "name": "customerType",
                  "value": "Consumer"
                },
                {
                  "name": "customerSubType",
                  "value": "Individual"
                }
              ],
              "@referredType": "TLGAccount"
            }
          ],
          "state": "inProgress",
          "@type": "DEFAULT",
          "immediatePromotion": [
            {
              "id": "PROMO_ITEM_01",
              "promotion": {
                "id": "wrlspr-40762",
                "name": "ONLINE ONLY: You're getting a $200 bill credit with new voice on elig. unlimited plan (speed restr's apply). Credits start within 3 bills.",
                "description": "ONLINE ONLY: You're getting a $200 bill credit with new voice on elig. unlimited plan (speed restr's apply). Credits start within 3 bills.",
                "type": "BILLCREDITWITHQUALIFIER",
                "applyPolicy": "AUTOMATIC"
              },
              "triggerItem": [
                {
                  "id": "ef38a63d-d765-4f50-9499-9b1b4576e17b"
                }
              ],
              "benefitItem": [
                {
                  "id": "ef38a63d-d765-4f50-9499-9b1b4576e17b"
                }
              ]
            }
          ],
          "validation": {
            "readyToCheckout": false
          }
        }
      },
      "Mobile_Accessory_Multi_Response": {
        "value": {
          "id": "28e79b00-1566-11f0-82cd-47533949fb73",
          "category": "Mobile_Accessory",
          "orderDate": "2025-04-09T17:14:56.560Z",
          "lastUpdate": "2025-04-09T17:15:03.880Z",
          "orderPriceDate": "2025-04-09T17:15:03.880Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "54010900-65c3-495a-k265-1j1854585d98"
            }
          ],
          "channel": [
            {
              "id": "SelfService",
              "name": "SelfService",
              "extensions": [
                {
                  "name": "Application",
                  "value": "websales"
                }
              ]
            }
          ],
          "orderTotalPrice": [
            {
              "priceType": "immediate",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 199.9
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 216.4
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 16.5
                },
                "appliedTax": [
                  {
                    "taxDefinition": {
                      "name": "Sales Tax",
                      "taxRate": 0.0825,
                      "isExemption": false,
                      "exemptionType": "none",
                      "taxJurisdiction": {
                        "name": "Sales Tax",
                        "level": "Sales Tax",
                        "id": "DUMMY ID"
                      }
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 16.5
                    },
                    "taxableAmount": {
                      "unit": "USD",
                      "value": 94.71
                    },
                    "characteristic": [
                      {
                        "name": "taxableInd",
                        "value": "X"
                      },
                      {
                        "name": "taxAuditInfo"
                      },
                      {
                        "name": "printGroup"
                      },
                      {
                        "name": "taxOnTaxAmount"
                      },
                      {
                        "name": "SKUSpecificInd",
                        "value": "false"
                      },
                      {
                        "name": "taxGeneralLedgerAccount"
                      },
                      {
                        "name": "displayOrder",
                        "value": "0"
                      },
                      {
                        "name": "percentTaxable",
                        "value": "X"
                      },
                      {
                        "name": "taxCode",
                        "value": "SALESTAX"
                      },
                      {
                        "name": "taxDate",
                        "value": "2025-04-09T01:01:01"
                      },
                      {
                        "name": "impositionType"
                      },
                      {
                        "name": "geoCodeInfo"
                      },
                      {
                        "name": "taxLineID",
                        "value": "1"
                      },
                      {
                        "name": "imposition"
                      },
                      {
                        "name": "taxCategoryCode",
                        "value": "SALESTAX"
                      },
                      {
                        "name": "revenueBase"
                      },
                      {
                        "name": "memoGL",
                        "value": "SALESTAX"
                      },
                      {
                        "name": "shipToTaxAreaID",
                        "value": "440851940"
                      },
                      {
                        "name": "shipFromTaxAreaID",
                        "value": "390950000"
                      },
                      {
                        "name": "taxableCost",
                        "value": "94.71"
                      },
                      {
                        "name": "orderTaxAreaID",
                        "value": "390950000"
                      },
                      {
                        "name": "taxableMSRP",
                        "value": "199.90"
                      }
                    ],
                    "extensions": {
                      "Tax": [
                        {
                          "key": "printGroup",
                          "value": "TAX"
                        }
                      ]
                    }
                  }
                ]
              },
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 199.9
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 216.4
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 16.5
                }
              },
              "immediatePayOption": {
                "payImmediately": true
              }
            }
          ],
          "productOrderItem": [
            {
              "id": "49df57ab-db85-4817-8df1-7117ba4b60ea",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "OC",
                  "priceCategory": "equipmentOC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99.95
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 108.2
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 8.25
                    },
                    "appliedTax": [
                      {
                        "taxDefinition": {
                          "name": "Sales Tax",
                          "taxRate": 0.0825,
                          "isExemption": false,
                          "exemptionType": "none",
                          "taxJurisdiction": {
                            "name": "Sales Tax",
                            "level": "Sales Tax",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 8.25
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 47
                        },
                        "characteristic": [
                          {
                            "name": "taxableInd",
                            "value": "X"
                          },
                          {
                            "name": "taxAuditInfo"
                          },
                          {
                            "name": "printGroup"
                          },
                          {
                            "name": "taxOnTaxAmount"
                          },
                          {
                            "name": "SKUSpecificInd",
                            "value": "false"
                          },
                          {
                            "name": "taxGeneralLedgerAccount"
                          },
                          {
                            "name": "displayOrder",
                            "value": "0"
                          },
                          {
                            "name": "percentTaxable",
                            "value": "X"
                          },
                          {
                            "name": "taxCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "taxDate",
                            "value": "2025-04-09T01:01:01"
                          },
                          {
                            "name": "impositionType"
                          },
                          {
                            "name": "geoCodeInfo"
                          },
                          {
                            "name": "taxLineID",
                            "value": "1"
                          },
                          {
                            "name": "imposition"
                          },
                          {
                            "name": "taxCategoryCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "revenueBase"
                          },
                          {
                            "name": "memoGL",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "shipToTaxAreaID",
                            "value": "440851940"
                          },
                          {
                            "name": "shipFromTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableCost",
                            "value": "47.0"
                          },
                          {
                            "name": "orderTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableMSRP",
                            "value": "99.95"
                          }
                        ],
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99.95
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 108.2
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 8.25
                    },
                    "appliedTax": [
                      {
                        "taxDefinition": {
                          "name": "Sales Tax",
                          "taxRate": 0.0825,
                          "isExemption": false,
                          "exemptionType": "none",
                          "taxJurisdiction": {
                            "name": "Sales Tax",
                            "level": "Sales Tax",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 8.25
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 47
                        },
                        "characteristic": [
                          {
                            "name": "taxableInd",
                            "value": "X"
                          },
                          {
                            "name": "taxAuditInfo"
                          },
                          {
                            "name": "printGroup"
                          },
                          {
                            "name": "taxOnTaxAmount"
                          },
                          {
                            "name": "SKUSpecificInd",
                            "value": "false"
                          },
                          {
                            "name": "taxGeneralLedgerAccount"
                          },
                          {
                            "name": "displayOrder",
                            "value": "0"
                          },
                          {
                            "name": "percentTaxable",
                            "value": "X"
                          },
                          {
                            "name": "taxCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "taxDate",
                            "value": "2025-04-09T01:01:01"
                          },
                          {
                            "name": "impositionType"
                          },
                          {
                            "name": "geoCodeInfo"
                          },
                          {
                            "name": "taxLineID",
                            "value": "1"
                          },
                          {
                            "name": "imposition"
                          },
                          {
                            "name": "taxCategoryCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "revenueBase"
                          },
                          {
                            "name": "memoGL",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "shipToTaxAreaID",
                            "value": "440851940"
                          },
                          {
                            "name": "shipFromTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableCost",
                            "value": "47.0"
                          },
                          {
                            "name": "orderTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableMSRP",
                            "value": "99.95"
                          }
                        ],
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "immediatePayOption": {
                    "payImmediately": true
                  },
                  "taxIncluded": "Included",
                  "role": "DueUponFulfillment"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99.95
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 108.2
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 8.25
                    },
                    "appliedTax": [
                      {
                        "taxDefinition": {
                          "name": "Sales Tax",
                          "taxRate": 0.0825,
                          "isExemption": false,
                          "exemptionType": "none",
                          "taxJurisdiction": {
                            "name": "Sales Tax",
                            "level": "Sales Tax",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 8.25
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 47
                        },
                        "characteristic": [
                          {
                            "name": "taxableInd",
                            "value": "X"
                          },
                          {
                            "name": "taxAuditInfo"
                          },
                          {
                            "name": "printGroup"
                          },
                          {
                            "name": "taxOnTaxAmount"
                          },
                          {
                            "name": "SKUSpecificInd",
                            "value": "false"
                          },
                          {
                            "name": "taxGeneralLedgerAccount"
                          },
                          {
                            "name": "displayOrder",
                            "value": "0"
                          },
                          {
                            "name": "percentTaxable",
                            "value": "X"
                          },
                          {
                            "name": "taxCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "taxDate",
                            "value": "2025-04-09T01:01:01"
                          },
                          {
                            "name": "impositionType"
                          },
                          {
                            "name": "geoCodeInfo"
                          },
                          {
                            "name": "taxLineID",
                            "value": "1"
                          },
                          {
                            "name": "imposition"
                          },
                          {
                            "name": "taxCategoryCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "revenueBase"
                          },
                          {
                            "name": "memoGL",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "shipToTaxAreaID",
                            "value": "440851940"
                          },
                          {
                            "name": "shipFromTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableCost",
                            "value": "47.0"
                          },
                          {
                            "name": "orderTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableMSRP",
                            "value": "99.95"
                          }
                        ],
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99.95
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 108.2
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 8.25
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": true
                  }
                }
              ],
              "product": {
                "productCharacteristic": [
                  {
                    "name": "billingCode",
                    "value": "4954R"
                  },
                  {
                    "name": "priceType",
                    "value": "OC"
                  },
                  {
                    "name": "productKey",
                    "value": "prod10900234"
                  },
                  {
                    "name": "sku",
                    "value": "sku2840232"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "Indirect_Delivery_Shipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "nextDayDeliveryShipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "Pick_In_Store"
                  }
                ]
              },
              "productOffering": {
                "id": "Mobile_Accessory_prod10900234_sku2840232",
                "name": "JBL Endurance Peak 3 True Wireless - Black",
                "productOfferingType": "Mobile_Accessory",
                "productOfferingGroup": "CT_Mobility"
              },
              "creationDate": "2025-04-09T17:15:02.209Z"
            },
            {
              "id": "49df57ab-db85-4817-8df1-7117ba4b60ea",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "priceType": "OC",
                  "priceCategory": "equipmentOC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99.95
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 108.2
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 8.25
                    },
                    "appliedTax": [
                      {
                        "taxDefinition": {
                          "name": "Sales Tax",
                          "taxRate": 0.0825,
                          "isExemption": false,
                          "exemptionType": "none",
                          "taxJurisdiction": {
                            "name": "Sales Tax",
                            "level": "Sales Tax",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 8.25
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 47
                        },
                        "characteristic": [
                          {
                            "name": "taxableInd",
                            "value": "X"
                          },
                          {
                            "name": "taxAuditInfo"
                          },
                          {
                            "name": "printGroup"
                          },
                          {
                            "name": "taxOnTaxAmount"
                          },
                          {
                            "name": "SKUSpecificInd",
                            "value": "false"
                          },
                          {
                            "name": "taxGeneralLedgerAccount"
                          },
                          {
                            "name": "displayOrder",
                            "value": "0"
                          },
                          {
                            "name": "percentTaxable",
                            "value": "X"
                          },
                          {
                            "name": "taxCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "taxDate",
                            "value": "2025-04-09T01:01:01"
                          },
                          {
                            "name": "impositionType"
                          },
                          {
                            "name": "geoCodeInfo"
                          },
                          {
                            "name": "taxLineID",
                            "value": "1"
                          },
                          {
                            "name": "imposition"
                          },
                          {
                            "name": "taxCategoryCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "revenueBase"
                          },
                          {
                            "name": "memoGL",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "shipToTaxAreaID",
                            "value": "440851940"
                          },
                          {
                            "name": "shipFromTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableCost",
                            "value": "47.0"
                          },
                          {
                            "name": "orderTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableMSRP",
                            "value": "99.95"
                          }
                        ],
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99.95
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 108.2
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 8.25
                    },
                    "appliedTax": [
                      {
                        "taxDefinition": {
                          "name": "Sales Tax",
                          "taxRate": 0.0825,
                          "isExemption": false,
                          "exemptionType": "none",
                          "taxJurisdiction": {
                            "name": "Sales Tax",
                            "level": "Sales Tax",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 8.25
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 47
                        },
                        "characteristic": [
                          {
                            "name": "taxableInd",
                            "value": "X"
                          },
                          {
                            "name": "taxAuditInfo"
                          },
                          {
                            "name": "printGroup"
                          },
                          {
                            "name": "taxOnTaxAmount"
                          },
                          {
                            "name": "SKUSpecificInd",
                            "value": "false"
                          },
                          {
                            "name": "taxGeneralLedgerAccount"
                          },
                          {
                            "name": "displayOrder",
                            "value": "0"
                          },
                          {
                            "name": "percentTaxable",
                            "value": "X"
                          },
                          {
                            "name": "taxCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "taxDate",
                            "value": "2025-04-09T01:01:01"
                          },
                          {
                            "name": "impositionType"
                          },
                          {
                            "name": "geoCodeInfo"
                          },
                          {
                            "name": "taxLineID",
                            "value": "1"
                          },
                          {
                            "name": "imposition"
                          },
                          {
                            "name": "taxCategoryCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "revenueBase"
                          },
                          {
                            "name": "memoGL",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "shipToTaxAreaID",
                            "value": "440851940"
                          },
                          {
                            "name": "shipFromTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableCost",
                            "value": "47.0"
                          },
                          {
                            "name": "orderTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableMSRP",
                            "value": "99.95"
                          }
                        ],
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "immediatePayOption": {
                    "payImmediately": true
                  },
                  "taxIncluded": "Included",
                  "role": "DueUponFulfillment"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "OC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99.95
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 108.2
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 8.25
                    },
                    "appliedTax": [
                      {
                        "taxDefinition": {
                          "name": "Sales Tax",
                          "taxRate": 0.0825,
                          "isExemption": false,
                          "exemptionType": "none",
                          "taxJurisdiction": {
                            "name": "Sales Tax",
                            "level": "Sales Tax",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 8.25
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 47
                        },
                        "characteristic": [
                          {
                            "name": "taxableInd",
                            "value": "X"
                          },
                          {
                            "name": "taxAuditInfo"
                          },
                          {
                            "name": "printGroup"
                          },
                          {
                            "name": "taxOnTaxAmount"
                          },
                          {
                            "name": "SKUSpecificInd",
                            "value": "false"
                          },
                          {
                            "name": "taxGeneralLedgerAccount"
                          },
                          {
                            "name": "displayOrder",
                            "value": "0"
                          },
                          {
                            "name": "percentTaxable",
                            "value": "X"
                          },
                          {
                            "name": "taxCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "taxDate",
                            "value": "2025-04-09T01:01:01"
                          },
                          {
                            "name": "impositionType"
                          },
                          {
                            "name": "geoCodeInfo"
                          },
                          {
                            "name": "taxLineID",
                            "value": "1"
                          },
                          {
                            "name": "imposition"
                          },
                          {
                            "name": "taxCategoryCode",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "revenueBase"
                          },
                          {
                            "name": "memoGL",
                            "value": "SALESTAX"
                          },
                          {
                            "name": "shipToTaxAreaID",
                            "value": "440851940"
                          },
                          {
                            "name": "shipFromTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableCost",
                            "value": "47.0"
                          },
                          {
                            "name": "orderTaxAreaID",
                            "value": "390950000"
                          },
                          {
                            "name": "taxableMSRP",
                            "value": "99.95"
                          }
                        ],
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 99.95
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 108.2
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 8.25
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": true
                  }
                }
              ],
              "product": {
                "productCharacteristic": [
                  {
                    "name": "billingCode",
                    "value": "4954R"
                  },
                  {
                    "name": "priceType",
                    "value": "OC"
                  },
                  {
                    "name": "productKey",
                    "value": "prod10900234"
                  },
                  {
                    "name": "sku",
                    "value": "sku2840232"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "Indirect_Delivery_Shipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "nextDayDeliveryShipping"
                  },
                  {
                    "name": "Delivery_Method",
                    "value": "Pick_In_Store"
                  }
                ]
              },
              "productOffering": {
                "id": "Mobile_Accessory_prod10900234_sku2840232",
                "name": "JBL Endurance Peak 3 True Wireless - Black",
                "productOfferingType": "Mobile_Accessory",
                "productOfferingGroup": "CT_Mobility"
              },
              "creationDate": "2025-04-09T17:15:02.209Z"
            }
          ],
          "relatedParty": [
            {
              "id": "54011900-65c4-494c-l935-1j9965596d98",
              "role": "Profile",
              "extensions": [
                {
                  "name": "user-type",
                  "value": "anonymous"
                },
                {
                  "name": "zipCode",
                  "value": "75072"
                }
              ]
            }
          ],
          "state": "inProgress",
          "@type": "DEFAULT",
          "validation": {
            "readyToCheckout": true
          }
        }
      },
      "Mobile_Accessory_Request": {
        "value": {
          "items": [
            {
              "itemType": "Mobile_Accessory",
              "offerId": "Mobile_Accessory_prod10900234_sku2840232",
              "quantity": 1
            }
          ]
        }
      },
      "Mobile_Accessory_Multi_Request": {
        "value": {
          "items": [
            {
              "itemType": "Mobile_Accessory",
              "offerId": "Mobile_Accessory_prod10900234_sku2840232",
              "quantity": 2
            }
          ]
        }
      },
      "Standalone_TLG_wireless_AAL_Device_Sim_TradeIn_Request": {
        "value": {
          "items": [
            {
              "itemType": "Mobile_Device",
              "offerId": "Mobile_Device_prod32812_sku32812v13",
              "quantity": 1,
              "billingAccount": {
                "id": 177084428124,
                "ratingType": "postpaid",
                "characteristic": [
                  {
                    "name": "System_of_Record",
                    "value": "TLG"
                  }
                ]
              },
              "characteristic": [
                {
                  "name": "commitmentTerm",
                  "value": "NE36MNUP"
                },
                {
                  "name": "commitmentTermId",
                  "value": "10300001"
                },
                {
                  "name": "contractLength",
                  "value": "36"
                },
                {
                  "name": "contractType",
                  "value": "monthly"
                }
              ]
            },
            {
              "itemType": "SIM",
              "offerId": "Mobile_Sim_27100010_27100010-sku9350228",
              "quantity": 1,
              "billingAccount": {
                "id": 177084428124,
                "ratingType": "postpaid",
                "characteristic": [
                  {
                    "name": "System_of_Record",
                    "value": "TLG"
                  }
                ]
              }
            },
            {
              "itemType": "Mobile_TradeIn_Device",
              "offerId": "Mobile_TradeIn_Device_1000IPH16V4IDP_29963",
              "quantity": 1,
              "billingAccount": {
                "id": 177084428124,
                "ratingType": "postpaid",
                "characteristic": [
                  {
                    "name": "System_of_Record",
                    "value": "TLG"
                  }
                ]
              },
              "characteristic": [
                {
                  "name": "POWER_ON",
                  "value": "Y"
                },
                {
                  "name": "LCD_FUNCTIONALITY",
                  "value": "Y"
                },
                {
                  "name": "DEACTIVATED",
                  "value": "Y"
                },
                {
                  "name": "NO_DAMAGE",
                  "value": "Y"
                },
                {
                  "name": "exchangeType",
                  "value": "HYLA"
                },
                {
                  "name": "modelCode",
                  "value": "2440094"
                },
                {
                  "name": "modelPrice",
                  "value": 420
                },
                {
                  "name": "make",
                  "value": "Apple"
                },
                {
                  "name": "model",
                  "value": "iPhone 15 Pro Max"
                },
                {
                  "name": "productImageURL",
                  "value": "https://s3.amazonaws.com/erp-prod/ORAPRD2/12420179-2440094-5145330.jpg"
                },
                {
                  "name": "capacity",
                  "value": "256GB"
                }
              ]
            }
          ]
        }
      },
      "Standalone_TLG_wireless_AAL_Device_Sim_TurnIn_Request": {
        "value": {
          "items": [
            {
              "itemType": "Mobile_Device",
              "offerId": "Mobile_Device_prod32812_sku32812v13",
              "quantity": 1,
              "billingAccount": {
                "id": 177084428124,
                "ratingType": "postpaid",
                "characteristic": [
                  {
                    "name": "System_of_Record",
                    "value": "TLG"
                  }
                ]
              },
              "characteristic": [
                {
                  "name": "commitmentTerm",
                  "value": "NE36MNUP"
                },
                {
                  "name": "commitmentTermId",
                  "value": "10300001"
                },
                {
                  "name": "contractLength",
                  "value": "36"
                },
                {
                  "name": "contractType",
                  "value": "monthly"
                }
              ]
            },
            {
              "itemType": "SIM",
              "offerId": "Mobile_Sim_27100010_27100010-sku9350228",
              "quantity": 1,
              "billingAccount": {
                "id": 177084428124,
                "ratingType": "postpaid",
                "characteristic": [
                  {
                    "name": "System_of_Record",
                    "value": "TLG"
                  }
                ]
              }
            },
            {
              "itemType": "Mobile_TradeIn_Device",
              "offerId": "Mobile_TradeIn_Device_1000IPH16V4IDP_29963",
              "quantity": 1,
              "billingAccount": {
                "id": 177084428124,
                "ratingType": "postpaid",
                "characteristic": [
                  {
                    "name": "System_of_Record",
                    "value": "TLG"
                  }
                ]
              },
              "characteristic": [
                {
                  "name": "exchangeType",
                  "value": "NUG"
                },
                {
                  "name": "imei",
                  "value": "XXX"
                },
                {
                  "name": "make",
                  "value": "Apple"
                },
                {
                  "name": "model",
                  "value": "iPhone 15 Pro Max"
                },
                {
                  "name": "productImageURL",
                  "value": "https://s3.amazonaws.com/erp-prod/ORAPRD2/12420179-2440094-5145330.jpg"
                }
              ]
            }
          ]
        }
      },
      "Standalone_TLG_wireless_AAL_Plan_Request": {
        "value": {
          "items": [
            {
              "itemType": "Mobile_Offer",
              "quantity": 1,
              "offerId": "Mobile_Offer_prod10690221_prod12010230",
              "rootBundleProductOrderItemId": "68b5a165-b16b-4f49-bb6a-d37be3305135",
              "billingAccount": {
                "ratingType": "postpaid",
                "id": "177084428124",
                "characteristic": [
                  {
                    "name": "System_of_Record",
                    "value": "TLG"
                  }
                ]
              }
            },
            {
              "itemType": "Mobile_Share_Group",
              "rootBundleProductOrderItemId": "68b5a165-b16b-4f49-bb6a-d37be3305135",
              "quantity": 1,
              "offerId": "Mobile_Share_Group_prod10690221_sku10060281",
              "billingAccount": {
                "ratingType": "postpaid",
                "id": "177084428124",
                "characteristic": [
                  {
                    "name": "System_of_Record",
                    "value": "TLG"
                  }
                ]
              },
              "characteristic": [
                {
                  "name": "mobileGroupId",
                  "value": "G16871476"
                }
              ]
            },
            {
              "itemType": "Mobile_Share_Feature",
              "rootBundleProductOrderItemId": "68b5a165-b16b-4f49-bb6a-d37be3305135",
              "quantity": 1,
              "offerId": "Mobile_Share_Feature_prod12010230_sku11590232",
              "billingAccount": {
                "ratingType": "postpaid",
                "id": "177084428124",
                "characteristic": [
                  {
                    "name": "System_of_Record",
                    "value": "TLG"
                  }
                ]
              }
            }
          ]
        }
      },
      "Sample_Response_Users_PUT_200": {
        "value": {
          "id": "b995f470-e15b-11ee-89fc-cdbf0ee2df11",
          "category": "WBB_Offer:Coverage",
          "orderDate": "2024-03-13T17:04:16.695Z",
          "lastUpdate": "2024-03-13T17:07:45.552Z",
          "orderPriceDate": "2024-03-13T17:05:33.367Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "a3CDP000000oJgP2AU"
            }
          ],
          "channel": [
            {
              "id": "SelfService",
              "name": "SelfService",
              "extensions": [
                {
                  "name": "Application",
                  "value": "websales"
                }
              ]
            }
          ],
          "orderTotalPrice": [
            {
              "priceType": "RC",
              "recurringChargePeriod": "month",
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 70
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 71.69
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 1.69
                }
              },
              "priceAlteration": [
                {
                  "priceType": "RC",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 5
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 5.08
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0.08
                    }
                  },
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit"
                }
              ],
              "recurringChargePeriodLength": 1,
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 65
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 66.61
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 1.61
                }
              },
              "immediatePayOption": {
                "payImmediately": false
              }
            }
          ],
          "productOrderItem": [
            {
              "id": "e12a977a-651a-43c1-a202-e2ac9bf7f5e1",
              "quantity": 1,
              "action": "add",
              "billingAccount": {
                "characteristic": [
                  {
                    "name": "autopayIntent",
                    "value": "true"
                  },
                  {
                    "name": "presentationMediaIntent",
                    "value": "email"
                  }
                ]
              },
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 60
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 60.86
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0.86
                    }
                  },
                  "priceAlteration": [
                    {
                      "priceType": "RC",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 5
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 5.08
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0.08
                        }
                      },
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit"
                    }
                  ],
                  "recurringChargePeriodLength": 1,
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 55
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 55.78
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 55
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0.78
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  }
                }
              ],
              "product": {
                "referenceId": "cabc3269-0afe-487d-81a8-37aac05c9a7f",
                "isBundle": true,
                "productRelationship": [
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "cabc3269-0afe-487d-81a8-37aac05c9a7f"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "52165303-5d47-4827-a51c-f7ab08570210",
                "name": "AT&T Internet Air",
                "productOfferingType": "WBB_Offer",
                "productOfferingTypeGroup": "WBBOffer"
              },
              "productOrderItem": [
                {
                  "id": "0706dc0a-2acd-4dc0-a646-949d62a91e64",
                  "quantity": 1,
                  "action": "add",
                  "itemPrice": [
                    {
                      "description": "AT&T Internet Air",
                      "name": "AT&T Internet Air",
                      "priceType": "RC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 60
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 60.86
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0.86
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "TX State Sales Tax",
                              "taxRate": 0.0625,
                              "taxType": "01",
                              "isExemption": false,
                              "exemptionType": "None",
                              "taxJurisdiction": {
                                "name": "12043-TEXAS, STATE OF",
                                "level": "STATE",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0.52
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 8.34
                            },
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          },
                          {
                            "taxDefinition": {
                              "name": "County District Sales Tax",
                              "taxRate": 0.009999999776482582,
                              "taxType": "03",
                              "isExemption": false,
                              "exemptionType": "None",
                              "taxJurisdiction": {
                                "name": "9524-DALLAS METROPOLITAN TRANSIT AUTHORITY",
                                "level": "LOCAL",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0.08
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 8.34
                            },
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          },
                          {
                            "taxDefinition": {
                              "name": "City Sales Tax",
                              "taxRate": 0.009999999776482582,
                              "taxType": "04",
                              "isExemption": false,
                              "exemptionType": "None",
                              "taxJurisdiction": {
                                "name": "7278-RICHARDSON, CITY OF",
                                "level": "CITY",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0.08
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 8.34
                            },
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          },
                          {
                            "taxDefinition": {
                              "name": "TX State Cost Recovery Charge",
                              "taxRate": 0.003502999898046255,
                              "taxType": "23",
                              "isExemption": false,
                              "exemptionType": "None",
                              "taxJurisdiction": {
                                "name": "12043-TEXAS, STATE OF",
                                "level": "STATE",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0.18
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 51.66
                            },
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "SURCHARGE"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 5
                            },
                            "taxIncludedAmount": {
                              "unit": "USD",
                              "value": 5.08
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0.08
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 5
                            },
                            "appliedTax": [
                              {
                                "taxDefinition": {
                                  "name": "TX State Sales Tax",
                                  "taxRate": 0.0625,
                                  "taxType": "01",
                                  "isExemption": false,
                                  "exemptionType": "None",
                                  "taxJurisdiction": {
                                    "name": "12043-TEXAS, STATE OF",
                                    "level": "STATE",
                                    "id": "DUMMY ID"
                                  }
                                },
                                "taxAmount": {
                                  "unit": "USD",
                                  "value": 0.04
                                },
                                "taxableAmount": {
                                  "unit": "USD",
                                  "value": 0.69
                                },
                                "exemptAmount": {
                                  "unit": "USD",
                                  "value": 0
                                },
                                "extensions": {
                                  "Tax": [
                                    {
                                      "key": "printGroup",
                                      "value": "TAX"
                                    }
                                  ]
                                }
                              },
                              {
                                "taxDefinition": {
                                  "name": "County District Sales Tax",
                                  "taxRate": 0.009999999776482582,
                                  "taxType": "03",
                                  "isExemption": false,
                                  "exemptionType": "None",
                                  "taxJurisdiction": {
                                    "name": "9524-DALLAS METROPOLITAN TRANSIT AUTHORITY",
                                    "level": "LOCAL",
                                    "id": "DUMMY ID"
                                  }
                                },
                                "taxAmount": {
                                  "unit": "USD",
                                  "value": 0.01
                                },
                                "taxableAmount": {
                                  "unit": "USD",
                                  "value": 0.69
                                },
                                "exemptAmount": {
                                  "unit": "USD",
                                  "value": 0
                                },
                                "extensions": {
                                  "Tax": [
                                    {
                                      "key": "printGroup",
                                      "value": "TAX"
                                    }
                                  ]
                                }
                              },
                              {
                                "taxDefinition": {
                                  "name": "City Sales Tax",
                                  "taxRate": 0.009999999776482582,
                                  "taxType": "04",
                                  "isExemption": false,
                                  "exemptionType": "None",
                                  "taxJurisdiction": {
                                    "name": "7278-RICHARDSON, CITY OF",
                                    "level": "CITY",
                                    "id": "DUMMY ID"
                                  }
                                },
                                "taxAmount": {
                                  "unit": "USD",
                                  "value": 0.01
                                },
                                "taxableAmount": {
                                  "unit": "USD",
                                  "value": 0.69
                                },
                                "exemptAmount": {
                                  "unit": "USD",
                                  "value": 0
                                },
                                "extensions": {
                                  "Tax": [
                                    {
                                      "key": "printGroup",
                                      "value": "TAX"
                                    }
                                  ]
                                }
                              },
                              {
                                "taxDefinition": {
                                  "name": "TX State Cost Recovery Charge",
                                  "taxRate": 0.003502999898046255,
                                  "taxType": "23",
                                  "isExemption": false,
                                  "exemptionType": "None",
                                  "taxJurisdiction": {
                                    "name": "12043-TEXAS, STATE OF",
                                    "level": "STATE",
                                    "id": "DUMMY ID"
                                  }
                                },
                                "taxAmount": {
                                  "unit": "USD",
                                  "value": 0.02
                                },
                                "taxableAmount": {
                                  "unit": "USD",
                                  "value": 4.31
                                },
                                "exemptAmount": {
                                  "unit": "USD",
                                  "value": 0
                                },
                                "extensions": {
                                  "Tax": [
                                    {
                                      "key": "printGroup",
                                      "value": "SURCHARGE"
                                    }
                                  ]
                                }
                              }
                            ]
                          },
                          "alterationType": "Promotion Price Alteration",
                          "immediatePromotionId": "ImmediatePromotion_fadff50f-2822-48c5-9625-0136008eee50",
                          "chargeType": "credit"
                        }
                      ],
                      "recurringChargePeriodLength": 1,
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 55
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 55.78
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 55
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0.78
                        },
                        "appliedTax": [
                          {
                            "taxDefinition": {
                              "name": "TX State Sales Tax",
                              "taxRate": 0.0625,
                              "taxType": "01",
                              "isExemption": false,
                              "exemptionType": "None",
                              "taxJurisdiction": {
                                "name": "12043-TEXAS, STATE OF",
                                "level": "STATE",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0.48
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 7.65
                            },
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          },
                          {
                            "taxDefinition": {
                              "name": "County District Sales Tax",
                              "taxRate": 0.009999999776482582,
                              "taxType": "03",
                              "isExemption": false,
                              "exemptionType": "None",
                              "taxJurisdiction": {
                                "name": "9524-DALLAS METROPOLITAN TRANSIT AUTHORITY",
                                "level": "LOCAL",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0.07
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 7.65
                            },
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          },
                          {
                            "taxDefinition": {
                              "name": "City Sales Tax",
                              "taxRate": 0.009999999776482582,
                              "taxType": "04",
                              "isExemption": false,
                              "exemptionType": "None",
                              "taxJurisdiction": {
                                "name": "7278-RICHARDSON, CITY OF",
                                "level": "CITY",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0.07
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 7.65
                            },
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "TAX"
                                }
                              ]
                            }
                          },
                          {
                            "taxDefinition": {
                              "name": "TX State Cost Recovery Charge",
                              "taxRate": 0.003502999898046255,
                              "taxType": "23",
                              "isExemption": false,
                              "exemptionType": "None",
                              "taxJurisdiction": {
                                "name": "12043-TEXAS, STATE OF",
                                "level": "STATE",
                                "id": "DUMMY ID"
                              }
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0.16
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 47.35
                            },
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "printGroup",
                                  "value": "SURCHARGE"
                                }
                              ]
                            }
                          }
                        ]
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      },
                      "taxIncluded": "Excluded",
                      "role": "Price"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "priceType": "RC",
                      "recurringChargePeriod": "month",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 60
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 60.86
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0.86
                        }
                      },
                      "priceAlteration": [
                        {
                          "priceType": "RC",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 5
                            },
                            "taxIncludedAmount": {
                              "unit": "USD",
                              "value": 5.08
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0.08
                            }
                          },
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit"
                        }
                      ],
                      "recurringChargePeriodLength": 1,
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 55
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 55.78
                        },
                        "marketingAmount": {
                          "unit": "USD",
                          "value": 55
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0.78
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      }
                    }
                  ],
                  "product": {
                    "referenceId": "38debd05-df9b-4033-9821-7ef43e2b6aab",
                    "place": [
                      {
                        "id": "00000DPO9E",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "bundled",
                        "product": {
                          "referenceId": "66f7edf3-5007-481d-ab60-b7f6eb3240f6",
                          "productSpecification": {
                            "id": "19e22569-dafc-4c25-b3fd-80724f32c262",
                            "name": "Voice",
                            "productSpecificationType": "ff16d2b8f0124bd5943d6b53c2bb91f3"
                          }
                        }
                      },
                      {
                        "relationshipType": "bundled",
                        "product": {
                          "referenceId": "295f070c-297d-4978-b56b-e5eaa9955998",
                          "productSpecification": {
                            "id": "159cbcd5-dfc8-4e3f-923a-b7364c31600f",
                            "name": "Messaging",
                            "productSpecificationType": "ff16d2b8f0124bd5943d6b53c2bb91f3"
                          }
                        }
                      },
                      {
                        "relationshipType": "bundled",
                        "product": {
                          "referenceId": "3582e497-d47f-497b-a7ac-fd930400789f",
                          "productCharacteristic": [
                            {
                              "name": "Product_Type",
                              "value": "WBB"
                            },
                            {
                              "name": "Phone_Number"
                            },
                            {
                              "name": "Resource_Category",
                              "value": "Standard"
                            }
                          ],
                          "productRelationship": [
                            {
                              "relationshipType": "enabledBy",
                              "product": {
                                "referenceId": "38debd05-df9b-4033-9821-7ef43e2b6aab"
                              }
                            }
                          ],
                          "productSpecification": {
                            "id": "fa27ef86-8845-43e3-b796-e2746061276e",
                            "name": "Phone Number",
                            "productSpecificationType": "624cab5783844806b863fbd2d44816de"
                          }
                        }
                      },
                      {
                        "relationshipType": "bundled",
                        "product": {
                          "referenceId": "fd2ec729-062b-4d35-b9fc-f8c4e27d9354",
                          "productSpecification": {
                            "id": "9565a59d-bbb8-48dd-baa7-e5ad75d1c85f",
                            "name": "Data",
                            "productSpecificationType": "ff16d2b8f0124bd5943d6b53c2bb91f3"
                          }
                        }
                      },
                      {
                        "relationshipType": "enabledBy",
                        "product": {
                          "referenceId": "38debd05-df9b-4033-9821-7ef43e2b6aab"
                        }
                      },
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "cabc3269-0afe-487d-81a8-37aac05c9a7f"
                        }
                      }
                    ],
                    "productSpecification": {
                      "id": "c430db80-e8ae-4cdc-8549-aeb3422f4048",
                      "name": "WBB Data Only",
                      "productSpecificationType": "9232a535673642e5877d8ef0a02830a4"
                    }
                  },
                  "productOffering": {
                    "id": "0de8cea7-1d0e-421e-8d7f-8c01b32a173a",
                    "name": "AT&T Internet Air",
                    "productOfferingType": "WBB_Plan",
                    "productOfferingTypeGroup": "WBBPlan"
                  },
                  "characteristic": [
                    {
                      "name": "Payment_Type",
                      "value": "Pay_on_Bill"
                    },
                    {
                      "name": "productType",
                      "value": "WBB"
                    }
                  ]
                },
                {
                  "id": "20b63eb5-cb8f-4e9a-9c4b-5962490dada3",
                  "quantity": 1,
                  "action": "add",
                  "product": {
                    "referenceId": "65c3ddb4-f37b-44fc-95c3-c15f34861ee4",
                    "place": [
                      {
                        "id": "00000DPO9E",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "SIM_Type",
                        "value": "cSIM"
                      },
                      {
                        "name": "Delivery_Method",
                        "value": "Indirect_Delivery_Shipping"
                      },
                      {
                        "name": "Installation_Method",
                        "value": "Self_Installation"
                      },
                      {
                        "name": "Return_Method",
                        "value": "Return_by_box_Shipment"
                      },
                      {
                        "name": "Recoverable_Disconnect",
                        "value": "RECOVERABLE"
                      },
                      {
                        "name": "SKU_With_Prefix",
                        "value": "RTL.200AA"
                      },
                      {
                        "name": "Sub_Group",
                        "value": "HUB3"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "cabc3269-0afe-487d-81a8-37aac05c9a7f"
                        }
                      }
                    ],
                    "productSpecification": {
                      "id": "17621712-c142-4ae5-addb-e120a3ae66db",
                      "name": "All-Fi Hub",
                      "productSpecificationType": "0a12bfd7-06a3-47bc-bee6-6f66cce7fa13"
                    }
                  },
                  "productOffering": {
                    "id": "417df8e3-2026-455b-aa79-03d3545e7f6d",
                    "name": "All-Fi Hub",
                    "productOfferingType": "Rented_Equipment",
                    "productOfferingTypeGroup": "equipment"
                  },
                  "productOfferingGroupOption": {
                    "groupOptionId": "0cb38e74-81cf-11ec-9599-bd9f77ca6a1e"
                  },
                  "characteristic": [
                    {
                      "name": "Available_Shipping_Options",
                      "value": "Standard_Post"
                    },
                    {
                      "name": "Purchase_Option",
                      "value": "Rent"
                    },
                    {
                      "name": "Return_Shipment_Option",
                      "value": "Standard_Post"
                    },
                    {
                      "name": "productType",
                      "value": "WBB"
                    }
                  ]
                }
              ],
              "characteristic": [
                {
                  "name": "Auto_Pay_Enrollment",
                  "value": "Y"
                },
                {
                  "name": "chargebackEligible",
                  "value": "0"
                },
                {
                  "name": "Payment_Type",
                  "value": "Pay_on_Bill"
                },
                {
                  "name": "commissionable",
                  "value": "0"
                },
                {
                  "name": "ACP_Type",
                  "value": "DEENROLLED"
                }
              ]
            },
            {
              "id": "7fa45e18-89b3-4c01-843c-72d86aaee72e",
              "quantity": 1,
              "action": "add",
              "itemPrice": [
                {
                  "description": "Extended Wi-Fi Coverage Service",
                  "name": "Extended Wi-Fi Coverage Service",
                  "priceType": "RC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 10
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 10.83
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0.83
                    },
                    "appliedTax": [
                      {
                        "taxDefinition": {
                          "name": "TX State Sales Tax",
                          "taxRate": 0.0625,
                          "taxType": "01",
                          "isExemption": false,
                          "exemptionType": "None",
                          "taxJurisdiction": {
                            "name": "12043-TEXAS, STATE OF",
                            "level": "STATE",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0.63
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 10
                        },
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      },
                      {
                        "taxDefinition": {
                          "name": "County District Sales Tax",
                          "taxRate": 0.009999999776482582,
                          "taxType": "03",
                          "isExemption": false,
                          "exemptionType": "None",
                          "taxJurisdiction": {
                            "name": "9524-DALLAS METROPOLITAN TRANSIT AUTHORITY",
                            "level": "LOCAL",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0.1
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 10
                        },
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      },
                      {
                        "taxDefinition": {
                          "name": "City Sales Tax",
                          "taxRate": 0.009999999776482582,
                          "taxType": "04",
                          "isExemption": false,
                          "exemptionType": "None",
                          "taxJurisdiction": {
                            "name": "7278-RICHARDSON, CITY OF",
                            "level": "CITY",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0.1
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 10
                        },
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "recurringChargePeriodLength": 1,
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 10
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 10.83
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0.83
                    },
                    "appliedTax": [
                      {
                        "taxDefinition": {
                          "name": "TX State Sales Tax",
                          "taxRate": 0.0625,
                          "taxType": "01",
                          "isExemption": false,
                          "exemptionType": "None",
                          "taxJurisdiction": {
                            "name": "12043-TEXAS, STATE OF",
                            "level": "STATE",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0.63
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 10
                        },
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      },
                      {
                        "taxDefinition": {
                          "name": "County District Sales Tax",
                          "taxRate": 0.009999999776482582,
                          "taxType": "03",
                          "isExemption": false,
                          "exemptionType": "None",
                          "taxJurisdiction": {
                            "name": "9524-DALLAS METROPOLITAN TRANSIT AUTHORITY",
                            "level": "LOCAL",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0.1
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 10
                        },
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      },
                      {
                        "taxDefinition": {
                          "name": "City Sales Tax",
                          "taxRate": 0.009999999776482582,
                          "taxType": "04",
                          "isExemption": false,
                          "exemptionType": "None",
                          "taxJurisdiction": {
                            "name": "7278-RICHARDSON, CITY OF",
                            "level": "CITY",
                            "id": "DUMMY ID"
                          }
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0.1
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 10
                        },
                        "extensions": {
                          "Tax": [
                            {
                              "key": "printGroup",
                              "value": "TAX"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  },
                  "taxIncluded": "Excluded",
                  "role": "Price"
                }
              ],
              "itemTotalPrice": [
                {
                  "priceType": "RC",
                  "recurringChargePeriod": "month",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 10
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 10.83
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0.83
                    }
                  },
                  "recurringChargePeriodLength": 1,
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 10
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 10.83
                    },
                    "marketingAmount": {
                      "unit": "USD",
                      "value": 10
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0.83
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  }
                }
              ],
              "product": {
                "referenceId": "9916af16-fc34-4b91-ba3e-2560040dc7b9",
                "place": [
                  {
                    "id": "00000DPO9E",
                    "name": "ServiceAddress",
                    "role": "SA"
                  }
                ],
                "productRelationship": [
                  {
                    "relationshipType": "commercialRelation",
                    "relationshipSubtype": "94fe0227-ab56-45c2-b124-5fd49d570142",
                    "product": {
                      "id": "e12a977a-651a-43c1-a202-e2ac9bf7f5e1",
                      "referenceId": "cabc3269-0afe-487d-81a8-37aac05c9a7f"
                    }
                  },
                  {
                    "relationshipType": "subscriptionRelation",
                    "product": {
                      "referenceId": "cabc3269-0afe-487d-81a8-37aac05c9a7f"
                    }
                  }
                ]
              },
              "productOffering": {
                "id": "63fd411b-9ba8-484b-bba5-52797f4c26a1",
                "name": "Extended Wi-Fi Coverage Service",
                "productOfferingType": "Coverage",
                "productOfferingTypeGroup": "addon"
              },
              "productOrderItem": [
                {
                  "id": "7f057aac-2095-454a-9acc-96d0578d830d",
                  "quantity": 1,
                  "action": "add",
                  "product": {
                    "referenceId": "7d546cde-5cc0-4ed3-8074-e2032c668883",
                    "place": [
                      {
                        "id": "00000DPO9E",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Delivery_Method",
                        "value": "Indirect_Delivery_Shipping"
                      },
                      {
                        "name": "Installation_Method",
                        "value": "Self_Installation"
                      },
                      {
                        "name": "Return_Method",
                        "value": "Return_by_box_Shipment"
                      },
                      {
                        "name": "Recoverable_Disconnect",
                        "value": "RECOVERABLE"
                      },
                      {
                        "name": "SKU_With_Prefix",
                        "value": "RTL.202AA"
                      },
                      {
                        "name": "Sub_Group",
                        "value": "BOOSTER3"
                      }
                    ],
                    "productRelationship": [
                      {
                        "relationshipType": "enabledBy",
                        "product": {
                          "referenceId": "38debd05-df9b-4033-9821-7ef43e2b6aab"
                        }
                      },
                      {
                        "relationshipType": "subscriptionRelation",
                        "product": {
                          "referenceId": "cabc3269-0afe-487d-81a8-37aac05c9a7f"
                        }
                      }
                    ],
                    "productSpecification": {
                      "id": "5a7aaa02-1a18-47fd-927b-5a74cba7f32b",
                      "name": "All-Fi Booster",
                      "productSpecificationType": "12d24ab7-46d4-46ce-a49b-7c2528a6bce5"
                    }
                  },
                  "productOffering": {
                    "id": "31f4774c-3ad1-4cb5-8413-450d06a4d49b",
                    "name": "All-Fi Booster",
                    "productOfferingType": "Equipment",
                    "productOfferingTypeGroup": "BBDevice"
                  },
                  "productOfferingGroupOption": {
                    "groupOptionId": "482dd825-81cf-11ec-9599-99edba8abb8c"
                  },
                  "characteristic": [
                    {
                      "name": "Available_Shipping_Options",
                      "value": "Standard_Post"
                    },
                    {
                      "name": "Purchase_Option",
                      "value": "Rent"
                    },
                    {
                      "name": "Return_Shipment_Option",
                      "value": "Standard_Post"
                    },
                    {
                      "name": "productType",
                      "value": "WBB"
                    }
                  ]
                }
              ],
              "characteristic": [
                {
                  "name": "chargebackEligible",
                  "value": "0"
                },
                {
                  "name": "Payment_Type",
                  "value": "Pay_on_Bill"
                },
                {
                  "name": "commissionable",
                  "value": "0"
                },
                {
                  "name": "productType",
                  "value": "WBB"
                }
              ]
            }
          ],
          "relatedParty": [
            {
              "role": "customer",
              "extensions": [
                {
                  "name": "CustomerType",
                  "value": "Consumer"
                },
                {
                  "name": "CustomerSubType",
                  "value": "Individual"
                }
              ]
            },
            {
              "id": "fc39ba20-0899-4d00-8460-8f51b1ef5cc5",
              "role": "Profile",
              "extensions": [
                {
                  "name": "anonymousId",
                  "value": "557414667"
                }
              ]
            }
          ],
          "state": "inProgress",
          "@type": "DEFAULT",
          "immediatePromotion": [
            {
              "id": "ImmediatePromotion_fadff50f-2822-48c5-9625-0136008eee50",
              "status": "add",
              "state": "applied",
              "promotion": {
                "id": "d4004905-45ef-49a5-8313-b1ede9a68c42",
                "name": "$5 off with AutoPay and Paperless Bill",
                "description": "Includes $5 off with AutoPay and Paperless Bill",
                "validFor": {
                  "endDateTime": "2033-12-26T12:59:39.898Z",
                  "startDateTime": "2022-11-06T06:00:00.000Z"
                },
                "type": "discount",
                "applyPolicy": "automatic"
              },
              "triggerItem": [
                {
                  "id": "e12a977a-651a-43c1-a202-e2ac9bf7f5e1",
                  "itemType": "order",
                  "promotionCriteriaGroupId": "f97a7775-bc2d-45f8-9709-2519cba408b7",
                  "itemStatus": "add",
                  "pathToRoot": "/e12a977a-651a-43c1-a202-e2ac9bf7f5e1"
                },
                {
                  "id": "0706dc0a-2acd-4dc0-a646-949d62a91e64",
                  "itemType": "order",
                  "promotionCriteriaGroupId": "a5dfbbe1-aad2-4714-b532-0aa2af3d237f",
                  "itemStatus": "add",
                  "pathToRoot": "/e12a977a-651a-43c1-a202-e2ac9bf7f5e1/0706dc0a-2acd-4dc0-a646-949d62a91e64"
                }
              ],
              "benefitItem": [
                {
                  "id": "0706dc0a-2acd-4dc0-a646-949d62a91e64",
                  "itemType": "order",
                  "promotionCriteriaGroupId": "a5dfbbe1-aad2-4714-b532-0aa2af3d237f",
                  "itemStatus": "add",
                  "pathToRoot": "/e12a977a-651a-43c1-a202-e2ac9bf7f5e1/0706dc0a-2acd-4dc0-a646-949d62a91e64",
                  "action": [
                    {
                      "id": "38b10a6a-d7d4-4e87-aead-b29dc7aa2098",
                      "name": "Discount",
                      "actionType": "priceAlteration",
                      "actionValue": 1,
                      "promotionPriceAlteration": {
                        "id": "e4dd1dc9-933c-45df-8953-3ef3c63722c8"
                      }
                    }
                  ]
                }
              ],
              "immediatePromotionCharacteristic": [
                {
                  "name": "benefitedMainSubscriber",
                  "contextType": "referenceId",
                  "value": [
                    "cabc3269-0afe-487d-81a8-37aac05c9a7f"
                  ]
                },
                {
                  "name": "promoRolledupDispInd",
                  "contextType": "custom",
                  "value": [
                    "Yes"
                  ]
                }
              ]
            }
          ],
          "validation": {
            "status": "Success",
            "readyToCheckout": true
          }
        }
      },
      "Sample_Response_Retrieve_Cart_PUT_200": {
        "value": {
          "@type": "DEFAULT",
          "agreement": [
            {
              "extensions": [
                {
                  "name": "TermsandConditionsAcceptance",
                  "value": "Y"
                },
                {
                  "name": "TermsandConditionsVersion",
                  "value": "v5"
                },
                {
                  "name": "TermsandConditionsAcceptanceDate",
                  "value": "2022-03-23T11:38:46.421Z"
                },
                {
                  "name": "TermsandConditionsContentCategory",
                  "value": "TnC"
                },
                {
                  "name": "TermsandConditionsKey",
                  "value": "ECONSENT"
                },
                {
                  "name": "TermsandConditionsConsentText",
                  "value": "I have read and agree to the Consent to Electronic Delivery of Disclosures and Communications"
                }
              ],
              "name": "ECONSENT"
            },
            {
              "extensions": [
                {
                  "name": "TermsandConditionsVersion",
                  "value": "v4"
                },
                {
                  "name": "TermsandConditionsAcceptance",
                  "value": "Y"
                },
                {
                  "name": "TermsandConditionsConsentText",
                  "value": "I have read and agree to the AT&T Consumer Service Agreement and the included provisions for binding individual arbitration."
                },
                {
                  "name": "TermsandConditionsAcceptanceDate",
                  "value": "2022-03-23T11:38:46.421Z"
                },
                {
                  "name": "TermsandConditionsContentCategory",
                  "value": "TnC"
                },
                {
                  "name": "TermsandConditionsKey",
                  "value": "CSA"
                }
              ],
              "name": "CSA"
            },
            {
              "extensions": [
                {
                  "name": "TermsandConditionsKey",
                  "value": "PAPERLESS_DISCLOSURE"
                },
                {
                  "name": "TermsandConditionsAcceptance",
                  "value": "Y"
                },
                {
                  "name": "TermsandConditionsContentCategory",
                  "value": "Disclosure"
                },
                {
                  "name": "TermsandConditionsVersion",
                  "value": "v1"
                },
                {
                  "name": "TermsandConditionsAcceptanceDate",
                  "value": "2022-03-23T11:38:46.421Z"
                },
                {
                  "name": "TermsandConditionsConsentText",
                  "value": "<empty/>"
                }
              ],
              "name": "PAPERLESS_DISCLOSURE"
            },
            {
              "extensions": [
                {
                  "name": "TermsandConditionsAcceptance",
                  "value": "Y"
                },
                {
                  "name": "TermsandConditionsConsentText",
                  "value": "NA"
                },
                {
                  "name": "TermsandConditionsKey",
                  "value": "AE"
                },
                {
                  "name": "TermsandConditionsAcceptanceDate",
                  "value": "2022-03-23T11:38:46.421Z"
                },
                {
                  "name": "TermsandConditionsContentCategory",
                  "value": "TnC"
                },
                {
                  "name": "TermsandConditionsVersion",
                  "value": "NA"
                }
              ],
              "name": "AE"
            }
          ],
          "category": "WBB_Offer",
          "channel": [
            {
              "id": "SelfService",
              "name": "SelfService",
              "role": "Customer"
            }
          ],
          "externalId": "24-248035274711460",
          "id": "97da50d0-aa9c-11ec-818f-01c49e663c0c",
          "immediatePromotion": [
            {
              "id": "b54980e8-46b1-4347-91af-6f913e7396f4",
              "promotion": {
                "applyPolicy": "automatic",
                "description": "$5 off for customer maintaining AutoPay",
                "id": "a61be2e9-1cd9-4086-bf38-d760dafe7deb",
                "name": "$5 off for Autopay - WBB5DABP"
              }
            }
          ],
          "lastUpdate": "2022-03-23T11:35:20.000Z",
          "orderDate": "2022-03-23T11:38:58.000Z",
          "orderExtensions": [
            {
              "name": "idpctx-session-id",
              "value": "zz5Hi54VV9cnckA0mYLh_NK4MUt9sdZV0gvWdoghvfA"
            },
            {
              "name": "application",
              "value": "CAAS"
            }
          ],
          "orderTotalPrice": [
            {
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 45
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 45
                }
              },
              "immediatePayOption": {
                "payImmediately": false
              },
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 50
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 50
                }
              },
              "priceAlteration": [
                {
                  "alterationType": "Promotion Price Alteration",
                  "chargeType": "credit",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 5
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 5
                    }
                  },
                  "priceType": "RC"
                }
              ],
              "priceType": "RC",
              "recurringChargePeriod": "month",
              "recurringChargePeriodLength": 1
            },
            {
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "immediatePayOption": {
                "payImmediately": false
              },
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "priceType": "OC"
            },
            {
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "immediatePayOption": {
                "payImmediately": true
              },
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "priceType": "Immediate"
            },
            {
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "immediatePayOption": {
                "payImmediately": true
              },
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxAmount": {
                  "unit": "USD",
                  "value": 0
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 0
                }
              },
              "priceType": "OC"
            },
            {
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 100
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 100
                }
              },
              "immediatePayOption": {
                "payImmediately": true,
                "payOption": "Mandatory"
              },
              "price": {
                "dutyFreeAmount": {
                  "unit": "USD",
                  "value": 100
                },
                "taxIncludedAmount": {
                  "unit": "USD",
                  "value": 100
                }
              },
              "priceType": "OC",
              "role": "ADVPAY"
            }
          ],
          "payment": [
            {
              "amount": {
                "unit": "USD"
              },
              "characteristic": [
                {
                  "name": "ownerType",
                  "value": "Customer"
                }
              ],
              "id": "RTB,XX,b012b9f7-73fd-403e-aa21-08903b2dc727,24-248035274711460",
              "role": "autopay"
            }
          ],
          "productOrderItem": [
            {
              "action": "add",
              "billingAccount": {
                "@type": "billingAccount",
                "id": "552912021473"
              },
              "id": "74edc45c-6cd2-4553-94b6-9e4f97553208",
              "itemPrice": [
                {
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 100
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 100
                    }
                  },
                  "id": "PO_ITEM_ID_ADVPAY_01",
                  "immediatePayOption": {
                    "payImmediately": true,
                    "payOption": "Mandatory"
                  },
                  "name": "Advanced Pay",
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 100
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 100
                    }
                  },
                  "priceType": "OC",
                  "role": "ADVPAY"
                }
              ],
              "itemTotalPrice": [
                {
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 45
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 45
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 50
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 50
                    }
                  },
                  "priceAlteration": [
                    {
                      "alterationType": "Promotion Price Alteration",
                      "chargeType": "credit",
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 5
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 5
                        }
                      },
                      "priceType": "RC"
                    }
                  ],
                  "priceType": "RC",
                  "recurringChargePeriod": "month",
                  "recurringChargePeriodLength": 1
                },
                {
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 100
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 100
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": true,
                    "payOption": "Mandatory"
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 100
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 100
                    }
                  },
                  "priceType": "OC",
                  "role": "ADVPAY"
                }
              ],
              "payment": [
                {
                  "amount": {
                    "unit": "USD",
                    "value": 100
                  },
                  "authorizationCode": "OL_DF191111F23393",
                  "characteristic": [
                    {
                      "name": "ownerType",
                      "value": "Customer"
                    }
                  ],
                  "id": "RTB,XX,b012b9f7-73fd-403e-aa21-08903b2dc727,24-248035274711460",
                  "role": "ADVPAY"
                }
              ],
              "product": {
                "isBundle": true,
                "productRelationship": [
                  {
                    "product": {
                      "referenceId": "58f13731-d318-4eca-b354-4695fe4cd237"
                    },
                    "relationshipType": "subscriptionRelation"
                  },
                  {
                    "product": {
                      "referenceId": "d66c7b39-d14e-4a52-b282-ee252c8a8af9"
                    },
                    "relationshipType": "subscriptionRelation"
                  },
                  {
                    "product": {
                      "referenceId": "641d03a5-a721-41c1-87e8-7c9c4b27fdfa"
                    },
                    "relationshipType": "subscriptionRelation"
                  },
                  {
                    "product": {
                      "referenceId": "1d390867-cb76-4170-8c87-891ebe5d4e4d"
                    },
                    "relationshipType": "subscriptionRelation"
                  }
                ]
              },
              "productOffering": {
                "id": "52165303-5d47-4827-a51c-f7ab08570210",
                "name": "Unlimited 5G WBB Bundle",
                "productOfferingType": "WBB_Offer"
              },
              "productOrderItem": [
                {
                  "action": "add",
                  "billingAccount": {
                    "@type": "billingAccount",
                    "id": "552912021473"
                  },
                  "characteristic": [
                    {
                      "name": "TermsandConditionsKey",
                      "value": "WBBTC"
                    },
                    {
                      "name": "TermsandConditionsAcceptanceDate",
                      "value": "2022-03-23T11:38:46.421Z"
                    },
                    {
                      "name": "TermsandConditionsAcceptance",
                      "value": "Y"
                    },
                    {
                      "name": "TermsandConditionsContentCategory",
                      "value": "TOS"
                    },
                    {
                      "name": "TermsandConditionsConsentText",
                      "value": "NA"
                    },
                    {
                      "name": "TermsandConditionsVersion",
                      "value": "v1"
                    }
                  ],
                  "id": "b39de027-8b65-4910-94d0-6c88f75b477e",
                  "itemPrice": [
                    {
                      "finalPrice": {
                        "appliedTax": [
                          {
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxDefinition": {
                              "exemptionType": "NONE",
                              "isExemption": false,
                              "taxJurisdiction": {
                                "id": "DEFAULT_ID",
                                "level": "NA",
                                "name": "NA"
                              },
                              "taxRate": 0,
                              "taxType": "ERROR"
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 7.5
                            }
                          },
                          {
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxDefinition": {
                              "exemptionType": "NONE",
                              "isExemption": false,
                              "taxJurisdiction": {
                                "id": "DEFAULT_ID",
                                "level": "NA",
                                "name": "NA"
                              },
                              "taxRate": 0,
                              "taxType": "ERROR"
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 37.5
                            }
                          }
                        ],
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 45
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      },
                      "name": "Unlimited 5G Fixed Wireless Price",
                      "price": {
                        "appliedTax": [
                          {
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxDefinition": {
                              "exemptionType": "NONE",
                              "isExemption": false,
                              "taxJurisdiction": {
                                "id": "DEFAULT_ID",
                                "level": "NA",
                                "name": "NA"
                              },
                              "taxRate": 0,
                              "taxType": "ERROR"
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 8.333334
                            }
                          },
                          {
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxDefinition": {
                              "exemptionType": "NONE",
                              "isExemption": false,
                              "taxJurisdiction": {
                                "id": "DEFAULT_ID",
                                "level": "NA",
                                "name": "NA"
                              },
                              "taxRate": 0,
                              "taxType": "ERROR"
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 41.666666
                            }
                          }
                        ],
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 50
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 50
                        }
                      },
                      "priceAlteration": [
                        {
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit",
                          "immediatePromotionId": "b54980e8-46b1-4347-91af-6f913e7396f4",
                          "price": {
                            "appliedTax": [
                              {
                                "taxAmount": {
                                  "unit": "USD",
                                  "value": 0
                                },
                                "taxDefinition": {
                                  "exemptionType": "NONE",
                                  "isExemption": false,
                                  "taxJurisdiction": {
                                    "id": "DEFAULT_ID",
                                    "level": "NA",
                                    "name": "NA"
                                  },
                                  "taxRate": 0,
                                  "taxType": "ERROR"
                                },
                                "taxableAmount": {
                                  "unit": "USD",
                                  "value": 0.833333
                                }
                              },
                              {
                                "taxAmount": {
                                  "unit": "USD",
                                  "value": 0
                                },
                                "taxDefinition": {
                                  "exemptionType": "NONE",
                                  "isExemption": false,
                                  "taxJurisdiction": {
                                    "id": "DEFAULT_ID",
                                    "level": "NA",
                                    "name": "NA"
                                  },
                                  "taxRate": 0,
                                  "taxType": "ERROR"
                                },
                                "taxableAmount": {
                                  "unit": "USD",
                                  "value": 4.166667
                                }
                              }
                            ],
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 5
                            },
                            "priceReduction": {
                              "unit": "USD",
                              "value": 5
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxIncludedAmount": {
                              "unit": "USD",
                              "value": 5
                            }
                          },
                          "priceType": "RC"
                        }
                      ],
                      "priceType": "RC",
                      "recurringChargePeriod": "month",
                      "recurringChargePeriodLength": 1,
                      "role": "Price",
                      "taxIncluded": "Included"
                    }
                  ],
                  "itemTotalPrice": [
                    {
                      "finalPrice": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 45
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 45
                        }
                      },
                      "immediatePayOption": {
                        "payImmediately": false
                      },
                      "price": {
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 50
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 50
                        }
                      },
                      "priceAlteration": [
                        {
                          "alterationType": "Promotion Price Alteration",
                          "chargeType": "credit",
                          "price": {
                            "dutyFreeAmount": {
                              "unit": "USD",
                              "value": 5
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxIncludedAmount": {
                              "unit": "USD",
                              "value": 5
                            }
                          },
                          "priceType": "RC"
                        }
                      ],
                      "priceType": "RC",
                      "recurringChargePeriod": "month",
                      "recurringChargePeriodLength": 1
                    }
                  ],
                  "payment": [
                    {
                      "characteristic": [
                        {
                          "name": "ownerType",
                          "value": "Customer"
                        }
                      ],
                      "id": "RTB,XX,b012b9f7-73fd-403e-aa21-08903b2dc727,24-248035274711460"
                    }
                  ],
                  "product": {
                    "place": [
                      {
                        "id": "00000D1G6S",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "WBB5G_ServicePriority",
                        "value": "1"
                      }
                    ],
                    "productRelationship": [
                      {
                        "product": {
                          "productCharacteristic": [
                            {
                              "name": "Call_Forward",
                              "value": "CFC,CFI"
                            },
                            {
                              "name": "Mobile_Security_and_Call_Protect",
                              "value": "AEGB"
                            },
                            {
                              "name": "Voice_Mail",
                              "value": "VVM1"
                            },
                            {
                              "name": "WiFi_Calling",
                              "value": "PVWIFI"
                            },
                            {
                              "name": "HD_Voice",
                              "value": "VOLTE"
                            },
                            {
                              "name": "Caller_ID",
                              "value": "CLI"
                            },
                            {
                              "name": "Call_Waiting",
                              "value": "CW"
                            },
                            {
                              "name": "Call_Hold",
                              "value": "CH"
                            },
                            {
                              "name": "6_Way_Calling",
                              "value": "MPTY"
                            },
                            {
                              "name": "Message_Notification",
                              "value": "VMWI"
                            }
                          ],
                          "productSpecification": {
                            "id": "19e22569-dafc-4c25-b3fd-80724f32c262",
                            "name": "Voice",
                            "productSpecificationType": "ff16d2b8f0124bd5943d6b53c2bb91f3"
                          },
                          "referenceId": "c2a606f9-6530-4add-8e3e-146ca201afe6"
                        },
                        "relationshipType": "bundled"
                      },
                      {
                        "product": {
                          "productCharacteristic": [
                            {
                              "name": "Messaging",
                              "value": "Messaging"
                            }
                          ],
                          "productSpecification": {
                            "id": "159cbcd5-dfc8-4e3f-923a-b7364c31600f",
                            "name": "Messaging",
                            "productSpecificationType": "ff16d2b8f0124bd5943d6b53c2bb91f3"
                          },
                          "referenceId": "edb74297-7014-4423-af15-93ccadf52cac"
                        },
                        "relationshipType": "bundled"
                      },
                      {
                        "product": {
                          "productCharacteristic": [
                            {
                              "name": "Product_Type"
                            },
                            {
                              "name": "Phone_Number"
                            },
                            {
                              "name": "Resource_Category",
                              "value": "Standard"
                            }
                          ],
                          "productRelationship": [
                            {
                              "product": {
                                "referenceId": "ff0c729d-fac2-4ab9-be39-ac5aeda8a991"
                              },
                              "relationshipType": "enabledBy"
                            },
                            {
                              "product": {
                                "referenceId": "d1dfc627-1ef5-46da-94ee-73140134e51c"
                              },
                              "relationshipType": "enabledBy"
                            },
                            {
                              "product": {
                                "referenceId": "ef01832f-b194-4eca-9587-a4de3f98dc31"
                              },
                              "relationshipType": "enabledBy"
                            },
                            {
                              "product": {
                                "referenceId": "cc08ab2a-7113-489e-9111-a2fd1d876d5f"
                              },
                              "relationshipType": "enabledBy"
                            }
                          ],
                          "productSpecification": {
                            "id": "fa27ef86-8845-43e3-b796-e2746061276e",
                            "name": "Phone Number",
                            "productSpecificationType": "624cab5783844806b863fbd2d44816de"
                          },
                          "referenceId": "87725613-c2b1-42fe-b222-e855e011c337"
                        },
                        "relationshipType": "bundled"
                      },
                      {
                        "product": {
                          "productCharacteristic": [
                            {
                              "name": "Network_Prioritization_and_Data_Speed",
                              "value": "SPTIER"
                            },
                            {
                              "name": "Data",
                              "value": "DATA"
                            },
                            {
                              "name": "Streaming_Quality"
                            }
                          ],
                          "productSpecification": {
                            "id": "9565a59d-bbb8-48dd-baa7-e5ad75d1c85f",
                            "name": "Data",
                            "productSpecificationType": "ff16d2b8f0124bd5943d6b53c2bb91f3"
                          },
                          "referenceId": "da65db87-3266-44f2-877b-5b28cf0deb7f"
                        },
                        "relationshipType": "bundled"
                      },
                      {
                        "product": {
                          "referenceId": "ff0c729d-fac2-4ab9-be39-ac5aeda8a991"
                        },
                        "relationshipType": "enabledBy"
                      },
                      {
                        "product": {
                          "referenceId": "58f13731-d318-4eca-b354-4695fe4cd237"
                        },
                        "relationshipType": "subscriptionRelation"
                      },
                      {
                        "product": {
                          "referenceId": "d1dfc627-1ef5-46da-94ee-73140134e51c"
                        },
                        "relationshipType": "enabledBy"
                      },
                      {
                        "product": {
                          "referenceId": "d66c7b39-d14e-4a52-b282-ee252c8a8af9"
                        },
                        "relationshipType": "subscriptionRelation"
                      },
                      {
                        "product": {
                          "referenceId": "ef01832f-b194-4eca-9587-a4de3f98dc31"
                        },
                        "relationshipType": "enabledBy"
                      },
                      {
                        "product": {
                          "referenceId": "641d03a5-a721-41c1-87e8-7c9c4b27fdfa"
                        },
                        "relationshipType": "subscriptionRelation"
                      },
                      {
                        "product": {
                          "referenceId": "cc08ab2a-7113-489e-9111-a2fd1d876d5f"
                        },
                        "relationshipType": "enabledBy"
                      },
                      {
                        "product": {
                          "referenceId": "1d390867-cb76-4170-8c87-891ebe5d4e4d"
                        },
                        "relationshipType": "subscriptionRelation"
                      }
                    ],
                    "productSpecification": {
                      "id": "c430db80-e8ae-4cdc-8549-aeb3422f4048",
                      "name": "WBB Data Only",
                      "productSpecificationType": "9232a535673642e5877d8ef0a02830a4"
                    }
                  },
                  "productOffering": {
                    "id": "0de8cea7-1d0e-421e-8d7f-8c01b32a173a",
                    "name": "Unlimited 5G WBB Plan",
                    "productOfferingType": "WBB_Plan"
                  },
                  "quantity": 1
                },
                {
                  "action": "add",
                  "billingAccount": {
                    "@type": "billingAccount",
                    "id": "552912021473"
                  },
                  "fulfillmentMethod": "DF",
                  "id": "a3e3f2ec-2716-422f-8d1d-b0402aee5eeb",
                  "itemPrice": [
                    {
                      "price": {
                        "appliedTax": [
                          {
                            "component": {
                              "amount": {
                                "unit": "USD",
                                "value": 14.166667
                              },
                              "revenueType": "Equipment",
                              "splitCode": "WBB",
                              "taxCode": "XY60"
                            },
                            "extensions": {
                              "Tax": [
                                {
                                  "key": "originErrorCode",
                                  "value": "OTS.missing.required.field"
                                },
                                {
                                  "key": "originErrorMessage",
                                  "value": "Service Address is/are required."
                                },
                                {
                                  "key": "originHttpCode",
                                  "value": "400"
                                }
                              ]
                            },
                            "taxAmount": {
                              "unit": "USD",
                              "value": 0
                            },
                            "taxDefinition": {
                              "exemptionType": "NONE",
                              "isExemption": false,
                              "taxJurisdiction": {
                                "id": "DEFAULT_ID",
                                "level": "NA",
                                "name": "NA"
                              },
                              "taxRate": 0,
                              "taxType": "ERROR",
                              "validFor": {
                                "endDateTime": "2050-08-24T15:00:45.703Z",
                                "startDateTime": "2050-08-24T15:00:45.703Z"
                              }
                            },
                            "taxableAmount": {
                              "unit": "USD",
                              "value": 14.166667
                            }
                          }
                        ],
                        "component": {
                          "amount": {
                            "unit": "USD",
                            "value": 14.166667
                          },
                          "revenueType": "Equipment",
                          "splitCode": "WBB",
                          "taxCode": "XY60"
                        },
                        "dutyFreeAmount": {
                          "unit": "USD",
                          "value": 85
                        },
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxIncludedAmount": {
                          "unit": "USD",
                          "value": 85
                        }
                      }
                    }
                  ],
                  "product": {
                    "place": [
                      {
                        "id": "00000D1G6S",
                        "name": "ServiceAddress",
                        "role": "SA"
                      }
                    ],
                    "productCharacteristic": [
                      {
                        "name": "Delivery_Method",
                        "value": "Indirect_Delivery_Shipping"
                      },
                      {
                        "name": "SKU",
                        "value": "200AA"
                      },
                      {
                        "name": "SKU_With_Prefix",
                        "value": "RTL.200AA"
                      },
                      {
                        "name": "Manufacturer",
                        "value": "WNC"
                      },
                      {
                        "name": "Model",
                        "value": "CGW450-400"
                      },
                      {
                        "name": "Installation_Method",
                        "value": "Self_Installation"
                      },
                      {
                        "name": "Return_Method",
                        "value": "Return_by_box_Shipment"
                      },
                      {
                        "name": "IMEI_Type",
                        "value": "LC"
                      },
                      {
                        "name": "LTE_Type",
                        "value": "B"
                      }
                    ],
                    "productRelationship": [
                      {
                        "product": {
                          "referenceId": "58f13731-d318-4eca-b354-4695fe4cd237"
                        },
                        "relationshipType": "subscriptionRelation"
                      },
                      {
                        "product": {
                          "referenceId": "d66c7b39-d14e-4a52-b282-ee252c8a8af9"
                        },
                        "relationshipType": "subscriptionRelation"
                      },
                      {
                        "product": {
                          "referenceId": "641d03a5-a721-41c1-87e8-7c9c4b27fdfa"
                        },
                        "relationshipType": "subscriptionRelation"
                      },
                      {
                        "product": {
                          "referenceId": "1d390867-cb76-4170-8c87-891ebe5d4e4d"
                        },
                        "relationshipType": "subscriptionRelation"
                      }
                    ],
                    "productSpecification": {
                      "id": "17621712-c142-4ae5-addb-e120a3ae66db",
                      "name": "BB WNC CGW450 400",
                      "productSpecificationType": "0a12bfd7-06a3-47bc-bee6-6f66cce7fa13"
                    }
                  },
                  "productOffering": {
                    "id": "417df8e3-2026-455b-aa79-03d3545e7f6d",
                    "name": "BB WNC CGW450 400",
                    "productOfferingType": "Rented_Equipment"
                  },
                  "productOfferingGroupOption": {
                    "groupOptionId": "0cb38e74-81cf-11ec-9599-bd9f77ca6a1e"
                  },
                  "quantity": 1
                }
              ],
              "quantity": 1
            },
            {
              "action": "add",
              "extensions": {
                "initDeliveryByFromDate": "2022-03-31T00:00:00.000Z",
                "initDeliveryByToDate": "2022-04-06T00:00:00.000Z",
                "initPromiseFromDate": "2022-03-30T00:00:00.000Z",
                "initPromiseToDate": "2022-04-05T00:00:00.000Z"
              },
              "fulfillmentMethod": "DF",
              "id": "3966819f-b146-42de-bcea-176d712a7f23",
              "itemPrice": [
                {
                  "description": "The fee is triggered when Standard Shipping 2 Days Option is selected",
                  "finalPrice": {
                    "appliedTax": [
                      {
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxDefinition": {
                          "exemptionType": "NONE",
                          "isExemption": false,
                          "taxJurisdiction": {
                            "id": "DEFAULT_ID",
                            "level": "NA",
                            "name": "NA"
                          },
                          "taxRate": 0,
                          "taxType": "ERROR"
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      }
                    ],
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": true
                  },
                  "name": "2 Days Shipping Fee",
                  "price": {
                    "appliedTax": [
                      {
                        "taxAmount": {
                          "unit": "USD",
                          "value": 0
                        },
                        "taxDefinition": {
                          "exemptionType": "NONE",
                          "isExemption": false,
                          "taxJurisdiction": {
                            "id": "DEFAULT_ID",
                            "level": "NA",
                            "name": "NA"
                          },
                          "taxRate": 0,
                          "taxType": "ERROR"
                        },
                        "taxableAmount": {
                          "unit": "USD",
                          "value": 0
                        }
                      }
                    ],
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "priceType": "OC",
                  "role": "Price",
                  "taxIncluded": "Excluded"
                }
              ],
              "itemTotalPrice": [
                {
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": false
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "priceType": "OC"
                },
                {
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": true
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "priceType": "Immediate"
                },
                {
                  "finalPrice": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "immediatePayOption": {
                    "payImmediately": true
                  },
                  "price": {
                    "dutyFreeAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxAmount": {
                      "unit": "USD",
                      "value": 0
                    },
                    "taxIncludedAmount": {
                      "unit": "USD",
                      "value": 0
                    }
                  },
                  "priceType": "OC"
                }
              ],
              "product": {
                "place": [
                  {
                    "id": "00000D1G6S",
                    "name": "Home",
                    "role": "shipping"
                  }
                ],
                "productSpecification": {
                  "id": "2ca9a28c-26ec-4bd0-ae17-c96d16c1a2df",
                  "name": "Shipping",
                  "productSpecificationType": "31c8bcd3-8c2d-4483-98be-d092f497049f"
                },
                "referenceId": "417df8e3-2026-455b-aa79-03d3545e7f6d"
              },
              "productOffering": {
                "id": "83c8f5a0-d210-4c2c-a7a2-35e27ec193a3",
                "name": "Standard Shipping 2 Days",
                "productOfferingType": "Delivery_Method"
              },
              "productOrderItemRelationship": [
                {
                  "id": "a3e3f2ec-2716-422f-8d1d-b0402aee5eeb",
                  "relationshipType": "Delivering"
                }
              ]
            }
          ],
          "relatedParty": [
            {
              "@referredType": "individual",
              "@type": "individual",
              "extensions": [
                {
                  "name": "creditApplicationId",
                  "value": "U20220323406036420"
                },
                {
                  "name": "unifiedCreditTransactionId",
                  "value": "U20220323406036420"
                },
                {
                  "name": "unifiedPolicyTransactionId",
                  "value": "P20210818000068739"
                }
              ],
              "id": "b012b9f7-73fd-403e-aa21-08903b2dc727",
              "role": "owner"
            },
            {
              "@referredType": "customer",
              "@type": "Residential",
              "extensions": [
                {
                  "name": "CustomerType",
                  "value": "Consumer"
                },
                {
                  "name": "CustomerSubType",
                  "value": "Individual"
                },
                {
                  "name": "ACPTransactionId",
                  "value": "23423423423"
                },
                {
                  "name": "ACPClassification",
                  "value": "NON_TRIBAL"
                }
              ],
              "id": "ead357be-c5af-40ac-a812-91e547abbf0a",
              "role": "customer"
            },
            {
              "@referredType": "profile",
              "extensions": [
                {
                  "name": "userId",
                  "value": "qay_sa449665@yopmail.com"
                },
                {
                  "name": "userType",
                  "value": "anonymous"
                },
                {
                  "name": "anonymousId",
                  "value": "623b0447-2338-a524-7c5f-4d83f54b3317"
                }
              ],
              "id": "556253437",
              "role": "profile"
            }
          ],
          "state": "acknowledged",
          "validation": {
            "configuration": [
              {
                "required": true,
                "status": "complete",
                "subtype": "string",
                "type": "DigitalID"
              },
              {
                "required": true,
                "status": "complete",
                "subtype": "string",
                "type": "CustomerProfile"
              },
              {
                "required": true,
                "status": "complete",
                "subtype": "string",
                "type": "BillingAccount"
              },
              {
                "required": true,
                "status": "complete",
                "subtype": "string",
                "type": "CreditInfo"
              },
              {
                "required": true,
                "status": "complete",
                "subtype": "string",
                "type": "FulfillmentOptions"
              },
              {
                "properties": [
                  {
                    "name": "TermsAndConditionsKeys",
                    "value": "ECONSENT,CSA,PAPERLESS_DISCLOSURE"
                  }
                ],
                "required": true,
                "status": "complete",
                "subtype": "string",
                "type": "Terms"
              },
              {
                "properties": [
                  {
                    "name": "TermsAndConditionsKeys",
                    "value": "AE"
                  },
                  {
                    "name": "autoPayEligiblePaymentTenders",
                    "value": "ACH,CreditCard,DebitCard"
                  },
                  {
                    "name": "dueTodayEligiblePaymentTenders",
                    "value": "CreditCard,DebitCard"
                  },
                  {
                    "name": "sourceLocation",
                    "value": "XX"
                  },
                  {
                    "name": "sourceSystem",
                    "value": "RTB"
                  }
                ],
                "required": true,
                "status": "complete",
                "subtype": "autopay",
                "type": "payment"
              }
            ],
            "status": "Warning",
            "readyToCheckout": true,
            "validationMessage": [
              {
                "text": "Provided Immediate Promotion is not Qualified",
                "type": "nonQualifiedImmediatePromotionValidationMessage",
                "parameter": [
                  {
                    "name": "immediatePromotionId",
                    "value": [
                      "71a78f2b-6b46-4efb-8713-72da015ad062"
                    ]
                  },
                  {
                    "name": "benefitItemId",
                    "value": [
                      "cae4912f-bf1e-4cd1-a9d9-b7098b10b7b0"
                    ]
                  },
                  {
                    "name": "promotionCatalogId",
                    "value": [
                      "d4004905-45ef-49a5-8313-b1ede9a68c42"
                    ]
                  }
                ],
                "severity": "Warning"
              },
              {
                "text": "Provided Immediate Promotion is not Qualified",
                "type": "nonQualifiedImmediatePromotionValidationMessage",
                "parameter": [
                  {
                    "name": "immediatePromotionId",
                    "value": [
                      "71a78f2b-6b46-4efb-8713-72da015ad062"
                    ]
                  },
                  {
                    "name": "benefitItemId",
                    "value": [
                      "cae4912f-bf1e-4cd1-a9d9-b7098b10b7b0"
                    ]
                  },
                  {
                    "name": "promotionCatalogId",
                    "value": [
                      "d4004905-45ef-49a5-8313-b1ede9a68c42"
                    ]
                  }
                ],
                "severity": "Warning"
              },
              {
                "text": "TRANSACTION_ID_NOT_FOUND",
                "type": "ACP_WARNING"
              }
            ]
          }
        }
      },
      "OCE_Realtime_Activation_Failure_Eg1": {
        "value": {
          "configuration": [
            {
              "required": true,
              "status": "incomplete",
              "subtype": "string",
              "type": "DigitalID"
            },
            {
              "required": true,
              "status": "complete",
              "subtype": "string",
              "type": "CustomerProfile"
            },
            {
              "required": true,
              "status": "incomplete",
              "subtype": "string",
              "type": "BillingAccount"
            },
            {
              "required": true,
              "status": "incomplete",
              "subtype": "string",
              "type": "CreditInfo"
            },
            {
              "required": true,
              "status": "incomplete",
              "subtype": "string",
              "type": "FulfillmentOptions"
            },
            {
              "properties": [
                {
                  "name": "TermsAndConditionsKeys",
                  "value": "ECONSENT,CSA,PAPERLESS_DISCLOSURE"
                }
              ],
              "required": true,
              "status": "incomplete",
              "subtype": "string",
              "type": "Terms"
            },
            {
              "properties": [
                {
                  "name": "TermsAndConditionsKeys",
                  "value": "AE"
                },
                {
                  "name": "autoPayEligiblePaymentTenders",
                  "value": "ACH,CreditCard,DebitCard"
                },
                {
                  "name": "dueTodayEligiblePaymentTenders",
                  "value": "CreditCard,DebitCard"
                },
                {
                  "name": "sourceLocation",
                  "value": "XX"
                },
                {
                  "name": "sourceSystem",
                  "value": "RTB"
                }
              ],
              "required": true,
              "status": "complete",
              "subtype": "autopay",
              "type": "payment"
            }
          ],
          "readyToSubmit": false,
          "status": "incomplete",
          "validationMessage": [
            {
              "text": "{faultDescription}",
              "type": "OCE"
            }
          ],
          "manageSubscriptions": {
            "cartId": "4acf5430-cdde-11ef-a076-69438f4c5ef7",
            "sessionId": "4acf5430-cdde-11ef",
            "customerOrderNumber": "24-768981789999999",
            "status": "failed",
            "errors": [
              {
                "message": "Cannot connnect to downstream system",
                "errorId": "500",
                "details": {
                  "faultCode": "500000000001",
                  "faultDescription": "Backend error - cannot connect to downstream."
                }
              }
            ]
          }
        }
      },
      "OCE_Realtime_Activation_Failure_Eg2": {
        "value": {
          "configuration": [
            {
              "required": true,
              "status": "incomplete",
              "subtype": "string",
              "type": "DigitalID"
            },
            {
              "required": true,
              "status": "complete",
              "subtype": "string",
              "type": "CustomerProfile"
            },
            {
              "required": true,
              "status": "incomplete",
              "subtype": "string",
              "type": "BillingAccount"
            },
            {
              "required": true,
              "status": "incomplete",
              "subtype": "string",
              "type": "CreditInfo"
            },
            {
              "required": true,
              "status": "incomplete",
              "subtype": "string",
              "type": "FulfillmentOptions"
            },
            {
              "properties": [
                {
                  "name": "TermsAndConditionsKeys",
                  "value": "ECONSENT,CSA,PAPERLESS_DISCLOSURE"
                }
              ],
              "required": true,
              "status": "incomplete",
              "subtype": "string",
              "type": "Terms"
            },
            {
              "properties": [
                {
                  "name": "TermsAndConditionsKeys",
                  "value": "AE"
                },
                {
                  "name": "autoPayEligiblePaymentTenders",
                  "value": "ACH,CreditCard,DebitCard"
                },
                {
                  "name": "dueTodayEligiblePaymentTenders",
                  "value": "CreditCard,DebitCard"
                },
                {
                  "name": "sourceLocation",
                  "value": "XX"
                },
                {
                  "name": "sourceSystem",
                  "value": "RTB"
                }
              ],
              "required": true,
              "status": "complete",
              "subtype": "autopay",
              "type": "payment"
            }
          ],
          "readyToSubmit": false,
          "status": "incomplete",
          "validationMessage": [
            {
              "text": "{faultDescription}",
              "type": "OCE"
            }
          ],
          "manageSubscriptions": {
            "cartId": "4f5f65f0-0e50-11f0-8373-2f78b02572af",
            "sessionId": "a3Cfg000005gtQbEAI",
            "customerOrderNumber": "24-743710055242256",
            "status": "Failed",
            "subscribers": [
              {
                "subscriberNumber": "4695853803",
                "errors": [
                  {
                    "message": "Request performed out of sequence with business process",
                    "errorId": "500",
                    "details": {
                      "faultCode": "50000000065",
                      "faultDescription": "Combine BAN is not allowed - Inappropriate account type. The combination of BAN account type I and BAN account sub type R is illegal."
                    }
                  }
                ]
              }
            ]
          }
        }
      },
      "OCE_Realtime_Activation_Failure_Eg3": {
        "value": {
          "configuration": [
            {
              "required": true,
              "status": "incomplete",
              "subtype": "string",
              "type": "DigitalID"
            },
            {
              "required": true,
              "status": "complete",
              "subtype": "string",
              "type": "CustomerProfile"
            },
            {
              "required": true,
              "status": "incomplete",
              "subtype": "string",
              "type": "BillingAccount"
            },
            {
              "required": true,
              "status": "incomplete",
              "subtype": "string",
              "type": "CreditInfo"
            },
            {
              "required": true,
              "status": "incomplete",
              "subtype": "string",
              "type": "FulfillmentOptions"
            },
            {
              "properties": [
                {
                  "name": "TermsAndConditionsKeys",
                  "value": "ECONSENT,CSA,PAPERLESS_DISCLOSURE"
                }
              ],
              "required": true,
              "status": "incomplete",
              "subtype": "string",
              "type": "Terms"
            },
            {
              "properties": [
                {
                  "name": "TermsAndConditionsKeys",
                  "value": "AE"
                },
                {
                  "name": "autoPayEligiblePaymentTenders",
                  "value": "ACH,CreditCard,DebitCard"
                },
                {
                  "name": "dueTodayEligiblePaymentTenders",
                  "value": "CreditCard,DebitCard"
                },
                {
                  "name": "sourceLocation",
                  "value": "XX"
                },
                {
                  "name": "sourceSystem",
                  "value": "RTB"
                }
              ],
              "required": true,
              "status": "complete",
              "subtype": "autopay",
              "type": "payment"
            }
          ],
          "readyToSubmit": false,
          "status": "incomplete",
          "validationMessage": [
            {
              "text": "{faultDescription}",
              "type": "OCE"
            }
          ],
          "manageSubscriptions": {
            "status": "Failed",
            "errors": [
              {
                "message": "Timeout error.",
                "errorId": "500",
                "details": {
                  "faultCode": "50000000061",
                  "faultDescription": "Backend error - cannot connect to downstream."
                }
              }
            ]
          }
        }
      },
      "OCE_Milestone_Failed": {
        "value": {
          "id": "123456789",
          "state": "acknowledged",
          "customerOrderId": "25-46454212454",
          "completionDate": "2022-01-03T21:25:33.226Z",
          "orderSummaryAccessToken": "string",
          "oceStepContextResponse": {
            "error": {
              "errorId": "General-4003000",
              "message": "Invalid Schema Request",
              "details": [
                {
                  "code": "Order-4003001",
                  "description": "Order Schema not correct: object has missing required properties ([\"phoneNumber\"]) SchemaPointer: /definitions/phone InstancePointer: /contactDetail/personalDetail/primaryContactPhones/0"
                }
              ]
            }
          }
        }
      },
      "OCE_Milestone_Conflict": {
        "value": {
          "id": "123456789",
          "state": "acknowledged",
          "customerOrderId": "25-46454212454",
          "completionDate": "2022-01-03T21:25:33.226Z",
          "orderSummaryAccessToken": "string",
          "oceStepContextResponse": {
            "application": "IDP",
            "channel": "DE-MOBILITY",
            "errorId": 409,
            "error": {
              "error": {
                "errorId": "409",
                "message": "Order Already Accepted"
              }
            },
            "customerOrderNumber": "**-**********"
          }
        }
      },
      "OCE_StepContext_Response": {
        "value": {
          "id": "123456789",
          "state": "acknowledged",
          "customerOrderId": "25-46454212454",
          "completionDate": "2022-01-03T21:25:33.226Z",
          "orderSummaryAccessToken": "string",
          "oceStepContextResponse": {
            "application": "SF-SALES",
            "channel": "ATTR",
            "customerOrderNumber": "23-456789012345678",
            "stepContext": {
              "extensions": [
                {
                  "name": "sample-name",
                  "value": "sample-value"
                }
              ],
              "sessionId": "a3CU7000006xrzMMAQ",
              "upcomingSteps": [
                {
                  "impactedLines": [
                    "d8e43d00-4ac3-11f0-9ae5-618e295dc48a-1",
                    "d8e43d00-4ac3-11f0-9ae5-618e295dc48a-2"
                  ],
                  "steps": [
                    {
                      "description": "Data Acceptance & Validation",
                      "status": "pending",
                      "stepId": "order-accept-validate",
                      "stepSequence": 1,
                      "stepType": "mandatory"
                    },
                    {
                      "description": "Burn Eligibility",
                      "status": "pending",
                      "stepId": "burn-contract",
                      "stepSequence": 2,
                      "stepType": "mandatory"
                    },
                    {
                      "description": "Upgrading the equipment",
                      "status": "pending",
                      "stepId": "activate-product",
                      "stepSequence": 3,
                      "stepType": "mandatory"
                    }
                  ],
                  "totalSteps": 3
                }
              ]
            }
          }
        }
      }
    },
    "parameters": {
      "idpctxuuid": {
        "in": "header",
        "name": "idpctx-uuid",
        "description": "Mandatory user id header 'idpctx-uuid'.",
        "required": true,
        "schema": {
          "type": "string",
          "default": "userId12345"
        }
      },
      "cartId": {
        "name": "cart-id",
        "in": "path",
        "description": "CartId i.e identifier of the ProductOrder.",
        "required": true,
        "schema": {
          "type": "string",
          "default": "cb7605f0-9b3e-11ec-b7a2-b93d4c24b7bd"
        }
      },
      "channel": {
        "in": "header",
        "name": "x-att-clientid",
        "description": "Channel. EG. ATTR, ECOMM, SelfService",
        "required": false,
        "schema": {
          "type": "string"
        }
      },
      "mockscenario": {
        "in": "header",
        "name": "mock-scenario",
        "description": "Optional header 'mock-scenario' to trigger mock mode.",
        "required": false,
        "schema": {
          "type": "string",
          "enum": [
            "ATTR_Cart_Initialization",
            "aia_with_only_baseOffer"
          ]
        }
      },
      "idpctxUserType": {
        "in": "header",
        "name": "idpctx-user-type",
        "description": "Type of user('idpctx-user-type'). This is a mandatory header. Example: guest",
        "required": true,
        "schema": {
          "type": "string",
          "default": "guest"
        }
      },
      "idpctxSessionId": {
        "in": "header",
        "name": "idpctx-session-id",
        "description": "The session id of the current user session('idpctx-session-id'). This is a mandatory header.",
        "required": true,
        "schema": {
          "type": "string",
          "default": "074e354a-8897-44c9-a8a0-c78dfe443a26"
        }
      },
      "idpctxAcctInfoCustType": {
        "in": "header",
        "name": "idpctx-acctinfocustype",
        "description": "Account information customer type. Example: wireless.",
        "required": false,
        "schema": {
          "type": "string",
          "default": "wireless"
        }
      },
      "idpctxLinkedWirelessAccNums": {
        "in": "header",
        "name": "idpctx-linkedwirelessaccnums",
        "description": "Linked wireless account numbers.",
        "required": false,
        "schema": {
          "type": "string",
          "default": "554135092834"
        }
      }
    },
    "schemas": {
      "PaymentInfoRequest": {
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "payment"
        ],
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "payment": {
            "$ref": "#/components/schemas/payment"
          }
        }
      },
      "err500": {
        "example": {
          "status": "Failure"
        }
      },
      "IntentsInputRequest": {
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items.",
        "type": "object",
        "required": [
          "intent"
        ],
        "properties": {
          "intent": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "value",
                "resource"
              ],
              "additionalProperties": false,
              "properties": {
                "value": {
                  "type": "array",
                  "items": {
                    "type": "string",
                    "enum": [
                      "NO_AUTO_PAY",
                      "E_BILL",
                      "PAPER_BILL",
                      "AUTO_PAY_WITH_BANK_DRAFT",
                      "AUTO_PAY_WITH_CREDIT_CARD",
                      "AUTO_PAY_WITH_DEBIT_CARD",
                      "ORDER_WIRELESS",
                      "ORDER_BROADBAND",
                      "WITHOUT_WIRELESS",
                      "WITHOUT_BROADBAND"
                    ]
                  }
                },
                "resource": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RelatedResource"
                  }
                }
              }
            }
          }
        }
      },
      "TermsInputRequest": {
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items.",
        "type": "object",
        "required": [
          "agreement"
        ],
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "agreement": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "required": [
                "name",
                "resource"
              ],
              "properties": {
                "id": {
                  "description": "Terms id",
                  "type": "string"
                },
                "name": {
                  "description": "Terms name",
                  "type": "string"
                },
                "extensions": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/KeyValueObject"
                  }
                },
                "resource": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RelatedResource"
                  }
                }
              }
            }
          }
        }
      },
      "FulfillmentOptionsRequest": {
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "items"
        ],
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "items": {
            "$ref": "#/components/schemas/items"
          }
        }
      },
      "BillingInfoRequest": {
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items.",
        "type": "object",
        "required": [
          "billingAccount"
        ],
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "billingAccount": {
            "$ref": "#/components/schemas/billingAccount"
          }
        }
      },
      "BillingInfoSpiRequest": {
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items.",
        "type": "object",
        "required": [
          "billingAccountSpi"
        ],
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "billingAccountSpi": {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "billingAccount",
              "userinfo"
            ],
            "properties": {
              "billingAccount": {
                "$ref": "#/components/schemas/BillingAccountRef"
              },
              "userinfo": {
                "$ref": "#/components/schemas/Userinfo"
              }
            }
          }
        }
      },
      "AccountPreferenceRequest": {
        "type": "array",
        "items": {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "billingAccount"
          ],
          "properties": {
            "billingAccount": {
              "$ref": "#/components/schemas/BillingAccountRef"
            },
            "billStructure": {
              "$ref": "#/components/schemas/BillStructure"
            },
            "defaultPaymentMethod": {
              "description": "PaymentMethod reference. A payment method defines a specific mean of payment (e.g direct debit).",
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@referredType": {
                  "description": "The actual type of the target instance when needed for disambiguation.",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "characteristic": {
                  "type": "array",
                  "items": {
                    "description": "ATT++::Describes a given characteristic of an object or entity through a name/value pair.",
                    "type": "object",
                    "additionalProperties": false,
                    "required": [
                      "name",
                      "value"
                    ],
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@referredType": {
                        "description": "The actual type of the target instance when needed for disambiguation.",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "href": {
                        "description": "Hyperlink reference",
                        "type": "string",
                        "format": "uri"
                      },
                      "id": {
                        "description": "unique identifier",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the characteristic",
                        "type": "string"
                      },
                      "value": {
                        "description": "Value of the characteristic",
                        "type": "string"
                      },
                      "valueType": {
                        "description": "Data type of the value of the characteristic",
                        "type": "string"
                      }
                    }
                  }
                },
                "href": {
                  "description": "Hyperlink reference",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "unique identifier",
                  "type": "string"
                },
                "name": {
                  "description": "Name of the related entity.",
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "UpdateRelatedParty": {
        "type": "object",
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "relatedParty": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedPartyCommerce"
            }
          }
        }
      },
      "ValidationResponse": {
        "description": "TMF++::Validation result that is associated with the product order\n",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "@baseType": {
            "description": "When sub-classing, this defines the super-class",
            "type": "string"
          },
          "@referredType": {
            "description": "The actual type of the target instance when needed for disambiguation.",
            "type": "string"
          },
          "@schemaLocation": {
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "type": "string",
            "format": "uri"
          },
          "@type": {
            "description": "When sub-classing, this defines the sub-class Extensible name",
            "type": "string"
          },
          "configuration": {
            "description": "Configuration Components\n",
            "type": "array",
            "items": {
              "description": "ATT++::Message associated with the validation failure",
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "postOrderConfigurable": {
                  "description": "Component Post Order Product Order Configuration\n",
                  "type": "boolean"
                },
                "properties": {
                  "description": "Name/value pair\n",
                  "type": "array",
                  "items": {
                    "description": "ATT++::Describes a given characteristic of an object or entity through a name/value pair.",
                    "type": "object",
                    "additionalProperties": false,
                    "required": [
                      "name",
                      "value"
                    ],
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@referredType": {
                        "description": "The actual type of the target instance when needed for disambiguation.",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "href": {
                        "description": "Hyperlink reference",
                        "type": "string",
                        "format": "uri"
                      },
                      "id": {
                        "description": "unique identifier",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the characteristic",
                        "type": "string"
                      },
                      "value": {
                        "description": "Value of the characteristic",
                        "type": "string"
                      },
                      "valueType": {
                        "description": "Data type of the value of the characteristic",
                        "type": "string"
                      }
                    }
                  }
                },
                "readOnly": {
                  "description": "Component allowed for configuration or not.\n",
                  "type": "boolean"
                },
                "required": {
                  "description": "Component required for Product Order Configuration\n",
                  "type": "boolean"
                },
                "resource": {
                  "description": "Resource that is associated with the message\n",
                  "type": "array",
                  "items": {
                    "description": "TMF++::Resource that is associated with the validation message (that is, triggered the validation failure)\n",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "containedResource": {
                        "description": "Other resources, specs, or offers that are linked to the message but did not trigger the validation message\n",
                        "type": "array",
                        "items": {
                          "description": "TMF++::Resources that are contained in the validation message\n",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "id": {
                              "description": "Unique identifier of the resource\n",
                              "type": "string"
                            },
                            "type": {
                              "description": "Type of the resource\n",
                              "type": "string"
                            },
                            "variable": {
                              "description": "Variables that are related to the resource\n",
                              "type": "array",
                              "items": {
                                "description": "Variable that is associated with a resource\n",
                                "type": "object",
                                "additionalProperties": false,
                                "properties": {
                                  "id": {
                                    "description": "Unique identifier of the variable\n",
                                    "type": "string"
                                  },
                                  "type": {
                                    "description": "Type of the variable\n",
                                    "type": "string"
                                  },
                                  "value": {
                                    "description": "Value(s) of the variable\n",
                                    "type": "array",
                                    "items": {
                                      "type": "string"
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "id": {
                        "description": "Unique identifier of the resource\n",
                        "type": "string"
                      },
                      "type": {
                        "description": "Type of the resource\n",
                        "type": "string"
                      },
                      "variable": {
                        "description": "Variables related to the resource\n",
                        "type": "array",
                        "items": {
                          "description": "Variable that is associated with a resource\n",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "id": {
                              "description": "Unique identifier of the variable\n",
                              "type": "string"
                            },
                            "type": {
                              "description": "Type of the variable\n",
                              "type": "string"
                            },
                            "value": {
                              "description": "Value(s) of the variable\n",
                              "type": "array",
                              "items": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "status": {
                  "description": "Type of the component\n",
                  "type": "string"
                },
                "subtype": {
                  "description": "Sub Type of the Component\n",
                  "type": "string"
                },
                "type": {
                  "description": "Type of the component\n",
                  "type": "string"
                }
              }
            }
          },
          "configurationChange": {
            "description": "Configuration change\n",
            "type": "array",
            "items": {
              "description": "TMF++::Configuration change recommended for a validated resource\n",
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "configurationChangeSource": {
                  "description": "Holds a list of the impacting components that are involved in action rule\n- enablmentRelation - The action rule has impacting enablment relation functionality or was created by this functionality.\n- commertialRelation - The action rule has impacting commertial relation functionality or was created by this functionality.\n- subscriptionRelation - The action rule has impacting subscription relation or was created by this functionality. functionality\n- catalog - The action rule was created by catalog.\n",
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                "id": {
                  "description": "Unique identifier of the configuration change\n",
                  "type": "string"
                },
                "parameter": {
                  "type": "array",
                  "items": {
                    "description": "TMF++::Name/value pair of the configuration change parameters\n",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@referredType": {
                        "description": "The actual type of the target instance when needed for disambiguation.",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "href": {
                        "description": "Hyperlink reference",
                        "type": "string",
                        "format": "uri"
                      },
                      "id": {
                        "description": "unique identifier",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the parameter\n",
                        "type": "string"
                      },
                      "value": {
                        "description": "Value(s) of the parameter\n",
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "valueType": {
                        "description": "Types of each Value in the parameter array\nAs a default - when empty - the type is string.\nAlso will be supported-\n** HashMap - a jason format representation of key value <string,string> map.\n",
                        "type": "string"
                      }
                    }
                  }
                },
                "patchElement": {
                  "type": "array",
                  "items": {
                    "description": "TMF++::Patched resource part\n",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@referredType": {
                        "description": "The actual type of the target instance when needed for disambiguation.",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "href": {
                        "description": "Hyperlink reference",
                        "type": "string",
                        "format": "uri"
                      },
                      "id": {
                        "description": "unique identifier",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the related entity.",
                        "type": "string"
                      },
                      "op": {
                        "description": "Operation that is associated with the patched resource part. Valid values are *add*, *remove*, or *replace*.\n",
                        "type": "string"
                      },
                      "path": {
                        "description": "Path of this resource part within the patched resource, for example, */note*, */name*, or */orderItem/quantity*\n",
                        "type": "string"
                      },
                      "value": {
                        "description": "Value of the patched resource part\n",
                        "type": "object"
                      }
                    }
                  }
                },
                "path": {
                  "description": "Path to the configuration change in the resource model\n",
                  "type": "string"
                },
                "severity": {
                  "description": "Severity of the configuration change\n",
                  "type": "string"
                },
                "skipRevalidation": {
                  "description": "Indicates whether revalidation of the configuration change is required\n",
                  "type": "boolean"
                },
                "text": {
                  "description": "Localized descriptive configuration change message\n",
                  "type": "string"
                },
                "type": {
                  "description": "Implementation discriminator of the configuration change\n",
                  "type": "string"
                }
              }
            }
          },
          "error": {
            "description": "Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)",
            "type": "object",
            "additionalProperties": false,
            "required": [
              "code",
              "reason"
            ],
            "properties": {
              "@baseType": {
                "description": "When sub-classing, this defines the super-class",
                "type": "string"
              },
              "@schemaLocation": {
                "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                "type": "string",
                "format": "uri"
              },
              "@type": {
                "description": "When sub-classing, this defines the sub-class Extensible name",
                "type": "string"
              },
              "code": {
                "description": "Application relevant detail, defined in the API or a common list",
                "type": "string"
              },
              "message": {
                "description": "More details and corrective actions related to the error which can be shown to a client user",
                "type": "string"
              },
              "reason": {
                "description": "Explanation of the reason for the error which can be shown to a client user",
                "type": "string"
              },
              "referenceError": {
                "description": "URI of documentation describing the error",
                "type": "string",
                "format": "uri"
              },
              "status": {
                "description": "HTTP Error code extension",
                "type": "string"
              }
            }
          },
          "extensions": {
            "description": "TMF++::Extensions",
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "@baseType": {
                "description": "When sub-classing, this defines the super-class",
                "type": "string"
              },
              "@referredType": {
                "description": "The actual type of the target instance when needed for disambiguation.",
                "type": "string"
              },
              "@schemaLocation": {
                "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                "type": "string",
                "format": "uri"
              },
              "@type": {
                "description": "When sub-classing, this defines the sub-class Extensible name",
                "type": "string"
              },
              "BillingCycleCode": {
                "type": "string"
              },
              "CCSOfferID": {
                "type": "string"
              },
              "CycleCloseDay": {
                "type": "string"
              },
              "ModifyAction": {
                "type": "string"
              },
              "ModifyReason": {
                "type": "string"
              },
              "href": {
                "description": "Hyperlink reference",
                "type": "string",
                "format": "uri"
              },
              "id": {
                "description": "unique identifier",
                "type": "string"
              },
              "initDeliveryByFromDate": {
                "type": "string",
                "format": "date-time"
              },
              "initDeliveryByToDate": {
                "type": "string",
                "format": "date-time"
              },
              "initPromiseFromDate": {
                "type": "string",
                "format": "date-time"
              },
              "initPromiseToDate": {
                "type": "string",
                "format": "date-time"
              },
              "lineSalesRep": {
                "type": "string"
              },
              "substitutionAction": {
                "type": "string"
              },
              "name": {
                "description": "Name of the related entity.",
                "type": "string"
              },
              "resumeCommonOrderId": {
                "type": "string"
              }
            }
          },
          "href": {
            "description": "Hyperlink reference",
            "type": "string",
            "format": "uri"
          },
          "id": {
            "description": "unique identifier",
            "type": "string"
          },
          "name": {
            "description": "Name of the related entity.",
            "type": "string"
          },
          "readyToCheckout": {
            "description": "Ready To Checkout\n",
            "type": "boolean"
          },
          "readyToSubmit": {
            "description": "Ready to Submit\n",
            "type": "boolean"
          },
          "status": {
            "description": "Validation status\n",
            "type": "string"
          },
          "validationMessage": {
            "description": "Validation message\n",
            "type": "array",
            "items": {
              "description": "TMF++::Message associated with the validation failure\n",
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "id": {
                  "description": "Non-localized name identifier of the validation message\n",
                  "type": "string"
                },
                "parameter": {
                  "description": "Name/value pair of the validation message\n",
                  "type": "array",
                  "items": {
                    "description": "TMF++::Name/value pair of the validation message parameter\n",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@referredType": {
                        "description": "The actual type of the target instance when needed for disambiguation.",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "href": {
                        "description": "Hyperlink reference",
                        "type": "string",
                        "format": "uri"
                      },
                      "id": {
                        "description": "unique identifier",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the parameter\n",
                        "type": "string"
                      },
                      "value": {
                        "description": "Value of the parameter\n",
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      }
                    }
                  }
                },
                "path": {
                  "description": "Path to the resource part to which the validation message is related\n",
                  "type": "string"
                },
                "resource": {
                  "description": "Resource that is associated with the message\n",
                  "type": "array",
                  "items": {
                    "description": "TMF++::Resource that is associated with the validation message (that is, triggered the validation failure)\n",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "containedResource": {
                        "description": "Other resources, specs, or offers that are linked to the message but did not trigger the validation message\n",
                        "type": "array",
                        "items": {
                          "description": "TMF++::Resources that are contained in the validation message\n",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "id": {
                              "description": "Unique identifier of the resource\n",
                              "type": "string"
                            },
                            "type": {
                              "description": "Type of the resource\n",
                              "type": "string"
                            },
                            "variable": {
                              "description": "Variables that are related to the resource\n",
                              "type": "array",
                              "items": {
                                "description": "Variable that is associated with a resource\n",
                                "type": "object",
                                "additionalProperties": false,
                                "properties": {
                                  "id": {
                                    "description": "Unique identifier of the variable\n",
                                    "type": "string"
                                  },
                                  "type": {
                                    "description": "Type of the variable\n",
                                    "type": "string"
                                  },
                                  "value": {
                                    "description": "Value(s) of the variable\n",
                                    "type": "array",
                                    "items": {
                                      "type": "string"
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "id": {
                        "description": "Unique identifier of the resource\n",
                        "type": "string"
                      },
                      "type": {
                        "description": "Type of the resource\n",
                        "type": "string"
                      },
                      "variable": {
                        "description": "Variables related to the resource\n",
                        "type": "array",
                        "items": {
                          "description": "Variable that is associated with a resource\n",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "id": {
                              "description": "Unique identifier of the variable\n",
                              "type": "string"
                            },
                            "type": {
                              "description": "Type of the variable\n",
                              "type": "string"
                            },
                            "value": {
                              "description": "Value(s) of the variable\n",
                              "type": "array",
                              "items": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "severity": {
                  "description": "Severity of the validation message\n",
                  "type": "string"
                },
                "subtype": {
                  "description": "Distinct code which represents the issue\n",
                  "type": "string"
                },
                "text": {
                  "description": "Localized descriptive validation message\n",
                  "type": "string"
                },
                "type": {
                  "description": "Type of the validation message\n",
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "CheckoutRequest": {
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "extensions"
        ],
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "extensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          },
          "billingAccount": {
            "$ref": "#/components/schemas/billingAccount"
          },
          "fulfillment": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "items": {
                "$ref": "#/components/schemas/items"
              }
            }
          },
          "payment": {
            "$ref": "#/components/schemas/payment"
          }
        }
      },
      "LoginProfile": {
        "type": "object",
        "required": [
          "shoppingCartId",
          "loginProfile"
        ],
        "properties": {
          "shoppingCartId": {
            "type": "string"
          },
          "loginProfile": {
            "type": "object",
            "properties": {
              "_accountSetupMode": {
                "type": "string"
              },
              "_billingAccountNumber": {
                "type": "string"
              },
              "_currentAccountStatus": {
                "type": "string"
              },
              "billingPlaceId": {
                "type": "string"
              },
              "cbrConsent": {
                "type": "boolean"
              },
              "customerId": {
                "type": "string"
              },
              "customerRole": {
                "type": "string"
              },
              "customerType": {
                "type": "string"
              },
              "emailAddress": {
                "type": "string"
              },
              "emailValidated": {
                "type": "boolean"
              },
              "firstName": {
                "type": "string"
              },
              "individualId": {
                "type": "string"
              },
              "individualRole": {
                "type": "string"
              },
              "individualType": {
                "type": "string"
              },
              "lastName": {
                "type": "string"
              },
              "phoneNumber": {
                "type": "string"
              },
              "status": {
                "type": "string"
              },
              "statusReason": {
                "type": "string"
              },
              "userGuId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              }
            }
          }
        }
      },
      "RiskAssessmentRequest": {
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "autoApplyRiskAssesmentPolicyToCart",
          "applicationDetails"
        ],
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "autoApplyRiskAssesmentPolicyToCart": {
            "type": "boolean"
          },
          "applicationDetails": {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "id",
              "unifiedCreditTransactionId"
            ],
            "properties": {
              "id": {
                "type": "string"
              },
              "unifiedCreditTransactionId": {
                "type": "string"
              },
              "debtPaymentComplete": {
                "type": "boolean"
              }
            }
          }
        }
      },
      "RiskAssessmentResponse": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "status": {
            "description": "Policy Status",
            "type": "string"
          },
          "policyImpactToCart": {
            "description": "Policy impacts to Cart",
            "type": "boolean"
          },
          "policyAppliedToCart": {
            "description": "Policy applied to Cart",
            "type": "boolean"
          },
          "applicationDetails": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "id": {
                "type": "string"
              },
              "unifiedCreditTransactionId": {
                "type": "string"
              },
              "unifiedPolicyTransactionId": {
                "type": "string"
              }
            }
          },
          "productOrder": {
            "$ref": "#/components/schemas/ProductOrder"
          },
          "riskAssessmentResult": {
            "type": "array",
            "items": {
              "description": "This resource reflects the risk assessment",
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "overallScore": {
                  "description": "An overall assessment of the risk, composed from the individual scores",
                  "type": "number",
                  "format": "float"
                },
                "productType": {
                  "type": "string"
                },
                "resource": {
                  "type": "array",
                  "items": {
                    "description": "TMF++::Resource that is associated with the validation message (that is, triggered the validation failure)\n",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "containedResource": {
                        "description": "Other resources, specs, or offers that are linked to the message but did not trigger the validation message\n",
                        "type": "array",
                        "items": {
                          "description": "TMF++::Resources that are contained in the validation message\n",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "id": {
                              "description": "Unique identifier of the resource\n",
                              "type": "string"
                            },
                            "type": {
                              "description": "Type of the resource\n",
                              "type": "string"
                            },
                            "variable": {
                              "description": "Variables that are related to the resource\n",
                              "type": "array",
                              "items": {
                                "description": "Variable that is associated with a resource\n",
                                "type": "object",
                                "additionalProperties": false,
                                "properties": {
                                  "id": {
                                    "description": "Unique identifier of the variable\n",
                                    "type": "string"
                                  },
                                  "type": {
                                    "description": "Type of the variable\n",
                                    "type": "string"
                                  },
                                  "value": {
                                    "description": "Value(s) of the variable\n",
                                    "type": "array",
                                    "items": {
                                      "type": "string"
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "id": {
                        "description": "Unique identifier of the resource\n",
                        "type": "string"
                      },
                      "type": {
                        "description": "Type of the resource\n",
                        "type": "string"
                      },
                      "variable": {
                        "description": "Variables related to the resource\n",
                        "type": "array",
                        "items": {
                          "description": "Variable that is associated with a resource\n",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "id": {
                              "description": "Unique identifier of the variable\n",
                              "type": "string"
                            },
                            "type": {
                              "description": "Type of the variable\n",
                              "type": "string"
                            },
                            "value": {
                              "description": "Value(s) of the variable\n",
                              "type": "array",
                              "items": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "score": {
                  "description": "Additional characteristics for which the risk might be assessed, optional input to the task",
                  "type": "array",
                  "items": {
                    "description": "This resource reflects a score for a specific risk",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "riskName": {
                        "description": "The name of the risk",
                        "enum": [
                          "FraudRisk",
                          "BadPaymentRisk",
                          "CreditGamingRisk",
                          "IDConfidenceRisk",
                          "PaymentMethodRisk",
                          "AbusiveRisk"
                        ],
                        "type": "string"
                      },
                      "score": {
                        "description": "The risk score",
                        "type": "number",
                        "format": "float"
                      }
                    }
                  }
                },
                "securityAmount": {
                  "type": "number"
                },
                "securityDescription": {
                  "type": "string"
                },
                "securityType": {
                  "type": "string"
                },
                "validFor": {
                  "description": "A period of time, either as a deadline (endDateTime only) a startDateTime only, or both",
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "endDateTime": {
                      "description": "End of the time period, using IETC-RFC-3339 format",
                      "type": "string",
                      "format": "date-time"
                    },
                    "startDateTime": {
                      "description": "Start of the time period, using IETC-RFC-3339 format",
                      "type": "string",
                      "format": "date-time"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "SubmitOrderRequest": {
        "type": "object",
        "additionalProperties": false,
        "required": [
          "extensions"
        ],
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "extensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          },
          "quote": {
            "$ref": "#/components/schemas/QuoteRef"
          }
        }
      },
      "SubmitOrderResponse": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string"
          },
          "state": {
            "description": "Possible values for the state of the order",
            "enum": [
              "Acknowledged",
              "Amended",
              "Cancelled",
              "Completed",
              "Draft",
              "Failed",
              "Fallout",
              "Held",
              "InProgress",
              "Partial",
              "PendingAmend",
              "PendingCancel",
              "Submitted"
            ],
            "type": "string"
          },
          "customerOrderId": {
            "type": "string"
          },
          "completionDate": {
            "type": "string"
          },
          "orderSummaryAccessToken": {
            "type": "string"
          },
          "validation": {
            "$ref": "#/components/schemas/ValidationResponse"
          }
        }
      },
      "OrderSummaryResponse": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "productOrder": {
            "$ref": "#/components/schemas/ProductOrder"
          },
          "customerInfo": {
            "$ref": "#/components/schemas/installationDayContact"
          },
          "accountInfo": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "accounts": {
                "type": "array",
                "items": {
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "@type": {
                      "type": "string"
                    },
                    "accountSubType": {
                      "type": "string"
                    },
                    "accountType": {
                      "type": "string"
                    },
                    "amountDue": {
                      "type": "number"
                    },
                    "autoBillPayIndicator": {
                      "enum": [
                        "N",
                        "Y"
                      ],
                      "type": "string"
                    },
                    "billDueDate": {
                      "type": "string"
                    },
                    "billStructure": {
                      "$ref": "#/components/schemas/BillStructure"
                    },
                    "billingMarket": {
                      "type": "string"
                    },
                    "contact": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/Contact"
                      }
                    },
                    "createdOn": {
                      "type": "string",
                      "format": "date-time"
                    },
                    "creditRisk": {
                      "type": "string"
                    },
                    "currencyCode": {
                      "type": "string"
                    },
                    "customerSubType": {
                      "type": "string"
                    },
                    "defaultPaymentMethod": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string"
                        }
                      }
                    },
                    "dslDryLoopInd": {
                      "type": "string"
                    },
                    "familyName": {
                      "type": "string"
                    },
                    "financialAccount": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string"
                        }
                      }
                    },
                    "givenName": {
                      "type": "string"
                    },
                    "id": {
                      "type": "string"
                    },
                    "isEmployee": {
                      "type": "string"
                    },
                    "languagePreference": {
                      "type": "string"
                    },
                    "lastModified": {
                      "type": "string",
                      "format": "date-time"
                    },
                    "name": {
                      "type": "string"
                    },
                    "openDate": {
                      "type": "string",
                      "format": "date-time"
                    },
                    "pastDue": {
                      "type": "number"
                    },
                    "potsBillingId": {
                      "type": "string"
                    },
                    "potsCustCode": {
                      "type": "string"
                    },
                    "profileType": {
                      "type": "string"
                    },
                    "ratingType": {
                      "type": "string"
                    },
                    "relatedParty": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/RelatedPartyCommerce"
                      }
                    },
                    "serviceNbr": {
                      "type": "string"
                    },
                    "serviceType": {
                      "type": "array",
                      "items": {
                        "enum": [
                          "fiber",
                          "wirelessbroadband",
                          "wirelessprepaid",
                          "uverse"
                        ],
                        "type": "string"
                      }
                    },
                    "state": {
                      "type": "string"
                    },
                    "stateDate": {
                      "type": "string",
                      "format": "date-time"
                    },
                    "stateReason": {
                      "type": "string"
                    },
                    "systemOfRecord": {
                      "type": "string"
                    },
                    "relatedPartyRef": {
                      "description": "RelatedParty reference. A related party defines party or party role linked to a specific entity.",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "@baseType": {
                          "description": "When sub-classing, this defines the super-class",
                          "type": "string"
                        },
                        "@referredType": {
                          "description": "The actual type of the target instance when needed for disambiguation.",
                          "type": "string"
                        },
                        "@schemaLocation": {
                          "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                          "type": "string",
                          "format": "uri"
                        },
                        "@type": {
                          "description": "When sub-classing, this defines the sub-class Extensible name",
                          "type": "string"
                        },
                        "href": {
                          "description": "Reference of the related party, could be a party reference or a party role reference",
                          "type": "string",
                          "format": "uri"
                        },
                        "id": {
                          "description": "Unique identifier of a related party",
                          "type": "string"
                        },
                        "name": {
                          "description": "Name of the related party",
                          "type": "string"
                        },
                        "role": {
                          "description": "Role of the related party.",
                          "type": "string"
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "numberInfo": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "numberInfos": {
                "type": "array",
                "items": {
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "cartId": {
                      "type": "string"
                    },
                    "ban": {
                      "type": "string"
                    },
                    "marketCode": {
                      "type": "string"
                    },
                    "subMarketCode": {
                      "type": "string"
                    },
                    "compCode": {
                      "type": "string"
                    },
                    "portType": {
                      "enum": [
                        "NL",
                        "LNP"
                      ],
                      "type": "string"
                    },
                    "customerType": {
                      "type": "string"
                    },
                    "numberPortingDetails": {
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "ctn": {
                          "type": "string"
                        },
                        "formerCarrier": {
                          "type": "string"
                        },
                        "formerCarrierAccount": {
                          "type": "string"
                        },
                        "formerCarrierPassword": {
                          "type": "string"
                        },
                        "formerCarrierPersonalDetails": {
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "firstName": {
                              "type": "string"
                            },
                            "lastName": {
                              "type": "string"
                            },
                            "middleInit": {
                              "type": "string"
                            },
                            "namePrefix": {
                              "type": "string"
                            },
                            "nameSuffix": {
                              "type": "string"
                            },
                            "streetNumber": {
                              "type": "string"
                            },
                            "streetName": {
                              "type": "string"
                            },
                            "city": {
                              "type": "string"
                            },
                            "state": {
                              "type": "string"
                            },
                            "zipCode": {
                              "type": "string"
                            },
                            "contactNumber": {
                              "type": "string"
                            }
                          }
                        }
                      }
                    },
                    "newNumberDetails": {
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "areaCode": {
                          "type": "string"
                        },
                        "serviceArea": {
                          "type": "string"
                        },
                        "zip": {
                          "type": "string"
                        },
                        "location": {
                          "type": "string"
                        }
                      }
                    },
                    "errorMessage": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "accountSecurity": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "required": [
                "billingAccount",
                "userinfo"
              ],
              "properties": {
                "billingAccount": {
                  "$ref": "#/components/schemas/BillingAccountRef"
                },
                "userinfo": {
                  "$ref": "#/components/schemas/Userinfo"
                }
              }
            }
          },
          "addresses": {
            "type": "array",
            "items": {
              "description": "Structured textual way of describing how to find a Property in an urban area (country properties are often defined differently).\nNote : Address corresponds to SID UrbanPropertyAddress",
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "addressCharacteristic": {
                  "type": "array",
                  "items": {
                    "description": "Describes a given characteristic of an object or entity through a name/value pair.",
                    "type": "object",
                    "additionalProperties": false,
                    "required": [
                      "name"
                    ],
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "characteristicRelationship": {
                        "type": "array",
                        "items": {
                          "description": "Another Characteristic that is related to the current Characteristic;",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "@baseType": {
                              "description": "When sub-classing, this defines the super-class",
                              "type": "string"
                            },
                            "@schemaLocation": {
                              "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                              "type": "string",
                              "format": "uri"
                            },
                            "@type": {
                              "description": "When sub-classing, this defines the sub-class Extensible name",
                              "type": "string"
                            },
                            "href": {
                              "description": "Hyperlink reference",
                              "type": "string",
                              "format": "uri"
                            },
                            "id": {
                              "description": "Unique identifier of the characteristic",
                              "type": "string"
                            },
                            "relationshipType": {
                              "description": "The type of relationship",
                              "type": "string"
                            }
                          }
                        }
                      },
                      "id": {
                        "description": "Unique identifier of the characteristic",
                        "type": "string"
                      },
                      "metadata": {
                        "description": "Metadata of the characteristic\n",
                        "type": "array",
                        "items": {
                          "description": "Metadata\n",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "metadataType": {
                              "description": "Type of the metadata\n",
                              "type": "string"
                            },
                            "name": {
                              "description": "Name of the metadata\n",
                              "type": "string"
                            },
                            "value": {
                              "description": "Value of the metadata\n",
                              "type": "string"
                            }
                          }
                        }
                      },
                      "name": {
                        "description": "Name of the characteristic",
                        "type": "string"
                      },
                      "value": {
                        "description": "The value of the characteristic",
                        "type": "string"
                      },
                      "valueMetadata": {
                        "description": "Metadata of the characteristic value\n",
                        "type": "array",
                        "items": {
                          "description": "Catalog and operational metadata\n",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "metadataType": {
                              "description": "Type of the metadata\n",
                              "type": "string"
                            },
                            "name": {
                              "description": "Name of the metadata\n",
                              "type": "string"
                            },
                            "sourceValue": {
                              "description": "Value of the metadata source\n",
                              "type": "string"
                            },
                            "value": {
                              "description": "Value of the metadata\n",
                              "type": "string"
                            }
                          }
                        }
                      },
                      "valueType": {
                        "description": "Data type of the value of the characteristic",
                        "type": "string"
                      }
                    }
                  }
                },
                "characteristic": {
                  "type": "array",
                  "items": {
                    "description": "Describes a given characteristic of an object or entity through a name/value pair.",
                    "type": "object",
                    "additionalProperties": false,
                    "required": [
                      "name"
                    ],
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "characteristicRelationship": {
                        "type": "array",
                        "items": {
                          "description": "Another Characteristic that is related to the current Characteristic;",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "@baseType": {
                              "description": "When sub-classing, this defines the super-class",
                              "type": "string"
                            },
                            "@schemaLocation": {
                              "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                              "type": "string",
                              "format": "uri"
                            },
                            "@type": {
                              "description": "When sub-classing, this defines the sub-class Extensible name",
                              "type": "string"
                            },
                            "href": {
                              "description": "Hyperlink reference",
                              "type": "string",
                              "format": "uri"
                            },
                            "id": {
                              "description": "Unique identifier of the characteristic",
                              "type": "string"
                            },
                            "relationshipType": {
                              "description": "The type of relationship",
                              "type": "string"
                            }
                          }
                        }
                      },
                      "id": {
                        "description": "Unique identifier of the characteristic",
                        "type": "string"
                      },
                      "metadata": {
                        "description": "Metadata of the characteristic\n",
                        "type": "array",
                        "items": {
                          "description": "Metadata\n",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "metadataType": {
                              "description": "Type of the metadata\n",
                              "type": "string"
                            },
                            "name": {
                              "description": "Name of the metadata\n",
                              "type": "string"
                            },
                            "value": {
                              "description": "Value of the metadata\n",
                              "type": "string"
                            }
                          }
                        }
                      },
                      "name": {
                        "description": "Name of the characteristic",
                        "type": "string"
                      },
                      "value": {
                        "description": "The value of the characteristic",
                        "type": "string"
                      },
                      "valueMetadata": {
                        "description": "Metadata of the characteristic value\n",
                        "type": "array",
                        "items": {
                          "description": "Catalog and operational metadata\n",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "metadataType": {
                              "description": "Type of the metadata\n",
                              "type": "string"
                            },
                            "name": {
                              "description": "Name of the metadata\n",
                              "type": "string"
                            },
                            "sourceValue": {
                              "description": "Value of the metadata source\n",
                              "type": "string"
                            },
                            "value": {
                              "description": "Value of the metadata\n",
                              "type": "string"
                            }
                          }
                        }
                      },
                      "valueType": {
                        "description": "Data type of the value of the characteristic",
                        "type": "string"
                      }
                    }
                  }
                },
                "city": {
                  "description": "City that the address is in",
                  "type": "string"
                },
                "country": {
                  "description": "Country that the address is in",
                  "type": "string"
                },
                "geographicLocation": {
                  "description": "A GeographicLocation is a pure-virtual super-class to the GeoJSON-aligned geometries of Point (addresses and locations), MultiPoint, LineString (streets, highways and boundaries), MultiLineString and Polygon (countries, provinces, tracts of land). Use the @type attribute to specify which of these is being specified by the geometry attribute.",
                  "type": "object",
                  "additionalProperties": false,
                  "required": [
                    "@type"
                  ],
                  "properties": {
                    "@baseType": {
                      "description": "When sub-classing, this defines the super-class",
                      "type": "string"
                    },
                    "@referredType": {
                      "description": "The actual type of the target instance when needed for disambiguation.",
                      "type": "string"
                    },
                    "@schemaLocation": {
                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                      "type": "string",
                      "format": "uri"
                    },
                    "@type": {
                      "description": "When sub-classing, this defines the sub-class Extensible name",
                      "enum": [
                        "GeoJsonPoint",
                        "GeoJsonMultiPoint",
                        "GeoJsonLineString",
                        "GeoJsonMultiLineString",
                        "GeoJsonPolygon"
                      ],
                      "type": "string"
                    },
                    "bbox": {
                      "description": "A bounding box array that contains the geometry. The axes order follows the axes order of the geometry",
                      "type": "array",
                      "items": {
                        "type": "number"
                      }
                    },
                    "characteristic": {
                      "type": "array",
                      "items": {
                        "description": "Describes a given characteristic of an object or entity through a name/value pair.",
                        "type": "object",
                        "additionalProperties": false,
                        "required": [
                          "name"
                        ],
                        "properties": {
                          "@baseType": {
                            "description": "When sub-classing, this defines the super-class",
                            "type": "string"
                          },
                          "@schemaLocation": {
                            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                            "type": "string",
                            "format": "uri"
                          },
                          "@type": {
                            "description": "When sub-classing, this defines the sub-class Extensible name",
                            "type": "string"
                          },
                          "characteristicRelationship": {
                            "type": "array",
                            "items": {
                              "description": "Another Characteristic that is related to the current Characteristic;",
                              "type": "object",
                              "additionalProperties": false,
                              "properties": {
                                "@baseType": {
                                  "description": "When sub-classing, this defines the super-class",
                                  "type": "string"
                                },
                                "@schemaLocation": {
                                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                  "type": "string",
                                  "format": "uri"
                                },
                                "@type": {
                                  "description": "When sub-classing, this defines the sub-class Extensible name",
                                  "type": "string"
                                },
                                "href": {
                                  "description": "Hyperlink reference",
                                  "type": "string",
                                  "format": "uri"
                                },
                                "id": {
                                  "description": "Unique identifier of the characteristic",
                                  "type": "string"
                                },
                                "relationshipType": {
                                  "description": "The type of relationship",
                                  "type": "string"
                                }
                              }
                            }
                          },
                          "id": {
                            "description": "Unique identifier of the characteristic",
                            "type": "string"
                          },
                          "metadata": {
                            "description": "Metadata of the characteristic\n",
                            "type": "array",
                            "items": {
                              "description": "Metadata\n",
                              "type": "object",
                              "additionalProperties": false,
                              "properties": {
                                "metadataType": {
                                  "description": "Type of the metadata\n",
                                  "type": "string"
                                },
                                "name": {
                                  "description": "Name of the metadata\n",
                                  "type": "string"
                                },
                                "value": {
                                  "description": "Value of the metadata\n",
                                  "type": "string"
                                }
                              }
                            }
                          },
                          "name": {
                            "description": "Name of the characteristic",
                            "type": "string"
                          },
                          "value": {
                            "description": "The value of the characteristic",
                            "type": "string"
                          },
                          "valueMetadata": {
                            "description": "Metadata of the characteristic value\n",
                            "type": "array",
                            "items": {
                              "description": "Catalog and operational metadata\n",
                              "type": "object",
                              "additionalProperties": false,
                              "properties": {
                                "metadataType": {
                                  "description": "Type of the metadata\n",
                                  "type": "string"
                                },
                                "name": {
                                  "description": "Name of the metadata\n",
                                  "type": "string"
                                },
                                "sourceValue": {
                                  "description": "Value of the metadata source\n",
                                  "type": "string"
                                },
                                "value": {
                                  "description": "Value of the metadata\n",
                                  "type": "string"
                                }
                              }
                            }
                          },
                          "valueType": {
                            "description": "Data type of the value of the characteristic",
                            "type": "string"
                          }
                        }
                      }
                    },
                    "href": {
                      "description": "Hyperlink reference",
                      "type": "string",
                      "format": "uri"
                    },
                    "id": {
                      "description": "unique identifier",
                      "type": "string"
                    },
                    "name": {
                      "description": "Name of the related entity.",
                      "type": "string"
                    },
                    "role": {
                      "type": "string"
                    },
                    "validated": {
                      "type": "boolean"
                    }
                  }
                },
                "geographicSubAddress": {
                  "type": "array",
                  "items": {
                    "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.",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "buildingName": {
                        "description": "allows for buildings that have well-known names",
                        "type": "string"
                      },
                      "href": {
                        "description": "Link to the subAddress",
                        "type": "string",
                        "format": "uri"
                      },
                      "id": {
                        "description": "Unique Identifier of the subAddress",
                        "type": "string"
                      },
                      "levelNumber": {
                        "description": "used where a level type may be repeated e.g. BASEMENT 1, BASEMENT 2",
                        "type": "string"
                      },
                      "levelType": {
                        "description": "describes level types within a building",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the subAddress to identify it with a meaningful identification",
                        "type": "string"
                      },
                      "privateStreetName": {
                        "description": "private streets internal to a property (e.g. a university) may have internal names that are not recorded by the land title office.",
                        "type": "string"
                      },
                      "privateStreetNumber": {
                        "description": "private streets numbers internal to a private street",
                        "type": "string"
                      },
                      "subAddressType": {
                        "description": "Type of subAddress : it can be a subunit or a private street",
                        "type": "string"
                      },
                      "subUnitNumber": {
                        "description": "the discriminator used for the subunit\noften just a simple number e.g. FLAT 5, may also be a range",
                        "type": "string"
                      },
                      "subUnitType": {
                        "description": "the type of subunit\ne.g.BERTH, FLAT, PIER, SUITE, SHOP, TOWER, UNIT, WHARF",
                        "type": "string"
                      }
                    }
                  }
                },
                "href": {
                  "description": "Unique reference of the place",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "Unique identifier of the place",
                  "type": "string"
                },
                "locality": {
                  "description": "An area of defined or undefined boundaries within a local authority or other legislatively defined area, usually rural or semi rural in nature. [ANZLIC-STREET], or a suburb, a bounded locality within a city, town or shire principally of urban character [ANZLICSTREET]",
                  "type": "string"
                },
                "name": {
                  "description": "A user-friendly name for the place, such as [Paris Store], [London Store], [Main Home]",
                  "type": "string"
                },
                "postcode": {
                  "description": "descriptor for a postal delivery area, used to speed and simplify the delivery of mail (also know as zipcode)",
                  "type": "string"
                },
                "postcodeExtension": {
                  "type": "string"
                },
                "role": {
                  "type": "string"
                },
                "stateOrProvince": {
                  "description": "the State or Province that the address is in",
                  "type": "string"
                },
                "streetName": {
                  "description": "Name of the street or other street type",
                  "type": "string"
                },
                "streetNr": {
                  "description": "Number identifying a specific property on a public street. It may be combined with streetNrLast for ranged addresses",
                  "type": "string"
                },
                "streetNrLast": {
                  "description": "Last number in a range of street numbers allocated to a property",
                  "type": "string"
                },
                "streetNrLastSuffix": {
                  "description": "Last street number suffix for a ranged address",
                  "type": "string"
                },
                "streetNrSuffix": {
                  "description": "the first street number suffix",
                  "type": "string"
                },
                "streetSuffix": {
                  "description": "A modifier denoting a relative direction",
                  "type": "string"
                },
                "streetType": {
                  "description": "alley, avenue, boulevard, brae, crescent, drive, highway, lane, terrace, parade, place, tarn, way, wharf ",
                  "type": "string"
                },
                "validated": {
                  "type": "boolean"
                }
              }
            }
          },
          "appointment": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "selected": {
                  "description": "An Appointment is an arrangement to do something or meet someone at a particular time, at a place (for face to face appointment) or in a contact medium (for phone appointment).",
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "@baseType": {
                      "description": "When sub-classing, this defines the super-class",
                      "type": "string"
                    },
                    "@schemaLocation": {
                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                      "type": "string",
                      "format": "uri"
                    },
                    "@type": {
                      "description": "When sub-classing, this defines the sub-class Extensible name",
                      "type": "string"
                    },
                    "attachment": {
                      "type": "array",
                      "items": {
                        "description": "An attachment by value or by reference. An attachment complements the description of an element, for example through a document, a video, a picture.",
                        "type": "object",
                        "additionalProperties": false,
                        "properties": {
                          "@baseType": {
                            "description": "When sub-classing, this defines the super-class",
                            "type": "string"
                          },
                          "@referredType": {
                            "description": "The actual type of the target instance when needed for disambiguation.",
                            "type": "string"
                          },
                          "@schemaLocation": {
                            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                            "type": "string",
                            "format": "uri"
                          },
                          "@type": {
                            "description": "When sub-classing, this defines the sub-class Extensible name",
                            "type": "string"
                          },
                          "attachmentType": {
                            "description": "Attachment type such as video, picture",
                            "type": "string"
                          },
                          "content": {
                            "description": "The actual contents of the attachment object, if embedded, encoded as base64",
                            "type": "string",
                            "format": "base64"
                          },
                          "description": {
                            "description": "A narrative text describing the content of the attachment",
                            "type": "string"
                          },
                          "href": {
                            "description": "URL serving as reference for the attachment resource",
                            "type": "string",
                            "format": "uri"
                          },
                          "id": {
                            "description": "Unique-Identifier for this attachment",
                            "type": "string"
                          },
                          "mimeType": {
                            "description": "Attachment mime type such as extension file for video, picture and document",
                            "type": "string"
                          },
                          "name": {
                            "description": "Name of the related entity.",
                            "type": "string"
                          },
                          "size": {
                            "description": "The size of the attachment.",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "amount": {
                                "description": "Numeric value in a given unit",
                                "default": 1,
                                "type": "number",
                                "format": "double"
                              },
                              "units": {
                                "description": "Unit",
                                "type": "string"
                              }
                            }
                          },
                          "url": {
                            "description": "Link to the attachment media/content",
                            "type": "string",
                            "format": "uri"
                          },
                          "validFor": {
                            "description": "The period of time for which the attachment is valid",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "endDateTime": {
                                "description": "End of the time period, using IETC-RFC-3339 format",
                                "type": "string",
                                "format": "date-time"
                              },
                              "startDateTime": {
                                "description": "Start of the time period, using IETC-RFC-3339 format",
                                "type": "string",
                                "format": "date-time"
                              }
                            }
                          }
                        }
                      }
                    },
                    "calendarEvent": {
                      "description": "A calendar event reference (CalendarEventRef). The appointment is associated with a calendar event (an happening at a point of time) associated to a calendar entry.",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "@baseType": {
                          "description": "When sub-classing, this defines the super-class",
                          "type": "string"
                        },
                        "@referredType": {
                          "description": "The actual type of the target instance when needed for disambiguation.",
                          "type": "string"
                        },
                        "@schemaLocation": {
                          "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                          "type": "string",
                          "format": "uri"
                        },
                        "@type": {
                          "description": "When sub-classing, this defines the sub-class Extensible name",
                          "type": "string"
                        },
                        "href": {
                          "description": "Hyperlink reference",
                          "type": "string",
                          "format": "uri"
                        },
                        "id": {
                          "description": "unique identifier",
                          "type": "string"
                        },
                        "name": {
                          "description": "Name of the related entity.",
                          "type": "string"
                        }
                      }
                    },
                    "category": {
                      "description": "Business category : intervention for example or to be more precise after SalesIntervention, orderDeliveryIntervention,...",
                      "type": "string"
                    },
                    "contactMedium": {
                      "type": "array",
                      "items": {
                        "description": "Indicates the contact medium that could be used to contact the party.",
                        "type": "object",
                        "additionalProperties": false,
                        "properties": {
                          "@baseType": {
                            "description": "When sub-classing, this defines the super-class",
                            "type": "string"
                          },
                          "@schemaLocation": {
                            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                            "type": "string",
                            "format": "uri"
                          },
                          "@type": {
                            "description": "When sub-classing, this defines the sub-class Extensible name",
                            "type": "string"
                          },
                          "characteristic": {
                            "description": "Any additional characteristic(s) of this contact medium",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "@baseType": {
                                "description": "When sub-classing, this defines the super-class",
                                "type": "string"
                              },
                              "@schemaLocation": {
                                "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                "type": "string",
                                "format": "uri"
                              },
                              "@type": {
                                "description": "When sub-classing, this defines the sub-class Extensible name",
                                "type": "string"
                              },
                              "city": {
                                "description": "The city",
                                "type": "string"
                              },
                              "contactType": {
                                "description": "The type of contact, for example: phone number such as mobile, fixed home, fixed office. postal address such as shipping instalation…",
                                "type": "string"
                              },
                              "country": {
                                "description": "The country",
                                "type": "string"
                              },
                              "emailAddress": {
                                "description": "Full email address in standard format",
                                "type": "string"
                              },
                              "faxNumber": {
                                "description": "The fax number of the contact",
                                "type": "string"
                              },
                              "href": {
                                "description": "Hyperlink reference",
                                "type": "string",
                                "format": "uri"
                              },
                              "id": {
                                "description": "unique identifier",
                                "type": "string"
                              },
                              "phoneNumber": {
                                "description": "The primary phone number of the contact",
                                "type": "string"
                              },
                              "place": {
                                "description": "Place reference. Place defines the places where the products are sold or delivered.",
                                "type": "object",
                                "additionalProperties": false,
                                "properties": {
                                  "@baseType": {
                                    "description": "When sub-classing, this defines the super-class",
                                    "type": "string"
                                  },
                                  "@schemaLocation": {
                                    "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                    "type": "string",
                                    "format": "uri"
                                  },
                                  "@type": {
                                    "description": "When sub-classing, this defines the sub-class Extensible name",
                                    "type": "string"
                                  },
                                  "characteristic": {
                                    "type": "array",
                                    "items": {
                                      "description": "Describes a given characteristic of an object or entity through a name/value pair.",
                                      "type": "object",
                                      "additionalProperties": false,
                                      "required": [
                                        "name"
                                      ],
                                      "properties": {
                                        "@baseType": {
                                          "description": "When sub-classing, this defines the super-class",
                                          "type": "string"
                                        },
                                        "@schemaLocation": {
                                          "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                          "type": "string",
                                          "format": "uri"
                                        },
                                        "@type": {
                                          "description": "When sub-classing, this defines the sub-class Extensible name",
                                          "type": "string"
                                        },
                                        "characteristicRelationship": {
                                          "type": "array",
                                          "items": {
                                            "description": "Another Characteristic that is related to the current Characteristic;",
                                            "type": "object",
                                            "additionalProperties": false,
                                            "properties": {
                                              "@baseType": {
                                                "description": "When sub-classing, this defines the super-class",
                                                "type": "string"
                                              },
                                              "@schemaLocation": {
                                                "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                                "type": "string",
                                                "format": "uri"
                                              },
                                              "@type": {
                                                "description": "When sub-classing, this defines the sub-class Extensible name",
                                                "type": "string"
                                              },
                                              "href": {
                                                "description": "Hyperlink reference",
                                                "type": "string",
                                                "format": "uri"
                                              },
                                              "id": {
                                                "description": "Unique identifier of the characteristic",
                                                "type": "string"
                                              },
                                              "relationshipType": {
                                                "description": "The type of relationship",
                                                "type": "string"
                                              }
                                            }
                                          }
                                        },
                                        "id": {
                                          "description": "Unique identifier of the characteristic",
                                          "type": "string"
                                        },
                                        "metadata": {
                                          "description": "Metadata of the characteristic\n",
                                          "type": "array",
                                          "items": {
                                            "description": "Metadata\n",
                                            "type": "object",
                                            "additionalProperties": false,
                                            "properties": {
                                              "metadataType": {
                                                "description": "Type of the metadata\n",
                                                "type": "string"
                                              },
                                              "name": {
                                                "description": "Name of the metadata\n",
                                                "type": "string"
                                              },
                                              "value": {
                                                "description": "Value of the metadata\n",
                                                "type": "string"
                                              }
                                            }
                                          }
                                        },
                                        "name": {
                                          "description": "Name of the characteristic",
                                          "type": "string"
                                        },
                                        "value": {
                                          "description": "The value of the characteristic",
                                          "type": "string"
                                        },
                                        "valueMetadata": {
                                          "description": "Metadata of the characteristic value\n",
                                          "type": "array",
                                          "items": {
                                            "description": "Catalog and operational metadata\n",
                                            "type": "object",
                                            "additionalProperties": false,
                                            "properties": {
                                              "metadataType": {
                                                "description": "Type of the metadata\n",
                                                "type": "string"
                                              },
                                              "name": {
                                                "description": "Name of the metadata\n",
                                                "type": "string"
                                              },
                                              "sourceValue": {
                                                "description": "Value of the metadata source\n",
                                                "type": "string"
                                              },
                                              "value": {
                                                "description": "Value of the metadata\n",
                                                "type": "string"
                                              }
                                            }
                                          }
                                        },
                                        "valueType": {
                                          "description": "Data type of the value of the characteristic",
                                          "type": "string"
                                        }
                                      }
                                    }
                                  },
                                  "href": {
                                    "description": "Unique reference of the place",
                                    "type": "string",
                                    "format": "uri"
                                  },
                                  "id": {
                                    "description": "Unique identifier of the place",
                                    "type": "string"
                                  },
                                  "name": {
                                    "description": "A user-friendly name for the place, such as [Paris Store], [London Store], [Main Home]",
                                    "type": "string"
                                  },
                                  "role": {
                                    "type": "string"
                                  },
                                  "validated": {
                                    "type": "boolean"
                                  }
                                }
                              },
                              "postCode": {
                                "description": "Postcode",
                                "type": "string"
                              },
                              "socialNetworkId": {
                                "description": "Identifier as a member of a social network",
                                "type": "string"
                              },
                              "stateOrProvince": {
                                "description": "State or province",
                                "type": "string"
                              },
                              "street1": {
                                "description": "Describes the street",
                                "type": "string"
                              },
                              "street2": {
                                "description": "Complementary street description",
                                "type": "string"
                              },
                              "verified": {
                                "type": "boolean"
                              }
                            }
                          },
                          "href": {
                            "description": "Hyperlink reference",
                            "type": "string",
                            "format": "uri"
                          },
                          "id": {
                            "description": "unique identifier",
                            "type": "string"
                          },
                          "mediumType": {
                            "description": "Type of the contact medium, such as: email address, telephone number, postal address",
                            "type": "string"
                          },
                          "preferred": {
                            "description": "If true, indicates that is the preferred contact medium",
                            "type": "boolean"
                          },
                          "validFor": {
                            "description": "The time period that the contact medium is valid for",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "endDateTime": {
                                "description": "End of the time period, using IETC-RFC-3339 format",
                                "type": "string",
                                "format": "date-time"
                              },
                              "startDateTime": {
                                "description": "Start of the time period, using IETC-RFC-3339 format",
                                "type": "string",
                                "format": "date-time"
                              }
                            }
                          }
                        }
                      }
                    },
                    "creationDate": {
                      "description": "Appointment creation date",
                      "type": "string",
                      "format": "date-time"
                    },
                    "description": {
                      "description": "Short free text describing the appointment",
                      "type": "string"
                    },
                    "externalId": {
                      "description": "External reference known by the customer",
                      "type": "string"
                    },
                    "href": {
                      "description": "Unique URI used to access to the appointment resource",
                      "type": "string",
                      "format": "uri"
                    },
                    "id": {
                      "description": "Unique identifier of the appointment",
                      "type": "string"
                    },
                    "lastUpdate": {
                      "description": "Date of last appointment update",
                      "type": "string",
                      "format": "date-time"
                    },
                    "note": {
                      "type": "array",
                      "items": {
                        "description": "Extra information about a given entity",
                        "type": "object",
                        "additionalProperties": false,
                        "properties": {
                          "@baseType": {
                            "description": "When sub-classing, this defines the super-class",
                            "type": "string"
                          },
                          "@schemaLocation": {
                            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                            "type": "string",
                            "format": "uri"
                          },
                          "@type": {
                            "description": "When sub-classing, this defines the sub-class Extensible name",
                            "type": "string"
                          },
                          "author": {
                            "description": "Author of the note",
                            "type": "string"
                          },
                          "date": {
                            "description": "Date of the note",
                            "type": "string",
                            "format": "date-time"
                          },
                          "id": {
                            "description": "Identifier of the note within its containing entity",
                            "type": "string"
                          },
                          "text": {
                            "description": "Text of the note",
                            "type": "string"
                          }
                        }
                      }
                    },
                    "relatedEntity": {
                      "type": "array",
                      "items": {
                        "description": "A reference to an entity, where the type of the entity is not known in advance.",
                        "type": "object",
                        "additionalProperties": false,
                        "required": [
                          "@referredType",
                          "id",
                          "role"
                        ],
                        "properties": {
                          "@baseType": {
                            "description": "When sub-classing, this defines the super-class",
                            "type": "string"
                          },
                          "@referredType": {
                            "description": "The actual type of the target instance when needed for disambiguation.",
                            "type": "string"
                          },
                          "@schemaLocation": {
                            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                            "type": "string",
                            "format": "uri"
                          },
                          "@type": {
                            "description": "When sub-classing, this defines the sub-class Extensible name",
                            "type": "string"
                          },
                          "href": {
                            "description": "Hyperlink reference",
                            "type": "string",
                            "format": "uri"
                          },
                          "id": {
                            "description": "unique identifier",
                            "type": "string"
                          },
                          "name": {
                            "description": "Name of the related entity.",
                            "type": "string"
                          },
                          "role": {
                            "description": "The role of an entity.",
                            "type": "string"
                          }
                        }
                      }
                    },
                    "relatedParty": {
                      "type": "array",
                      "items": {
                        "description": "Related Entity reference. A related party defines party or party role linked to a specific entity.",
                        "type": "object",
                        "additionalProperties": false,
                        "required": [
                          "id",
                          "role"
                        ],
                        "properties": {
                          "@baseType": {
                            "description": "When sub-classing, this defines the super-class",
                            "type": "string"
                          },
                          "@referredType": {
                            "description": "The actual type of the target instance when needed for disambiguation.",
                            "type": "string"
                          },
                          "@schemaLocation": {
                            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                            "type": "string",
                            "format": "uri"
                          },
                          "@type": {
                            "description": "When sub-classing, this defines the sub-class Extensible name",
                            "type": "string"
                          },
                          "extensions": {
                            "type": "array",
                            "items": {
                              "description": "ATT++::Describes a given characteristic of an object or entity through a name/value pair.",
                              "type": "object",
                              "additionalProperties": false,
                              "required": [
                                "name",
                                "value"
                              ],
                              "properties": {
                                "@baseType": {
                                  "description": "When sub-classing, this defines the super-class",
                                  "type": "string"
                                },
                                "@referredType": {
                                  "description": "The actual type of the target instance when needed for disambiguation.",
                                  "type": "string"
                                },
                                "@schemaLocation": {
                                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                  "type": "string",
                                  "format": "uri"
                                },
                                "@type": {
                                  "description": "When sub-classing, this defines the sub-class Extensible name",
                                  "type": "string"
                                },
                                "href": {
                                  "description": "Hyperlink reference",
                                  "type": "string",
                                  "format": "uri"
                                },
                                "id": {
                                  "description": "unique identifier",
                                  "type": "string"
                                },
                                "name": {
                                  "description": "Name of the characteristic",
                                  "type": "string"
                                },
                                "value": {
                                  "description": "Value of the characteristic",
                                  "type": "string"
                                },
                                "valueType": {
                                  "description": "Data type of the value of the characteristic",
                                  "type": "string"
                                }
                              }
                            }
                          },
                          "href": {
                            "description": "Hyperlink reference",
                            "type": "string",
                            "format": "uri"
                          },
                          "id": {
                            "description": "unique identifier",
                            "type": "string"
                          },
                          "name": {
                            "description": "Name of the related entity.",
                            "type": "string"
                          },
                          "partyType": {
                            "type": "string"
                          },
                          "role": {
                            "description": "Role played by the related party",
                            "type": "string"
                          }
                        }
                      }
                    },
                    "relatedPlace": {
                      "description": "Related Entity reference. A related place defines a place described by reference or by value linked to a specific entity. The polymorphic attributes @type, @schemaLocation & @referredType are related to the place entity and not the RelatedPlaceRefOrValue class itself",
                      "type": "object",
                      "additionalProperties": false,
                      "required": [
                        "role"
                      ],
                      "properties": {
                        "@baseType": {
                          "description": "When sub-classing, this defines the super-class",
                          "type": "string"
                        },
                        "@referredType": {
                          "description": "The actual type of the target instance when needed for disambiguation.",
                          "type": "string"
                        },
                        "@schemaLocation": {
                          "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                          "type": "string",
                          "format": "uri"
                        },
                        "@type": {
                          "description": "When sub-classing, this defines the sub-class Extensible name",
                          "type": "string"
                        },
                        "characteristic": {
                          "type": "array",
                          "items": {
                            "description": "Describes a given characteristic of an object or entity through a name/value pair.",
                            "type": "object",
                            "additionalProperties": false,
                            "required": [
                              "name"
                            ],
                            "properties": {
                              "@baseType": {
                                "description": "When sub-classing, this defines the super-class",
                                "type": "string"
                              },
                              "@schemaLocation": {
                                "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                "type": "string",
                                "format": "uri"
                              },
                              "@type": {
                                "description": "When sub-classing, this defines the sub-class Extensible name",
                                "type": "string"
                              },
                              "characteristicRelationship": {
                                "type": "array",
                                "items": {
                                  "description": "Another Characteristic that is related to the current Characteristic;",
                                  "type": "object",
                                  "additionalProperties": false,
                                  "properties": {
                                    "@baseType": {
                                      "description": "When sub-classing, this defines the super-class",
                                      "type": "string"
                                    },
                                    "@schemaLocation": {
                                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                      "type": "string",
                                      "format": "uri"
                                    },
                                    "@type": {
                                      "description": "When sub-classing, this defines the sub-class Extensible name",
                                      "type": "string"
                                    },
                                    "href": {
                                      "description": "Hyperlink reference",
                                      "type": "string",
                                      "format": "uri"
                                    },
                                    "id": {
                                      "description": "Unique identifier of the characteristic",
                                      "type": "string"
                                    },
                                    "relationshipType": {
                                      "description": "The type of relationship",
                                      "type": "string"
                                    }
                                  }
                                }
                              },
                              "id": {
                                "description": "Unique identifier of the characteristic",
                                "type": "string"
                              },
                              "metadata": {
                                "description": "Metadata of the characteristic\n",
                                "type": "array",
                                "items": {
                                  "description": "Metadata\n",
                                  "type": "object",
                                  "additionalProperties": false,
                                  "properties": {
                                    "metadataType": {
                                      "description": "Type of the metadata\n",
                                      "type": "string"
                                    },
                                    "name": {
                                      "description": "Name of the metadata\n",
                                      "type": "string"
                                    },
                                    "value": {
                                      "description": "Value of the metadata\n",
                                      "type": "string"
                                    }
                                  }
                                }
                              },
                              "name": {
                                "description": "Name of the characteristic",
                                "type": "string"
                              },
                              "value": {
                                "description": "The value of the characteristic",
                                "type": "string"
                              },
                              "valueMetadata": {
                                "description": "Metadata of the characteristic value\n",
                                "type": "array",
                                "items": {
                                  "description": "Catalog and operational metadata\n",
                                  "type": "object",
                                  "additionalProperties": false,
                                  "properties": {
                                    "metadataType": {
                                      "description": "Type of the metadata\n",
                                      "type": "string"
                                    },
                                    "name": {
                                      "description": "Name of the metadata\n",
                                      "type": "string"
                                    },
                                    "sourceValue": {
                                      "description": "Value of the metadata source\n",
                                      "type": "string"
                                    },
                                    "value": {
                                      "description": "Value of the metadata\n",
                                      "type": "string"
                                    }
                                  }
                                }
                              },
                              "valueType": {
                                "description": "Data type of the value of the characteristic",
                                "type": "string"
                              }
                            }
                          }
                        },
                        "href": {
                          "description": "Hyperlink reference",
                          "type": "string",
                          "format": "uri"
                        },
                        "id": {
                          "description": "unique identifier",
                          "type": "string"
                        },
                        "name": {
                          "description": "Name of the related entity.",
                          "type": "string"
                        },
                        "role": {
                          "type": "string"
                        },
                        "validated": {
                          "type": "boolean"
                        }
                      }
                    },
                    "status": {
                      "description": "Valid values for the lifecycle state of the appointment",
                      "enum": [
                        "initialized",
                        "confirmed",
                        "cancelled",
                        "completed",
                        "failed"
                      ],
                      "type": "string"
                    },
                    "validFor": {
                      "description": "A period of time, either as a deadline (endDateTime only) a startDateTime only, or both",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "endDateTime": {
                          "description": "End of the time period, using IETC-RFC-3339 format",
                          "type": "string",
                          "format": "date-time"
                        },
                        "startDateTime": {
                          "description": "Start of the time period, using IETC-RFC-3339 format",
                          "type": "string",
                          "format": "date-time"
                        }
                      }
                    }
                  }
                },
                "calendarEventInfo": {
                  "type": "array",
                  "items": {
                    "description": "Base entity schema for use in TMForum Open-APIs",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "day": {
                        "description": "Day where the calendar status applies (e.g.: monday, mon-to-fri, weekdays, weekend, all week, ...)",
                        "type": "string"
                      },
                      "hourPeriod": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "endHour": {
                              "description": "The time when the status ends applying",
                              "type": "string"
                            },
                            "startHour": {
                              "description": "The time when the status starts applying",
                              "type": "string"
                            }
                          }
                        }
                      },
                      "href": {
                        "description": "Hyperlink reference",
                        "type": "string",
                        "format": "uri"
                      },
                      "id": {
                        "description": "unique identifier",
                        "type": "string"
                      },
                      "status": {
                        "description": "Indication of the availability of the site (e.g.: open)",
                        "type": "string"
                      },
                      "timeZone": {
                        "description": "Indication of the timezone applicable to the calendar information (e.g.: Paris, GMT+1)",
                        "type": "string"
                      }
                    }
                  }
                }
              }
            }
          },
          "payment": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "required": [
                "id",
                "details"
              ],
              "properties": {
                "id": {
                  "description": "Unique id of the payment method in the server",
                  "type": "string"
                },
                "href": {
                  "description": "URI where to perform actions on the payment method",
                  "type": "string"
                },
                "role": {
                  "description": "URI where to perform actions on the payment method",
                  "type": "string"
                },
                "name": {
                  "description": "Screen name of the payment method",
                  "type": "string"
                },
                "description": {
                  "description": "Description of the payment method",
                  "type": "string"
                },
                "amount": {
                  "$ref": "#/components/schemas/Money"
                },
                "taxAmount": {
                  "$ref": "#/components/schemas/Money"
                },
                "totalAmount": {
                  "$ref": "#/components/schemas/Money"
                },
                "validFor": {
                  "description": "A period of time, either as a deadline (endDateTime only) a startDateTime only, or both",
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "endDateTime": {
                      "description": "End of the time period, using IETC-RFC-3339 format",
                      "type": "string",
                      "format": "date-time"
                    },
                    "startDateTime": {
                      "description": "Start of the time period, using IETC-RFC-3339 format",
                      "type": "string",
                      "format": "date-time"
                    }
                  }
                },
                "account": {
                  "description": "Account that owns or can use the payment method",
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BillingAccountRef"
                  }
                },
                "preferred": {
                  "description": "Defines whether this particular method is the preferred one",
                  "type": "boolean"
                },
                "relatedParty": {
                  "description": "Account that owns the payment method",
                  "type": "array",
                  "items": {
                    "description": "Related Entity reference. A related party defines party or party role linked to a specific entity.",
                    "type": "object",
                    "additionalProperties": false,
                    "required": [
                      "id",
                      "role"
                    ],
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@referredType": {
                        "description": "The actual type of the target instance when needed for disambiguation.",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "extensions": {
                        "type": "array",
                        "items": {
                          "description": "ATT++::Describes a given characteristic of an object or entity through a name/value pair.",
                          "type": "object",
                          "additionalProperties": false,
                          "required": [
                            "name",
                            "value"
                          ],
                          "properties": {
                            "@baseType": {
                              "description": "When sub-classing, this defines the super-class",
                              "type": "string"
                            },
                            "@referredType": {
                              "description": "The actual type of the target instance when needed for disambiguation.",
                              "type": "string"
                            },
                            "@schemaLocation": {
                              "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                              "type": "string",
                              "format": "uri"
                            },
                            "@type": {
                              "description": "When sub-classing, this defines the sub-class Extensible name",
                              "type": "string"
                            },
                            "href": {
                              "description": "Hyperlink reference",
                              "type": "string",
                              "format": "uri"
                            },
                            "id": {
                              "description": "unique identifier",
                              "type": "string"
                            },
                            "name": {
                              "description": "Name of the characteristic",
                              "type": "string"
                            },
                            "value": {
                              "description": "Value of the characteristic",
                              "type": "string"
                            },
                            "valueType": {
                              "description": "Data type of the value of the characteristic",
                              "type": "string"
                            }
                          }
                        }
                      },
                      "href": {
                        "description": "Hyperlink reference",
                        "type": "string",
                        "format": "uri"
                      },
                      "id": {
                        "description": "unique identifier",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the related entity.",
                        "type": "string"
                      },
                      "partyType": {
                        "type": "string"
                      },
                      "role": {
                        "description": "Role played by the related party",
                        "type": "string"
                      }
                    }
                  }
                },
                "paymentItem": {
                  "description": "Payment order item reference id",
                  "type": "array",
                  "items": {
                    "description": "Entity reference schema to be use for all entityRef class.",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@referredType": {
                        "description": "The actual type of the target instance when needed for disambiguation.",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "href": {
                        "description": "Hyperlink reference",
                        "type": "string",
                        "format": "uri"
                      },
                      "id": {
                        "description": "unique identifier",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the related entity.",
                        "type": "string"
                      }
                    }
                  }
                },
                "@type": {
                  "description": "Payment method type. The content of the details field depends on the value of this one",
                  "enum": [
                    "cash",
                    "digitalWallet",
                    "tokenizedCard",
                    "bankAccountTransfer",
                    "bankAccountDebit",
                    "bankCard",
                    "account",
                    "bucket",
                    "voucher",
                    "check",
                    "loyaltyAccount"
                  ],
                  "type": "string"
                },
                "authorizationCode": {
                  "description": "Authorization code provided by a financial institution. Typically this would be populated for recurring payments using the method, as payments have an authorization code of their own.",
                  "type": "string"
                },
                "status": {
                  "description": "Current status of the payment method",
                  "type": "string"
                },
                "statusDate": {
                  "description": "Last time the status changed",
                  "type": "string",
                  "format": "date-time"
                },
                "details": {
                  "description": "Details of the payment method. This object's type depends on the value of the type field above",
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        }
      },
      "UserinfoBillingAccountResponse": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "billingAccount": {
            "$ref": "#/components/schemas/BillingAccountRef"
          },
          "userinfo": {
            "$ref": "#/components/schemas/Userinfo"
          }
        }
      },
      "NumberSelectionRequest": {
        "description": "ToDo: Update the description here.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "number"
        ],
        "properties": {
          "number": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "required": [
                "id",
                "resource"
              ],
              "properties": {
                "id": {
                  "description": "Number Id",
                  "type": "string"
                },
                "role": {
                  "description": "Number Role",
                  "type": "string"
                },
                "resource": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RelatedResource"
                  }
                }
              }
            }
          }
        }
      },
      "ServiceAddressRequest": {
        "description": "Service Address Request. It handles PPU for Wireless as well.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "address"
        ],
        "properties": {
          "address": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "required": [
                "id",
                "resource"
              ],
              "properties": {
                "id": {
                  "description": "Service Place Id",
                  "type": "string"
                },
                "resource": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RelatedResource"
                  }
                }
              }
            }
          }
        }
      },
      "payment": {
        "type": "array",
        "items": {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "role",
            "resource"
          ],
          "properties": {
            "account": {
              "description": "Account reference. A account may be a party account or a financial account.",
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@referredType": {
                  "description": "The actual type of the target instance when needed for disambiguation.",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "description": {
                  "description": "Detailed description of the account",
                  "type": "string"
                },
                "href": {
                  "description": "Reference of the account",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "Unique identifier of the account",
                  "type": "string"
                },
                "name": {
                  "description": "Name of the account",
                  "type": "string"
                }
              }
            },
            "id": {
              "description": "Payment Id",
              "type": "string"
            },
            "role": {
              "description": "Payment Role",
              "type": "string"
            },
            "amount": {
              "description": "Payment Amount",
              "type": "number"
            },
            "saveForFuture": {
              "description": "is saveForFuture",
              "type": "boolean"
            },
            "characteristic": {
              "type": "array",
              "items": {
                "$ref": "#/components/schemas/KeyValueObject"
              }
            },
            "place": {
              "$ref": "#/components/schemas/Place"
            },
            "paymentDate": {
              "type": "string",
              "format": "date-time"
            },
            "authorizationCode": {
              "type": "string"
            },
            "taxAmount": {
              "description": "Tax Amount",
              "type": "number"
            },
            "paymentType": {
              "description": "Payment Type",
              "type": "string"
            },
            "resource": {
              "type": "array",
              "items": {
                "$ref": "#/components/schemas/RelatedResource"
              }
            }
          }
        }
      },
      "KeyValueObject": {
        "description": "ATT++::Describes a given characteristic of an object or entity through a name/value pair.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "name",
          "value"
        ],
        "properties": {
          "@baseType": {
            "description": "When sub-classing, this defines the super-class",
            "type": "string"
          },
          "@referredType": {
            "description": "The actual type of the target instance when needed for disambiguation.",
            "type": "string"
          },
          "@schemaLocation": {
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "type": "string",
            "format": "uri"
          },
          "@type": {
            "description": "When sub-classing, this defines the sub-class Extensible name",
            "type": "string"
          },
          "href": {
            "description": "Hyperlink reference",
            "type": "string",
            "format": "uri"
          },
          "id": {
            "description": "unique identifier",
            "type": "string"
          },
          "name": {
            "description": "Name of the characteristic",
            "type": "string"
          },
          "value": {
            "description": "Value of the characteristic",
            "type": "string"
          },
          "valueType": {
            "description": "Data type of the value of the characteristic",
            "type": "string"
          }
        }
      },
      "items": {
        "type": "array",
        "items": {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "id",
            "selectedFulfillmentOption"
          ],
          "properties": {
            "id": {
              "description": "Identifier of the product offer",
              "type": "string"
            },
            "quantity": {
              "description": "Quantity ordered",
              "type": "integer"
            },
            "selectedFulfillmentOption": {
              "$ref": "#/components/schemas/ProductOrderItem"
            }
          }
        }
      },
      "billingAccount": {
        "type": "array",
        "items": {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "place",
            "resource"
          ],
          "properties": {
            "id": {
              "description": "Billing Account Id",
              "type": "string"
            },
            "billStructure": {
              "$ref": "#/components/schemas/BillStructure"
            },
            "characteristic": {
              "type": "array",
              "items": {
                "$ref": "#/components/schemas/KeyValueObject"
              }
            },
            "place": {
              "$ref": "#/components/schemas/Place"
            },
            "ratingType": {
              "type": "string"
            },
            "resource": {
              "type": "array",
              "items": {
                "$ref": "#/components/schemas/RelatedResource"
              }
            }
          }
        }
      },
      "Userinfo": {
        "description": "Base entity schema for use in TMForum Open-APIs",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "@baseType": {
            "description": "When sub-classing, this defines the super-class",
            "type": "string"
          },
          "@schemaLocation": {
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "type": "string",
            "format": "uri"
          },
          "@type": {
            "description": "When sub-classing, this defines the sub-class Extensible name",
            "type": "string"
          },
          "address": {
            "description": "Structured textual way of describing how to find a Property in an urban area (country properties are often defined differently).\nNote : Address corresponds to SID UrbanPropertyAddress",
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "@baseType": {
                "description": "When sub-classing, this defines the super-class",
                "type": "string"
              },
              "@schemaLocation": {
                "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                "type": "string",
                "format": "uri"
              },
              "@type": {
                "description": "When sub-classing, this defines the sub-class Extensible name",
                "type": "string"
              },
              "addressCharacteristic": {
                "type": "array",
                "items": {
                  "description": "Describes a given characteristic of an object or entity through a name/value pair.",
                  "type": "object",
                  "additionalProperties": false,
                  "required": [
                    "name"
                  ],
                  "properties": {
                    "@baseType": {
                      "description": "When sub-classing, this defines the super-class",
                      "type": "string"
                    },
                    "@schemaLocation": {
                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                      "type": "string",
                      "format": "uri"
                    },
                    "@type": {
                      "description": "When sub-classing, this defines the sub-class Extensible name",
                      "type": "string"
                    },
                    "characteristicRelationship": {
                      "type": "array",
                      "items": {
                        "description": "Another Characteristic that is related to the current Characteristic;",
                        "type": "object",
                        "additionalProperties": false,
                        "properties": {
                          "@baseType": {
                            "description": "When sub-classing, this defines the super-class",
                            "type": "string"
                          },
                          "@schemaLocation": {
                            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                            "type": "string",
                            "format": "uri"
                          },
                          "@type": {
                            "description": "When sub-classing, this defines the sub-class Extensible name",
                            "type": "string"
                          },
                          "href": {
                            "description": "Hyperlink reference",
                            "type": "string",
                            "format": "uri"
                          },
                          "id": {
                            "description": "Unique identifier of the characteristic",
                            "type": "string"
                          },
                          "relationshipType": {
                            "description": "The type of relationship",
                            "type": "string"
                          }
                        }
                      }
                    },
                    "id": {
                      "description": "Unique identifier of the characteristic",
                      "type": "string"
                    },
                    "metadata": {
                      "description": "Metadata of the characteristic\n",
                      "type": "array",
                      "items": {
                        "description": "Metadata\n",
                        "type": "object",
                        "additionalProperties": false,
                        "properties": {
                          "metadataType": {
                            "description": "Type of the metadata\n",
                            "type": "string"
                          },
                          "name": {
                            "description": "Name of the metadata\n",
                            "type": "string"
                          },
                          "value": {
                            "description": "Value of the metadata\n",
                            "type": "string"
                          }
                        }
                      }
                    },
                    "name": {
                      "description": "Name of the characteristic",
                      "type": "string"
                    },
                    "value": {
                      "description": "The value of the characteristic",
                      "type": "string"
                    },
                    "valueMetadata": {
                      "description": "Metadata of the characteristic value\n",
                      "type": "array",
                      "items": {
                        "description": "Catalog and operational metadata\n",
                        "type": "object",
                        "additionalProperties": false,
                        "properties": {
                          "metadataType": {
                            "description": "Type of the metadata\n",
                            "type": "string"
                          },
                          "name": {
                            "description": "Name of the metadata\n",
                            "type": "string"
                          },
                          "sourceValue": {
                            "description": "Value of the metadata source\n",
                            "type": "string"
                          },
                          "value": {
                            "description": "Value of the metadata\n",
                            "type": "string"
                          }
                        }
                      }
                    },
                    "valueType": {
                      "description": "Data type of the value of the characteristic",
                      "type": "string"
                    }
                  }
                }
              },
              "characteristic": {
                "type": "array",
                "items": {
                  "description": "Describes a given characteristic of an object or entity through a name/value pair.",
                  "type": "object",
                  "additionalProperties": false,
                  "required": [
                    "name"
                  ],
                  "properties": {
                    "@baseType": {
                      "description": "When sub-classing, this defines the super-class",
                      "type": "string"
                    },
                    "@schemaLocation": {
                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                      "type": "string",
                      "format": "uri"
                    },
                    "@type": {
                      "description": "When sub-classing, this defines the sub-class Extensible name",
                      "type": "string"
                    },
                    "characteristicRelationship": {
                      "type": "array",
                      "items": {
                        "description": "Another Characteristic that is related to the current Characteristic;",
                        "type": "object",
                        "additionalProperties": false,
                        "properties": {
                          "@baseType": {
                            "description": "When sub-classing, this defines the super-class",
                            "type": "string"
                          },
                          "@schemaLocation": {
                            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                            "type": "string",
                            "format": "uri"
                          },
                          "@type": {
                            "description": "When sub-classing, this defines the sub-class Extensible name",
                            "type": "string"
                          },
                          "href": {
                            "description": "Hyperlink reference",
                            "type": "string",
                            "format": "uri"
                          },
                          "id": {
                            "description": "Unique identifier of the characteristic",
                            "type": "string"
                          },
                          "relationshipType": {
                            "description": "The type of relationship",
                            "type": "string"
                          }
                        }
                      }
                    },
                    "id": {
                      "description": "Unique identifier of the characteristic",
                      "type": "string"
                    },
                    "metadata": {
                      "description": "Metadata of the characteristic\n",
                      "type": "array",
                      "items": {
                        "description": "Metadata\n",
                        "type": "object",
                        "additionalProperties": false,
                        "properties": {
                          "metadataType": {
                            "description": "Type of the metadata\n",
                            "type": "string"
                          },
                          "name": {
                            "description": "Name of the metadata\n",
                            "type": "string"
                          },
                          "value": {
                            "description": "Value of the metadata\n",
                            "type": "string"
                          }
                        }
                      }
                    },
                    "name": {
                      "description": "Name of the characteristic",
                      "type": "string"
                    },
                    "value": {
                      "description": "The value of the characteristic",
                      "type": "string"
                    },
                    "valueMetadata": {
                      "description": "Metadata of the characteristic value\n",
                      "type": "array",
                      "items": {
                        "description": "Catalog and operational metadata\n",
                        "type": "object",
                        "additionalProperties": false,
                        "properties": {
                          "metadataType": {
                            "description": "Type of the metadata\n",
                            "type": "string"
                          },
                          "name": {
                            "description": "Name of the metadata\n",
                            "type": "string"
                          },
                          "sourceValue": {
                            "description": "Value of the metadata source\n",
                            "type": "string"
                          },
                          "value": {
                            "description": "Value of the metadata\n",
                            "type": "string"
                          }
                        }
                      }
                    },
                    "valueType": {
                      "description": "Data type of the value of the characteristic",
                      "type": "string"
                    }
                  }
                }
              },
              "city": {
                "description": "City that the address is in",
                "type": "string"
              },
              "country": {
                "description": "Country that the address is in",
                "type": "string"
              },
              "geographicLocation": {
                "description": "A GeographicLocation is a pure-virtual super-class to the GeoJSON-aligned geometries of Point (addresses and locations), MultiPoint, LineString (streets, highways and boundaries), MultiLineString and Polygon (countries, provinces, tracts of land). Use the @type attribute to specify which of these is being specified by the geometry attribute.",
                "type": "object",
                "additionalProperties": false,
                "required": [
                  "@type"
                ],
                "properties": {
                  "@baseType": {
                    "description": "When sub-classing, this defines the super-class",
                    "type": "string"
                  },
                  "@referredType": {
                    "description": "The actual type of the target instance when needed for disambiguation.",
                    "type": "string"
                  },
                  "@schemaLocation": {
                    "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                    "type": "string",
                    "format": "uri"
                  },
                  "@type": {
                    "description": "When sub-classing, this defines the sub-class Extensible name",
                    "enum": [
                      "GeoJsonPoint",
                      "GeoJsonMultiPoint",
                      "GeoJsonLineString",
                      "GeoJsonMultiLineString",
                      "GeoJsonPolygon"
                    ],
                    "type": "string"
                  },
                  "bbox": {
                    "description": "A bounding box array that contains the geometry. The axes order follows the axes order of the geometry",
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "characteristic": {
                    "type": "array",
                    "items": {
                      "description": "Describes a given characteristic of an object or entity through a name/value pair.",
                      "type": "object",
                      "additionalProperties": false,
                      "required": [
                        "name"
                      ],
                      "properties": {
                        "@baseType": {
                          "description": "When sub-classing, this defines the super-class",
                          "type": "string"
                        },
                        "@schemaLocation": {
                          "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                          "type": "string",
                          "format": "uri"
                        },
                        "@type": {
                          "description": "When sub-classing, this defines the sub-class Extensible name",
                          "type": "string"
                        },
                        "characteristicRelationship": {
                          "type": "array",
                          "items": {
                            "description": "Another Characteristic that is related to the current Characteristic;",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "@baseType": {
                                "description": "When sub-classing, this defines the super-class",
                                "type": "string"
                              },
                              "@schemaLocation": {
                                "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                "type": "string",
                                "format": "uri"
                              },
                              "@type": {
                                "description": "When sub-classing, this defines the sub-class Extensible name",
                                "type": "string"
                              },
                              "href": {
                                "description": "Hyperlink reference",
                                "type": "string",
                                "format": "uri"
                              },
                              "id": {
                                "description": "Unique identifier of the characteristic",
                                "type": "string"
                              },
                              "relationshipType": {
                                "description": "The type of relationship",
                                "type": "string"
                              }
                            }
                          }
                        },
                        "id": {
                          "description": "Unique identifier of the characteristic",
                          "type": "string"
                        },
                        "metadata": {
                          "description": "Metadata of the characteristic\n",
                          "type": "array",
                          "items": {
                            "description": "Metadata\n",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "metadataType": {
                                "description": "Type of the metadata\n",
                                "type": "string"
                              },
                              "name": {
                                "description": "Name of the metadata\n",
                                "type": "string"
                              },
                              "value": {
                                "description": "Value of the metadata\n",
                                "type": "string"
                              }
                            }
                          }
                        },
                        "name": {
                          "description": "Name of the characteristic",
                          "type": "string"
                        },
                        "value": {
                          "description": "The value of the characteristic",
                          "type": "string"
                        },
                        "valueMetadata": {
                          "description": "Metadata of the characteristic value\n",
                          "type": "array",
                          "items": {
                            "description": "Catalog and operational metadata\n",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "metadataType": {
                                "description": "Type of the metadata\n",
                                "type": "string"
                              },
                              "name": {
                                "description": "Name of the metadata\n",
                                "type": "string"
                              },
                              "sourceValue": {
                                "description": "Value of the metadata source\n",
                                "type": "string"
                              },
                              "value": {
                                "description": "Value of the metadata\n",
                                "type": "string"
                              }
                            }
                          }
                        },
                        "valueType": {
                          "description": "Data type of the value of the characteristic",
                          "type": "string"
                        }
                      }
                    }
                  },
                  "href": {
                    "description": "Hyperlink reference",
                    "type": "string",
                    "format": "uri"
                  },
                  "id": {
                    "description": "unique identifier",
                    "type": "string"
                  },
                  "name": {
                    "description": "Name of the related entity.",
                    "type": "string"
                  },
                  "role": {
                    "type": "string"
                  },
                  "validated": {
                    "type": "boolean"
                  }
                }
              },
              "geographicSubAddress": {
                "type": "array",
                "items": {
                  "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.",
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "@baseType": {
                      "description": "When sub-classing, this defines the super-class",
                      "type": "string"
                    },
                    "@schemaLocation": {
                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                      "type": "string",
                      "format": "uri"
                    },
                    "@type": {
                      "description": "When sub-classing, this defines the sub-class Extensible name",
                      "type": "string"
                    },
                    "buildingName": {
                      "description": "allows for buildings that have well-known names",
                      "type": "string"
                    },
                    "href": {
                      "description": "Link to the subAddress",
                      "type": "string",
                      "format": "uri"
                    },
                    "id": {
                      "description": "Unique Identifier of the subAddress",
                      "type": "string"
                    },
                    "levelNumber": {
                      "description": "used where a level type may be repeated e.g. BASEMENT 1, BASEMENT 2",
                      "type": "string"
                    },
                    "levelType": {
                      "description": "describes level types within a building",
                      "type": "string"
                    },
                    "name": {
                      "description": "Name of the subAddress to identify it with a meaningful identification",
                      "type": "string"
                    },
                    "privateStreetName": {
                      "description": "private streets internal to a property (e.g. a university) may have internal names that are not recorded by the land title office.",
                      "type": "string"
                    },
                    "privateStreetNumber": {
                      "description": "private streets numbers internal to a private street",
                      "type": "string"
                    },
                    "subAddressType": {
                      "description": "Type of subAddress : it can be a subunit or a private street",
                      "type": "string"
                    },
                    "subUnitNumber": {
                      "description": "the discriminator used for the subunit\noften just a simple number e.g. FLAT 5, may also be a range",
                      "type": "string"
                    },
                    "subUnitType": {
                      "description": "the type of subunit\ne.g.BERTH, FLAT, PIER, SUITE, SHOP, TOWER, UNIT, WHARF",
                      "type": "string"
                    }
                  }
                }
              },
              "href": {
                "description": "Unique reference of the place",
                "type": "string",
                "format": "uri"
              },
              "id": {
                "description": "Unique identifier of the place",
                "type": "string"
              },
              "locality": {
                "description": "An area of defined or undefined boundaries within a local authority or other legislatively defined area, usually rural or semi rural in nature. [ANZLIC-STREET], or a suburb, a bounded locality within a city, town or shire principally of urban character [ANZLICSTREET]",
                "type": "string"
              },
              "name": {
                "description": "A user-friendly name for the place, such as [Paris Store], [London Store], [Main Home]",
                "type": "string"
              },
              "postcode": {
                "description": "descriptor for a postal delivery area, used to speed and simplify the delivery of mail (also know as zipcode)",
                "type": "string"
              },
              "postcodeExtension": {
                "type": "string"
              },
              "role": {
                "type": "string"
              },
              "stateOrProvince": {
                "description": "the State or Province that the address is in",
                "type": "string"
              },
              "streetName": {
                "description": "Name of the street or other street type",
                "type": "string"
              },
              "streetNr": {
                "description": "Number identifying a specific property on a public street. It may be combined with streetNrLast for ranged addresses",
                "type": "string"
              },
              "streetNrLast": {
                "description": "Last number in a range of street numbers allocated to a property",
                "type": "string"
              },
              "streetNrLastSuffix": {
                "description": "Last street number suffix for a ranged address",
                "type": "string"
              },
              "streetNrSuffix": {
                "description": "the first street number suffix",
                "type": "string"
              },
              "streetSuffix": {
                "description": "A modifier denoting a relative direction",
                "type": "string"
              },
              "streetType": {
                "description": "alley, avenue, boulevard, brae, crescent, drive, highway, lane, terrace, parade, place, tarn, way, wharf ",
                "type": "string"
              },
              "validated": {
                "type": "boolean"
              }
            }
          },
          "birthdate": {
            "description": "End-User's birthday, represented as an [ISO8601-2004] YYYY-MM-DD format. The year MAY be 0000, indicating that it is omitted. To represent only the year, YYYY format is allowed. Note that depending on the underlying platform's date related function, providing just year can result in varying month and day, so the implementers need to take this factor into account to correctly process the dates",
            "type": "string"
          },
          "email": {
            "description": "End-User's preferred e-mail address. Its value MUST conform to the [RFC5322] addr-spec syntax",
            "type": "string"
          },
          "email_verified": {
            "description": "True if the user's email has been verified.",
            "default": false,
            "type": "boolean"
          },
          "family_name": {
            "description": "Surname(s) or last name(s) of the End-User. Note that in some cultures, people can have multiple family names or no family name; all can be present, with the names being separated by space characters",
            "type": "string"
          },
          "gender": {
            "description": "End-User's gender. Values defined by this specification are female and male. Other values MAY be used when neither of the defined values are applicable",
            "type": "string"
          },
          "given_name": {
            "description": "Given name(s) or first name(s) of the End-User. Note that in some cultures, people can have multiple given names; all can be present, with the names being separated by space characters",
            "type": "string"
          },
          "href": {
            "description": "Hyperlink reference",
            "type": "string",
            "format": "uri"
          },
          "id": {
            "description": "unique identifier",
            "type": "string"
          },
          "legalId": {
            "description": "Identification documentation of the contact",
            "type": "array",
            "items": {
              "description": "Represents our registration of information used as proof of identity by an individual (passport, national identity card, drivers license, social security number, birth certificate)",
              "type": "object",
              "additionalProperties": false,
              "required": [
                "identificationId"
              ],
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "attachment": {
                  "description": "An attachment by value or by reference. An attachment complements the description of an element, for example through a document, a video, a picture.",
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "@baseType": {
                      "description": "When sub-classing, this defines the super-class",
                      "type": "string"
                    },
                    "@referredType": {
                      "description": "The actual type of the target instance when needed for disambiguation.",
                      "type": "string"
                    },
                    "@schemaLocation": {
                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                      "type": "string",
                      "format": "uri"
                    },
                    "@type": {
                      "description": "When sub-classing, this defines the sub-class Extensible name",
                      "type": "string"
                    },
                    "attachmentType": {
                      "description": "Attachment type such as video, picture",
                      "type": "string"
                    },
                    "content": {
                      "description": "The actual contents of the attachment object, if embedded, encoded as base64",
                      "type": "string",
                      "format": "base64"
                    },
                    "description": {
                      "description": "A narrative text describing the content of the attachment",
                      "type": "string"
                    },
                    "href": {
                      "description": "URL serving as reference for the attachment resource",
                      "type": "string",
                      "format": "uri"
                    },
                    "id": {
                      "description": "Unique-Identifier for this attachment",
                      "type": "string"
                    },
                    "mimeType": {
                      "description": "Attachment mime type such as extension file for video, picture and document",
                      "type": "string"
                    },
                    "name": {
                      "description": "Name of the related entity.",
                      "type": "string"
                    },
                    "size": {
                      "description": "The size of the attachment.",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "amount": {
                          "description": "Numeric value in a given unit",
                          "default": 1,
                          "type": "number",
                          "format": "double"
                        },
                        "units": {
                          "description": "Unit",
                          "type": "string"
                        }
                      }
                    },
                    "url": {
                      "description": "Link to the attachment media/content",
                      "type": "string",
                      "format": "uri"
                    },
                    "validFor": {
                      "description": "The period of time for which the attachment is valid",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "endDateTime": {
                          "description": "End of the time period, using IETC-RFC-3339 format",
                          "type": "string",
                          "format": "date-time"
                        },
                        "startDateTime": {
                          "description": "Start of the time period, using IETC-RFC-3339 format",
                          "type": "string",
                          "format": "date-time"
                        }
                      }
                    }
                  }
                },
                "expirationDate": {
                  "description": "ATT++::Date at which the identifier will be expired",
                  "type": "string"
                },
                "href": {
                  "description": "Hyperlink reference",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "unique identifier",
                  "type": "string"
                },
                "identificationId": {
                  "description": "Identifier",
                  "type": "string"
                },
                "identificationType": {
                  "description": "Identification type (passport, national identity card, drivers license, social security number, birth certificate)",
                  "type": "string"
                },
                "issuingAuthority": {
                  "description": "Authority which has issued the identifier, such as: social security, town hall",
                  "type": "string"
                },
                "issuingDate": {
                  "description": "Date at which the identifier was issued",
                  "type": "string",
                  "format": "date-time"
                },
                "validFor": {
                  "description": "A period of time, either as a deadline (endDateTime only) a startDateTime only, or both",
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "endDateTime": {
                      "description": "End of the time period, using IETC-RFC-3339 format",
                      "type": "string",
                      "format": "date-time"
                    },
                    "startDateTime": {
                      "description": "Start of the time period, using IETC-RFC-3339 format",
                      "type": "string",
                      "format": "date-time"
                    }
                  }
                }
              }
            }
          },
          "locale": {
            "description": "End-User's locale, represented as a [RFC5646] language tag. This is typically an [ISO639-1] language code in lowercase and an [ISO3166-1] country code in uppercase, separated by a dash. For example, en-US or fr-CA. As a compatibility note, some implementations have used an underscore as the separator rather than a dash, for example, en_US",
            "type": "string"
          },
          "middle_name": {
            "description": "Middle name(s) of the End-User. Note that in some cultures, people can have multiple middle names; all can be present, with the names being separated by space characters. Also note that in some cultures, middle names are not used",
            "type": "string"
          },
          "name": {
            "description": "End-User's full name in displayable form including all name parts, possibly including titles and suffixes, ordered according to the End-User's locale and preferences",
            "type": "string"
          },
          "nickname": {
            "description": "Casual name of the End-User that may or may not be the same as the given_name. For instance, a nickname value of Mike might be returned alongside a given_name value of Michael",
            "type": "string"
          },
          "phone_number": {
            "description": "End-User's preferred telephone number. [E.164] is RECOMMENDED as the format of this Claim, for example, +1 (425) 555-1212 or +56 82) 687 2400. If the phone number contains an extension, it is RECOMMENDED that the extension be represented using the [RFC3966] extension syntax, for example, +1 (604) 555-1234;ext=5678",
            "type": "string"
          },
          "phone_number_verified": {
            "description": "True if the user's phone number has been verified.",
            "default": false,
            "type": "boolean"
          },
          "picture": {
            "description": "URL of the End-User's profile picture. This URL MUST refer to an image file (for example, a PNG, JPEG, or GIF image file), rather than to a Web page containing an image. Note that this URL SHOULD specifically reference a profile photo of the End-User suitable for displaying when describing the End-User, rather than an arbitrary photo taken by the End-User",
            "type": "string"
          },
          "preferred_username": {
            "description": "Shorthand name by which the End-User wishes to be referred to at the RP, such as janedoe or j.doe. This value MAY be any valid JSON string including special characters such as @, /, or whitespace",
            "type": "string"
          },
          "profile": {
            "description": "URL of the End-User's profile page. The contents of this Web page SHOULD be about the End-User",
            "type": "string"
          },
          "sub": {
            "description": "Subject - Unique Identifier for the End-User",
            "type": "string"
          },
          "userAssets": {
            "description": "List of additional profile information",
            "type": "array",
            "items": {
              "description": "Base entity schema for use in TMForum Open-APIs",
              "type": "object",
              "additionalProperties": false,
              "required": [
                "entityType",
                "id"
              ],
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "assetType": {
                  "description": "Second level to define the type of managed element for product/service/resource managed entities (e.g.: mobile line subscription, video platform license, mobile equipment, etc). Allows identifying the specific asset within the server referenced. Supported values are implementation and application specific. Other values can be added if those listed are not enough",
                  "enum": [
                    "mobile",
                    "landline",
                    "iptv",
                    "broadband",
                    "email",
                    "invoicing"
                  ],
                  "type": "string"
                },
                "entitlement": {
                  "description": "information about individual entitlements to define access levels to operate over different functions that can be defined in an asset",
                  "type": "array",
                  "items": {
                    "description": "An Entitlement defines access levels to operate over a given function that can be included in an asset.",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "action": {
                        "description": "Level of access granted as part of the permission.",
                        "type": "string"
                      },
                      "function": {
                        "description": "Specific function that can be managed over a given asset.",
                        "type": "string"
                      },
                      "href": {
                        "description": "Hyperlink reference",
                        "type": "string",
                        "format": "uri"
                      },
                      "id": {
                        "description": "Identifier of the entitlement.",
                        "type": "string"
                      }
                    }
                  }
                },
                "entityType": {
                  "description": "Type of managed entity (e.g.: product, resource, service, customer, account)",
                  "enum": [
                    "customer",
                    "account",
                    "product",
                    "service",
                    "resource"
                  ],
                  "type": "string"
                },
                "href": {
                  "description": "Hyperlink reference",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "Unique identifier of referenced entity within the entity/asset pair (customerId, accountId, mobile line number, ...)",
                  "type": "string"
                },
                "role": {
                  "description": "Represents the part played by an individual in relation to being granted a set of entitlements for manageable assets (e.g.: owner, user, viewer, ...)",
                  "type": "string"
                }
              }
            }
          },
          "website": {
            "description": "URL of the End-User's Web page or blog. This Web page SHOULD contain information published by the End-User or an organization that the End-User is affiliated with",
            "type": "string"
          },
          "zoneinfo": {
            "description": "String from zoneinfo time zone database representing the End-User's time zone. For example, Europe/Paris or America/Los_Angeles",
            "type": "string"
          }
        }
      },
      "RelatedPartyCommerce": {
        "description": "Party or party role that is linked to a specific entity.\n",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "id",
          "role"
        ],
        "properties": {
          "@baseType": {
            "description": "When sub-classing, this defines the super-class",
            "type": "string"
          },
          "@referredType": {
            "description": "The actual type of the target instance when needed for disambiguation.",
            "type": "string"
          },
          "@schemaLocation": {
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "type": "string",
            "format": "uri"
          },
          "@type": {
            "description": "When sub-classing, this defines the sub-class Extensible name",
            "type": "string"
          },
          "extensions": {
            "type": "array",
            "items": {
              "description": "ATT++::Describes a given characteristic of an object or entity through a name/value pair.",
              "type": "object",
              "additionalProperties": false,
              "required": [
                "name",
                "value"
              ],
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@referredType": {
                  "description": "The actual type of the target instance when needed for disambiguation.",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "href": {
                  "description": "Hyperlink reference",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "unique identifier",
                  "type": "string"
                },
                "name": {
                  "description": "Name of the characteristic",
                  "type": "string"
                },
                "value": {
                  "description": "Value of the characteristic",
                  "type": "string"
                },
                "valueType": {
                  "description": "Data type of the value of the characteristic",
                  "type": "string"
                }
              }
            }
          },
          "href": {
            "description": "Hyperlink reference",
            "type": "string",
            "format": "uri"
          },
          "id": {
            "description": "unique identifier",
            "type": "string"
          },
          "name": {
            "description": "Name of the related entity.",
            "type": "string"
          },
          "partyType": {
            "type": "string"
          },
          "role": {
            "description": "Role played by the related party",
            "type": "string"
          },
          "segment": {
            "description": "Segment of the related party. Applicable when role=Customer.\n",
            "type": "string"
          }
        }
      },
      "Contact": {
        "description": "An individual or an organization used as a contact point for a given account and accessed via some contact medium.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "contactType"
        ],
        "properties": {
          "@baseType": {
            "description": "When sub-classing, this defines the super-class",
            "type": "string"
          },
          "@schemaLocation": {
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "type": "string",
            "format": "uri"
          },
          "@type": {
            "description": "When sub-classing, this defines the sub-class Extensible name",
            "type": "string"
          },
          "contactMedium": {
            "type": "array",
            "items": {
              "description": "Indicates the contact medium that could be used to contact the party.",
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "characteristic": {
                  "description": "Any additional characteristic(s) of this contact medium",
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "@baseType": {
                      "description": "When sub-classing, this defines the super-class",
                      "type": "string"
                    },
                    "@schemaLocation": {
                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                      "type": "string",
                      "format": "uri"
                    },
                    "@type": {
                      "description": "When sub-classing, this defines the sub-class Extensible name",
                      "type": "string"
                    },
                    "city": {
                      "description": "The city",
                      "type": "string"
                    },
                    "contactType": {
                      "description": "The type of contact, for example: phone number such as mobile, fixed home, fixed office. postal address such as shipping instalation…",
                      "type": "string"
                    },
                    "country": {
                      "description": "The country",
                      "type": "string"
                    },
                    "emailAddress": {
                      "description": "Full email address in standard format",
                      "type": "string"
                    },
                    "faxNumber": {
                      "description": "The fax number of the contact",
                      "type": "string"
                    },
                    "href": {
                      "description": "Hyperlink reference",
                      "type": "string",
                      "format": "uri"
                    },
                    "id": {
                      "description": "unique identifier",
                      "type": "string"
                    },
                    "phoneNumber": {
                      "description": "The primary phone number of the contact",
                      "type": "string"
                    },
                    "place": {
                      "description": "Place reference. Place defines the places where the products are sold or delivered.",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "@baseType": {
                          "description": "When sub-classing, this defines the super-class",
                          "type": "string"
                        },
                        "@schemaLocation": {
                          "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                          "type": "string",
                          "format": "uri"
                        },
                        "@type": {
                          "description": "When sub-classing, this defines the sub-class Extensible name",
                          "type": "string"
                        },
                        "characteristic": {
                          "type": "array",
                          "items": {
                            "description": "Describes a given characteristic of an object or entity through a name/value pair.",
                            "type": "object",
                            "additionalProperties": false,
                            "required": [
                              "name"
                            ],
                            "properties": {
                              "@baseType": {
                                "description": "When sub-classing, this defines the super-class",
                                "type": "string"
                              },
                              "@schemaLocation": {
                                "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                "type": "string",
                                "format": "uri"
                              },
                              "@type": {
                                "description": "When sub-classing, this defines the sub-class Extensible name",
                                "type": "string"
                              },
                              "characteristicRelationship": {
                                "type": "array",
                                "items": {
                                  "description": "Another Characteristic that is related to the current Characteristic;",
                                  "type": "object",
                                  "additionalProperties": false,
                                  "properties": {
                                    "@baseType": {
                                      "description": "When sub-classing, this defines the super-class",
                                      "type": "string"
                                    },
                                    "@schemaLocation": {
                                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                      "type": "string",
                                      "format": "uri"
                                    },
                                    "@type": {
                                      "description": "When sub-classing, this defines the sub-class Extensible name",
                                      "type": "string"
                                    },
                                    "href": {
                                      "description": "Hyperlink reference",
                                      "type": "string",
                                      "format": "uri"
                                    },
                                    "id": {
                                      "description": "Unique identifier of the characteristic",
                                      "type": "string"
                                    },
                                    "relationshipType": {
                                      "description": "The type of relationship",
                                      "type": "string"
                                    }
                                  }
                                }
                              },
                              "id": {
                                "description": "Unique identifier of the characteristic",
                                "type": "string"
                              },
                              "metadata": {
                                "description": "Metadata of the characteristic\n",
                                "type": "array",
                                "items": {
                                  "description": "Metadata\n",
                                  "type": "object",
                                  "additionalProperties": false,
                                  "properties": {
                                    "metadataType": {
                                      "description": "Type of the metadata\n",
                                      "type": "string"
                                    },
                                    "name": {
                                      "description": "Name of the metadata\n",
                                      "type": "string"
                                    },
                                    "value": {
                                      "description": "Value of the metadata\n",
                                      "type": "string"
                                    }
                                  }
                                }
                              },
                              "name": {
                                "description": "Name of the characteristic",
                                "type": "string"
                              },
                              "value": {
                                "description": "The value of the characteristic",
                                "type": "string"
                              },
                              "valueMetadata": {
                                "description": "Metadata of the characteristic value\n",
                                "type": "array",
                                "items": {
                                  "description": "Catalog and operational metadata\n",
                                  "type": "object",
                                  "additionalProperties": false,
                                  "properties": {
                                    "metadataType": {
                                      "description": "Type of the metadata\n",
                                      "type": "string"
                                    },
                                    "name": {
                                      "description": "Name of the metadata\n",
                                      "type": "string"
                                    },
                                    "sourceValue": {
                                      "description": "Value of the metadata source\n",
                                      "type": "string"
                                    },
                                    "value": {
                                      "description": "Value of the metadata\n",
                                      "type": "string"
                                    }
                                  }
                                }
                              },
                              "valueType": {
                                "description": "Data type of the value of the characteristic",
                                "type": "string"
                              }
                            }
                          }
                        },
                        "href": {
                          "description": "Unique reference of the place",
                          "type": "string",
                          "format": "uri"
                        },
                        "id": {
                          "description": "Unique identifier of the place",
                          "type": "string"
                        },
                        "name": {
                          "description": "A user-friendly name for the place, such as [Paris Store], [London Store], [Main Home]",
                          "type": "string"
                        },
                        "role": {
                          "type": "string"
                        },
                        "validated": {
                          "type": "boolean"
                        }
                      }
                    },
                    "postCode": {
                      "description": "Postcode",
                      "type": "string"
                    },
                    "socialNetworkId": {
                      "description": "Identifier as a member of a social network",
                      "type": "string"
                    },
                    "stateOrProvince": {
                      "description": "State or province",
                      "type": "string"
                    },
                    "street1": {
                      "description": "Describes the street",
                      "type": "string"
                    },
                    "street2": {
                      "description": "Complementary street description",
                      "type": "string"
                    },
                    "verified": {
                      "type": "boolean"
                    }
                  }
                },
                "href": {
                  "description": "Hyperlink reference",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "unique identifier",
                  "type": "string"
                },
                "mediumType": {
                  "description": "Type of the contact medium, such as: email address, telephone number, postal address",
                  "type": "string"
                },
                "preferred": {
                  "description": "If true, indicates that is the preferred contact medium",
                  "type": "boolean"
                },
                "validFor": {
                  "description": "The time period that the contact medium is valid for",
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "endDateTime": {
                      "description": "End of the time period, using IETC-RFC-3339 format",
                      "type": "string",
                      "format": "date-time"
                    },
                    "startDateTime": {
                      "description": "Start of the time period, using IETC-RFC-3339 format",
                      "type": "string",
                      "format": "date-time"
                    }
                  }
                }
              }
            }
          },
          "contactName": {
            "description": "A displayable name for that contact",
            "type": "string"
          },
          "contactType": {
            "description": "Type of contact (primary, secondary...)",
            "type": "string"
          },
          "href": {
            "description": "Hyperlink reference",
            "type": "string",
            "format": "uri"
          },
          "id": {
            "description": "unique identifier",
            "type": "string"
          },
          "partyRoleType": {
            "description": "Identifies what kind of party role type is linked to the contact (a account manager...)",
            "type": "string"
          },
          "relatedParty": {
            "description": "Related Entity reference. A related party defines party or party role linked to a specific entity.",
            "type": "object",
            "additionalProperties": false,
            "required": [
              "id",
              "role"
            ],
            "properties": {
              "@baseType": {
                "description": "When sub-classing, this defines the super-class",
                "type": "string"
              },
              "@referredType": {
                "description": "The actual type of the target instance when needed for disambiguation.",
                "type": "string"
              },
              "@schemaLocation": {
                "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                "type": "string",
                "format": "uri"
              },
              "@type": {
                "description": "When sub-classing, this defines the sub-class Extensible name",
                "type": "string"
              },
              "extensions": {
                "type": "array",
                "items": {
                  "description": "ATT++::Describes a given characteristic of an object or entity through a name/value pair.",
                  "type": "object",
                  "additionalProperties": false,
                  "required": [
                    "name",
                    "value"
                  ],
                  "properties": {
                    "@baseType": {
                      "description": "When sub-classing, this defines the super-class",
                      "type": "string"
                    },
                    "@referredType": {
                      "description": "The actual type of the target instance when needed for disambiguation.",
                      "type": "string"
                    },
                    "@schemaLocation": {
                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                      "type": "string",
                      "format": "uri"
                    },
                    "@type": {
                      "description": "When sub-classing, this defines the sub-class Extensible name",
                      "type": "string"
                    },
                    "href": {
                      "description": "Hyperlink reference",
                      "type": "string",
                      "format": "uri"
                    },
                    "id": {
                      "description": "unique identifier",
                      "type": "string"
                    },
                    "name": {
                      "description": "Name of the characteristic",
                      "type": "string"
                    },
                    "value": {
                      "description": "Value of the characteristic",
                      "type": "string"
                    },
                    "valueType": {
                      "description": "Data type of the value of the characteristic",
                      "type": "string"
                    }
                  }
                }
              },
              "href": {
                "description": "Hyperlink reference",
                "type": "string",
                "format": "uri"
              },
              "id": {
                "description": "unique identifier",
                "type": "string"
              },
              "name": {
                "description": "Name of the related entity.",
                "type": "string"
              },
              "partyType": {
                "type": "string"
              },
              "role": {
                "description": "Role played by the related party",
                "type": "string"
              }
            }
          },
          "validFor": {
            "description": "Validity period of that contact",
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "endDateTime": {
                "description": "End of the time period, using IETC-RFC-3339 format",
                "type": "string",
                "format": "date-time"
              },
              "startDateTime": {
                "description": "Start of the time period, using IETC-RFC-3339 format",
                "type": "string",
                "format": "date-time"
              }
            }
          }
        }
      },
      "Money": {
        "description": "A base / value business entity used to represent money",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "unit": {
            "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
            "type": "string"
          },
          "value": {
            "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
            "type": "number",
            "format": "float"
          }
        }
      },
      "Place": {
        "description": "Place reference. Place defines the places where the products are sold or delivered.",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "@baseType": {
            "description": "When sub-classing, this defines the super-class",
            "type": "string"
          },
          "@schemaLocation": {
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "type": "string",
            "format": "uri"
          },
          "@type": {
            "description": "When sub-classing, this defines the sub-class Extensible name",
            "type": "string"
          },
          "characteristic": {
            "type": "array",
            "items": {
              "description": "Describes a given characteristic of an object or entity through a name/value pair.",
              "type": "object",
              "additionalProperties": false,
              "required": [
                "name"
              ],
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "characteristicRelationship": {
                  "type": "array",
                  "items": {
                    "description": "Another Characteristic that is related to the current Characteristic;",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "href": {
                        "description": "Hyperlink reference",
                        "type": "string",
                        "format": "uri"
                      },
                      "id": {
                        "description": "Unique identifier of the characteristic",
                        "type": "string"
                      },
                      "relationshipType": {
                        "description": "The type of relationship",
                        "type": "string"
                      }
                    }
                  }
                },
                "id": {
                  "description": "Unique identifier of the characteristic",
                  "type": "string"
                },
                "metadata": {
                  "description": "Metadata of the characteristic\n",
                  "type": "array",
                  "items": {
                    "description": "Metadata\n",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "metadataType": {
                        "description": "Type of the metadata\n",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the metadata\n",
                        "type": "string"
                      },
                      "value": {
                        "description": "Value of the metadata\n",
                        "type": "string"
                      }
                    }
                  }
                },
                "name": {
                  "description": "Name of the characteristic",
                  "type": "string"
                },
                "value": {
                  "description": "The value of the characteristic",
                  "type": "string"
                },
                "valueMetadata": {
                  "description": "Metadata of the characteristic value\n",
                  "type": "array",
                  "items": {
                    "description": "Catalog and operational metadata\n",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "metadataType": {
                        "description": "Type of the metadata\n",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the metadata\n",
                        "type": "string"
                      },
                      "sourceValue": {
                        "description": "Value of the metadata source\n",
                        "type": "string"
                      },
                      "value": {
                        "description": "Value of the metadata\n",
                        "type": "string"
                      }
                    }
                  }
                },
                "valueType": {
                  "description": "Data type of the value of the characteristic",
                  "type": "string"
                }
              }
            }
          },
          "href": {
            "description": "Unique reference of the place",
            "type": "string",
            "format": "uri"
          },
          "id": {
            "description": "Unique identifier of the place",
            "type": "string"
          },
          "name": {
            "description": "A user-friendly name for the place, such as [Paris Store], [London Store], [Main Home]",
            "type": "string"
          },
          "role": {
            "type": "string"
          },
          "validated": {
            "type": "boolean"
          }
        }
      },
      "Product": {
        "description": "A product offering procured by a customer or other interested party playing a party role. A product is realized as one or more service(s) and / or resource(s).",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "@baseType": {
            "description": "When sub-classing, this defines the super-class",
            "type": "string"
          },
          "@schemaLocation": {
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "type": "string",
            "format": "uri"
          },
          "@type": {
            "description": "When sub-classing, this defines the sub-class Extensible name",
            "type": "string"
          },
          "actionReason": {
            "description": "The action and reason of the product in the PI system. This property is populated only when the referenced product is a product in the inventory.\n",
            "type": "array",
            "items": {
              "description": "The action and complementary reason associated with a customer-owned product or a newly provided product offering\n",
              "type": "object",
              "additionalProperties": false,
              "required": [
                "reason"
              ],
              "properties": {
                "action": {
                  "description": "Name of the action performed on the instance of the product offering\n",
                  "type": "string"
                },
                "metadata": {
                  "description": "Metadata of the Modify Reason\n",
                  "type": "array",
                  "items": {
                    "description": "Metadata\n",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "metadataType": {
                        "description": "Type of the metadata\n",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the metadata\n",
                        "type": "string"
                      },
                      "value": {
                        "description": "Value of the metadata\n",
                        "type": "string"
                      }
                    }
                  }
                },
                "reason": {
                  "description": "Name of the modification reason\n",
                  "type": "string"
                },
                "reasonText": {
                  "description": "Text of the modification reason. This property is populated if the type of the modification reason requires an input of a free text\n",
                  "type": "string"
                }
              }
            }
          },
          "activationDate": {
            "description": "TMF++::Date on which the product was activated\n",
            "type": "string",
            "format": "date-time"
          },
          "agreement": {
            "type": "array",
            "items": {
              "description": "Agreement reference. An agreement represents a contract or arrangement, either written or verbal and sometimes enforceable by law, such as a service level agreement or a customer price agreement. An agreement involves a number of other business entities, such as products, services, and resources and/or their specifications.",
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@referredType": {
                  "description": "The actual type of the target instance when needed for disambiguation.",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "agreementItemId": {
                  "description": "Identifier of the agreement",
                  "type": "string"
                },
                "href": {
                  "description": "Hyperlink reference",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "unique identifier",
                  "type": "string"
                },
                "name": {
                  "description": "Name of the related entity.",
                  "type": "string"
                }
              }
            }
          },
          "billingAccount": {
            "description": "BillingAccount reference. A BillingAccount is a detailed description of a bill structure.",
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "@baseType": {
                "description": "When sub-classing, this defines the super-class",
                "type": "string"
              },
              "@referredType": {
                "description": "The actual type of the target instance when needed for disambiguation.",
                "type": "string"
              },
              "@schemaLocation": {
                "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                "type": "string",
                "format": "uri"
              },
              "@type": {
                "description": "When sub-classing, this defines the sub-class Extensible name",
                "type": "string"
              },
              "characteristic": {
                "description": "a strucuture used to describe a characteristics of billing account",
                "type": "array",
                "items": {
                  "description": "ATT++::Describes a given characteristic of an object or entity through a name/value pair.",
                  "type": "object",
                  "additionalProperties": false,
                  "required": [
                    "name",
                    "value"
                  ],
                  "properties": {
                    "@baseType": {
                      "description": "When sub-classing, this defines the super-class",
                      "type": "string"
                    },
                    "@referredType": {
                      "description": "The actual type of the target instance when needed for disambiguation.",
                      "type": "string"
                    },
                    "@schemaLocation": {
                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                      "type": "string",
                      "format": "uri"
                    },
                    "@type": {
                      "description": "When sub-classing, this defines the sub-class Extensible name",
                      "type": "string"
                    },
                    "href": {
                      "description": "Hyperlink reference",
                      "type": "string",
                      "format": "uri"
                    },
                    "id": {
                      "description": "unique identifier",
                      "type": "string"
                    },
                    "name": {
                      "description": "Name of the characteristic",
                      "type": "string"
                    },
                    "value": {
                      "description": "Value of the characteristic",
                      "type": "string"
                    },
                    "valueType": {
                      "description": "Data type of the value of the characteristic",
                      "type": "string"
                    }
                  }
                }
              },
              "href": {
                "description": "Reference of the billing account",
                "type": "string",
                "format": "uri"
              },
              "id": {
                "description": "Unique identifier of the billing account",
                "type": "string"
              },
              "name": {
                "description": "Name of the billing account",
                "type": "string"
              },
              "ratingType": {
                "description": "Indicates whether the account follows a specific payment option such as prepaid or postpaid",
                "type": "string"
              }
            }
          },
          "characteristic": {
            "type": "array",
            "items": {
              "description": "Describes a given characteristic of an object or entity through a name/value pair.",
              "type": "object",
              "additionalProperties": false,
              "required": [
                "name"
              ],
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "characteristicRelationship": {
                  "type": "array",
                  "items": {
                    "description": "Another Characteristic that is related to the current Characteristic;",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "href": {
                        "description": "Hyperlink reference",
                        "type": "string",
                        "format": "uri"
                      },
                      "id": {
                        "description": "Unique identifier of the characteristic",
                        "type": "string"
                      },
                      "relationshipType": {
                        "description": "The type of relationship",
                        "type": "string"
                      }
                    }
                  }
                },
                "id": {
                  "description": "Unique identifier of the characteristic",
                  "type": "string"
                },
                "metadata": {
                  "description": "Metadata of the characteristic\n",
                  "type": "array",
                  "items": {
                    "description": "Metadata\n",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "metadataType": {
                        "description": "Type of the metadata\n",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the metadata\n",
                        "type": "string"
                      },
                      "value": {
                        "description": "Value of the metadata\n",
                        "type": "string"
                      }
                    }
                  }
                },
                "name": {
                  "description": "Name of the characteristic",
                  "type": "string"
                },
                "value": {
                  "description": "The value of the characteristic",
                  "type": "string"
                },
                "valueMetadata": {
                  "description": "Metadata of the characteristic value\n",
                  "type": "array",
                  "items": {
                    "description": "Catalog and operational metadata\n",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "metadataType": {
                        "description": "Type of the metadata\n",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the metadata\n",
                        "type": "string"
                      },
                      "sourceValue": {
                        "description": "Value of the metadata source\n",
                        "type": "string"
                      },
                      "value": {
                        "description": "Value of the metadata\n",
                        "type": "string"
                      }
                    }
                  }
                },
                "valueType": {
                  "description": "Data type of the value of the characteristic",
                  "type": "string"
                }
              }
            }
          },
          "description": {
            "description": "Is the description of the product. It could be copied from the description of the Product Offering.",
            "type": "string"
          },
          "href": {
            "description": "Reference of the product",
            "type": "string",
            "format": "uri"
          },
          "id": {
            "description": "Unique identifier of the product",
            "type": "string"
          },
          "isBundle": {
            "description": "If true, the product is a ProductBundle which is an instantiation of a BundledProductOffering. If false, the product is a ProductComponent which is an instantiation of a SimpleProductOffering.",
            "type": "boolean"
          },
          "isCustomerVisible": {
            "description": "If true, the product is visible by the customer.",
            "type": "boolean"
          },
          "metadata": {
            "type": "array",
            "items": {
              "description": "Metadata\n",
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "metadataType": {
                  "description": "Type of the metadata\n",
                  "type": "string"
                },
                "name": {
                  "description": "Name of the metadata\n",
                  "type": "string"
                },
                "value": {
                  "description": "Value of the metadata\n",
                  "type": "string"
                }
              }
            }
          },
          "name": {
            "description": "Name of the product. It could be the same as the name of the product offering",
            "type": "string"
          },
          "nextStatus": {
            "type": "string"
          },
          "nextStatusReason": {
            "description": "The reason of the predicted status of the product in the PI system. The predicted status is based on the order item action and/or inner logic\n",
            "type": "array",
            "items": {
              "description": "The complementary reason associated with an action\n",
              "type": "object",
              "additionalProperties": false,
              "required": [
                "reason"
              ],
              "properties": {
                "reason": {
                  "description": "Name of the modification reason\n",
                  "type": "string"
                },
                "reasonText": {
                  "description": "Text of the modification reason. This property is populated if the type of the modification reason requires an input of a free text\n",
                  "type": "string"
                }
              }
            }
          },
          "orderDate": {
            "description": "Is the date when the product was ordered",
            "type": "string",
            "format": "date-time"
          },
          "place": {
            "type": "array",
            "items": {
              "description": "Related Entity reference. A related place defines a place described by reference or by value linked to a specific entity. The polymorphic attributes @type, @schemaLocation & @referredType are related to the place entity and not the RelatedPlaceRefOrValue class itself",
              "type": "object",
              "additionalProperties": false,
              "required": [
                "role"
              ],
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@referredType": {
                  "description": "The actual type of the target instance when needed for disambiguation.",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "characteristic": {
                  "type": "array",
                  "items": {
                    "description": "Describes a given characteristic of an object or entity through a name/value pair.",
                    "type": "object",
                    "additionalProperties": false,
                    "required": [
                      "name"
                    ],
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "characteristicRelationship": {
                        "type": "array",
                        "items": {
                          "description": "Another Characteristic that is related to the current Characteristic;",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "@baseType": {
                              "description": "When sub-classing, this defines the super-class",
                              "type": "string"
                            },
                            "@schemaLocation": {
                              "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                              "type": "string",
                              "format": "uri"
                            },
                            "@type": {
                              "description": "When sub-classing, this defines the sub-class Extensible name",
                              "type": "string"
                            },
                            "href": {
                              "description": "Hyperlink reference",
                              "type": "string",
                              "format": "uri"
                            },
                            "id": {
                              "description": "Unique identifier of the characteristic",
                              "type": "string"
                            },
                            "relationshipType": {
                              "description": "The type of relationship",
                              "type": "string"
                            }
                          }
                        }
                      },
                      "id": {
                        "description": "Unique identifier of the characteristic",
                        "type": "string"
                      },
                      "metadata": {
                        "description": "Metadata of the characteristic\n",
                        "type": "array",
                        "items": {
                          "description": "Metadata\n",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "metadataType": {
                              "description": "Type of the metadata\n",
                              "type": "string"
                            },
                            "name": {
                              "description": "Name of the metadata\n",
                              "type": "string"
                            },
                            "value": {
                              "description": "Value of the metadata\n",
                              "type": "string"
                            }
                          }
                        }
                      },
                      "name": {
                        "description": "Name of the characteristic",
                        "type": "string"
                      },
                      "value": {
                        "description": "The value of the characteristic",
                        "type": "string"
                      },
                      "valueMetadata": {
                        "description": "Metadata of the characteristic value\n",
                        "type": "array",
                        "items": {
                          "description": "Catalog and operational metadata\n",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "metadataType": {
                              "description": "Type of the metadata\n",
                              "type": "string"
                            },
                            "name": {
                              "description": "Name of the metadata\n",
                              "type": "string"
                            },
                            "sourceValue": {
                              "description": "Value of the metadata source\n",
                              "type": "string"
                            },
                            "value": {
                              "description": "Value of the metadata\n",
                              "type": "string"
                            }
                          }
                        }
                      },
                      "valueType": {
                        "description": "Data type of the value of the characteristic",
                        "type": "string"
                      }
                    }
                  }
                },
                "href": {
                  "description": "Hyperlink reference",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "unique identifier",
                  "type": "string"
                },
                "name": {
                  "description": "Name of the related entity.",
                  "type": "string"
                },
                "role": {
                  "type": "string"
                },
                "validated": {
                  "type": "boolean"
                }
              }
            }
          },
          "primaryProductId": {
            "description": "TMF++::Unique identifier of the primary product. This property is populated only when the product is a product reference for the *Enable By* relation, and the referenced product is a product in the inventory and is not part of the order. In this case, the property contains the ID of the product ancestor that is marked as primary. This property and *productOrderRef* are mutually exclusive.\n",
            "type": "string"
          },
          "product": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Product"
            }
          },
          "productCharacteristic": {
            "type": "array",
            "items": {
              "description": "Describes a given characteristic of an object or entity through a name/value pair.",
              "type": "object",
              "additionalProperties": false,
              "required": [
                "name"
              ],
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "characteristicRelationship": {
                  "type": "array",
                  "items": {
                    "description": "Another Characteristic that is related to the current Characteristic;",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "href": {
                        "description": "Hyperlink reference",
                        "type": "string",
                        "format": "uri"
                      },
                      "id": {
                        "description": "Unique identifier of the characteristic",
                        "type": "string"
                      },
                      "relationshipType": {
                        "description": "The type of relationship",
                        "type": "string"
                      }
                    }
                  }
                },
                "id": {
                  "description": "Unique identifier of the characteristic",
                  "type": "string"
                },
                "metadata": {
                  "description": "Metadata of the characteristic\n",
                  "type": "array",
                  "items": {
                    "description": "Metadata\n",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "metadataType": {
                        "description": "Type of the metadata\n",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the metadata\n",
                        "type": "string"
                      },
                      "value": {
                        "description": "Value of the metadata\n",
                        "type": "string"
                      }
                    }
                  }
                },
                "name": {
                  "description": "Name of the characteristic",
                  "type": "string"
                },
                "value": {
                  "description": "The value of the characteristic",
                  "type": "string"
                },
                "valueMetadata": {
                  "description": "Metadata of the characteristic value\n",
                  "type": "array",
                  "items": {
                    "description": "Catalog and operational metadata\n",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "metadataType": {
                        "description": "Type of the metadata\n",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the metadata\n",
                        "type": "string"
                      },
                      "sourceValue": {
                        "description": "Value of the metadata source\n",
                        "type": "string"
                      },
                      "value": {
                        "description": "Value of the metadata\n",
                        "type": "string"
                      }
                    }
                  }
                },
                "valueType": {
                  "description": "Data type of the value of the characteristic",
                  "type": "string"
                }
              }
            }
          },
          "productOffering": {
            "description": "ProductOffering reference. A product offering represents entities that are orderable from the provider of the catalog, this resource includes pricing information.",
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "@baseType": {
                "description": "When sub-classing, this defines the super-class",
                "type": "string"
              },
              "@referredType": {
                "description": "The actual type of the target instance when needed for disambiguation.",
                "type": "string"
              },
              "@schemaLocation": {
                "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                "type": "string",
                "format": "uri"
              },
              "@type": {
                "description": "When sub-classing, this defines the sub-class Extensible name",
                "type": "string"
              },
              "href": {
                "description": "Hyperlink reference",
                "type": "string",
                "format": "uri"
              },
              "id": {
                "description": "unique identifier",
                "type": "string"
              },
              "name": {
                "description": "Name of the related entity.",
                "type": "string"
              },
              "primary": {
                "description": "TMF++::Indicates whether the product offering has a business significance for the customer&#58;\n- It is reflected as a product for the customer and it is actionable - the customer can perform ordering actions on it\n- An action performed on a primary offer can impact the actions available for its bundled or dependent offers (for example, when ownership of a primary offer is changed some internal offers cannot be added or removed)\n",
                "type": "boolean"
              },
              "productOfferingClassification": {
                "type": "string"
              },
              "productOfferingGroup": {
                "description": "TMF++::Type of the product offering group. Example: EDS_Broadband, CT_Mobility, OMS_Broadband, C1_WirelessBroadband, etc.\n",
                "type": "string"
              },
              "productOfferingType": {
                "description": "TMF++::Type of the product offering\n",
                "type": "string"
              },
              "productOfferingTypeGroup": {
                "type": "string"
              },
              "productOfferingTypeId": {
                "type": "string"
              },
              "version": {
                "description": "Version of the product offering\n",
                "type": "string"
              }
            }
          },
          "productOrderItem": {
            "type": "array",
            "items": {
              "description": "RelatedProductOrderItem (ProductOrder item) .The product order item which triggered product creation/change/termination.",
              "type": "object",
              "additionalProperties": false,
              "required": [
                "orderItemId",
                "productOrderId"
              ],
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@referredType": {
                  "description": "The actual type of the target instance when needed for disambiguation.",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "href": {
                  "description": "Hyperlink reference",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "unique identifier",
                  "type": "string"
                },
                "orderItemAction": {
                  "description": "Action of the order item for this product",
                  "type": "string"
                },
                "orderItemId": {
                  "description": "Identifier of the order item where the product was managed",
                  "type": "string"
                },
                "productOrderHref": {
                  "description": "Reference of the related entity.",
                  "type": "string"
                },
                "productOrderId": {
                  "description": "Unique identifier of a related entity.",
                  "type": "string"
                },
                "role": {
                  "description": "role of the product order item for this product",
                  "type": "string"
                }
              }
            }
          },
          "productPrice": {
            "type": "array",
            "items": {
              "description": "An amount, usually of money, that represents the actual price paid by a Customer for a purchase, a rent or a lease of a Product. The price is valid for a defined period of time.",
              "type": "object",
              "additionalProperties": false,
              "required": [
                "price",
                "priceType"
              ],
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "billingAccount": {
                  "description": "BillingAccount reference. A BillingAccount is a detailed description of a bill structure.",
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "@baseType": {
                      "description": "When sub-classing, this defines the super-class",
                      "type": "string"
                    },
                    "@referredType": {
                      "description": "The actual type of the target instance when needed for disambiguation.",
                      "type": "string"
                    },
                    "@schemaLocation": {
                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                      "type": "string",
                      "format": "uri"
                    },
                    "@type": {
                      "description": "When sub-classing, this defines the sub-class Extensible name",
                      "type": "string"
                    },
                    "characteristic": {
                      "description": "a strucuture used to describe a characteristics of billing account",
                      "type": "array",
                      "items": {
                        "description": "ATT++::Describes a given characteristic of an object or entity through a name/value pair.",
                        "type": "object",
                        "additionalProperties": false,
                        "required": [
                          "name",
                          "value"
                        ],
                        "properties": {
                          "@baseType": {
                            "description": "When sub-classing, this defines the super-class",
                            "type": "string"
                          },
                          "@referredType": {
                            "description": "The actual type of the target instance when needed for disambiguation.",
                            "type": "string"
                          },
                          "@schemaLocation": {
                            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                            "type": "string",
                            "format": "uri"
                          },
                          "@type": {
                            "description": "When sub-classing, this defines the sub-class Extensible name",
                            "type": "string"
                          },
                          "href": {
                            "description": "Hyperlink reference",
                            "type": "string",
                            "format": "uri"
                          },
                          "id": {
                            "description": "unique identifier",
                            "type": "string"
                          },
                          "name": {
                            "description": "Name of the characteristic",
                            "type": "string"
                          },
                          "value": {
                            "description": "Value of the characteristic",
                            "type": "string"
                          },
                          "valueType": {
                            "description": "Data type of the value of the characteristic",
                            "type": "string"
                          }
                        }
                      }
                    },
                    "href": {
                      "description": "Reference of the billing account",
                      "type": "string",
                      "format": "uri"
                    },
                    "id": {
                      "description": "Unique identifier of the billing account",
                      "type": "string"
                    },
                    "name": {
                      "description": "Name of the billing account",
                      "type": "string"
                    },
                    "ratingType": {
                      "description": "Indicates whether the account follows a specific payment option such as prepaid or postpaid",
                      "type": "string"
                    }
                  }
                },
                "description": {
                  "description": "A narrative that explains in detail the semantics of this product price.",
                  "type": "string"
                },
                "href": {
                  "description": "Hyperlink reference",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "unique identifier",
                  "type": "string"
                },
                "name": {
                  "description": "A short descriptive name such as \"Subscription price\".",
                  "type": "string"
                },
                "price": {
                  "description": "Provides all amounts (tax included, duty free, tax rate), used currency and percentage to apply for Price Alteration.",
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "@baseType": {
                      "description": "When sub-classing, this defines the super-class",
                      "type": "string"
                    },
                    "@schemaLocation": {
                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                      "type": "string",
                      "format": "uri"
                    },
                    "@type": {
                      "description": "When sub-classing, this defines the sub-class entity name",
                      "type": "string"
                    },
                    "appliedTax": {
                      "type": "array",
                      "items": {
                        "description": "TMF++::Calculated tax response",
                        "type": "object",
                        "additionalProperties": false,
                        "required": [
                          "taxAmount",
                          "taxDefinition",
                          "taxableAmount"
                        ],
                        "properties": {
                          "@baseType": {
                            "description": "When sub-classing, this defines the super-class",
                            "type": "string"
                          },
                          "@referredType": {
                            "description": "The actual type of the target instance when needed for disambiguation.",
                            "type": "string"
                          },
                          "@schemaLocation": {
                            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                            "type": "string",
                            "format": "uri"
                          },
                          "@type": {
                            "description": "When sub-classing, this defines the sub-class Extensible name",
                            "type": "string"
                          },
                          "characteristic": {
                            "type": "array",
                            "items": {
                              "description": "Describes a given characteristic of an object or entity through a name/value pair.",
                              "type": "object",
                              "additionalProperties": false,
                              "required": [
                                "name"
                              ],
                              "properties": {
                                "@baseType": {
                                  "description": "When sub-classing, this defines the super-class",
                                  "type": "string"
                                },
                                "@schemaLocation": {
                                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                  "type": "string",
                                  "format": "uri"
                                },
                                "@type": {
                                  "description": "When sub-classing, this defines the sub-class Extensible name",
                                  "type": "string"
                                },
                                "characteristicRelationship": {
                                  "type": "array",
                                  "items": {
                                    "description": "Another Characteristic that is related to the current Characteristic;",
                                    "type": "object",
                                    "additionalProperties": false,
                                    "properties": {
                                      "@baseType": {
                                        "description": "When sub-classing, this defines the super-class",
                                        "type": "string"
                                      },
                                      "@schemaLocation": {
                                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                        "type": "string",
                                        "format": "uri"
                                      },
                                      "@type": {
                                        "description": "When sub-classing, this defines the sub-class Extensible name",
                                        "type": "string"
                                      },
                                      "href": {
                                        "description": "Hyperlink reference",
                                        "type": "string",
                                        "format": "uri"
                                      },
                                      "id": {
                                        "description": "Unique identifier of the characteristic",
                                        "type": "string"
                                      },
                                      "relationshipType": {
                                        "description": "The type of relationship",
                                        "type": "string"
                                      }
                                    }
                                  }
                                },
                                "id": {
                                  "description": "Unique identifier of the characteristic",
                                  "type": "string"
                                },
                                "metadata": {
                                  "description": "Metadata of the characteristic\n",
                                  "type": "array",
                                  "items": {
                                    "description": "Metadata\n",
                                    "type": "object",
                                    "additionalProperties": false,
                                    "properties": {
                                      "metadataType": {
                                        "description": "Type of the metadata\n",
                                        "type": "string"
                                      },
                                      "name": {
                                        "description": "Name of the metadata\n",
                                        "type": "string"
                                      },
                                      "value": {
                                        "description": "Value of the metadata\n",
                                        "type": "string"
                                      }
                                    }
                                  }
                                },
                                "name": {
                                  "description": "Name of the characteristic",
                                  "type": "string"
                                },
                                "value": {
                                  "description": "The value of the characteristic",
                                  "type": "string"
                                },
                                "valueMetadata": {
                                  "description": "Metadata of the characteristic value\n",
                                  "type": "array",
                                  "items": {
                                    "description": "Catalog and operational metadata\n",
                                    "type": "object",
                                    "additionalProperties": false,
                                    "properties": {
                                      "metadataType": {
                                        "description": "Type of the metadata\n",
                                        "type": "string"
                                      },
                                      "name": {
                                        "description": "Name of the metadata\n",
                                        "type": "string"
                                      },
                                      "sourceValue": {
                                        "description": "Value of the metadata source\n",
                                        "type": "string"
                                      },
                                      "value": {
                                        "description": "Value of the metadata\n",
                                        "type": "string"
                                      }
                                    }
                                  }
                                },
                                "valueType": {
                                  "description": "Data type of the value of the characteristic",
                                  "type": "string"
                                }
                              }
                            }
                          },
                          "component": {
                            "description": "Revenue component details if the tax calculation item is split to revenue components\n",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "amount": {
                                "description": "A base / value business entity used to represent money",
                                "type": "object",
                                "additionalProperties": false,
                                "properties": {
                                  "unit": {
                                    "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                                    "type": "string"
                                  },
                                  "value": {
                                    "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                                    "type": "number",
                                    "format": "float"
                                  }
                                }
                              },
                              "revenueType": {
                                "description": "Revenue type of the component tax calculation item, such as Voice or Data\n",
                                "type": "string"
                              },
                              "splitCode": {
                                "description": "Referenced split code that is used to calculate the specific applied tax\n",
                                "type": "string"
                              },
                              "taxCode": {
                                "description": "Tax code of the component tax calculation item\n",
                                "type": "string"
                              }
                            }
                          },
                          "exemptAmount": {
                            "description": "A base / value business entity used to represent money",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "unit": {
                                "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                                "type": "string"
                              },
                              "value": {
                                "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                                "type": "number",
                                "format": "float"
                              }
                            }
                          },
                          "extensions": {
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "Tax": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "description": "Key for Tax attributes. e.g. PrintGroup",
                                      "type": "string"
                                    },
                                    "value": {
                                      "description": "Value for the Tax attribute. e.g. TAX, SURCHARGE, FEE for printGroup",
                                      "type": "string"
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "href": {
                            "description": "Hyperlink reference",
                            "type": "string",
                            "format": "uri"
                          },
                          "id": {
                            "description": "unique identifier",
                            "type": "string"
                          },
                          "name": {
                            "description": "Name of the related entity.",
                            "type": "string"
                          },
                          "periodCoverage": {
                            "description": "A period of time, either as a deadline (endDateTime only) a startDateTime only, or both",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "endDateTime": {
                                "description": "End of the time period, using IETC-RFC-3339 format",
                                "type": "string",
                                "format": "date-time"
                              },
                              "startDateTime": {
                                "description": "Start of the time period, using IETC-RFC-3339 format",
                                "type": "string",
                                "format": "date-time"
                              }
                            }
                          },
                          "taxAmount": {
                            "description": "A base / value business entity used to represent money",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "unit": {
                                "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                                "type": "string"
                              },
                              "value": {
                                "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                                "type": "number",
                                "format": "float"
                              }
                            }
                          },
                          "taxDefinition": {
                            "description": "TMF++::Tax definition",
                            "type": "object",
                            "additionalProperties": false,
                            "required": [
                              "exemptionType",
                              "isExemption",
                              "taxJurisdiction",
                              "taxRate",
                              "taxType"
                            ],
                            "properties": {
                              "@baseType": {
                                "description": "When sub-classing, this defines the super-class",
                                "type": "string"
                              },
                              "@schemaLocation": {
                                "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                "type": "string",
                                "format": "uri"
                              },
                              "@type": {
                                "description": "When sub-classing, this defines the sub-class Extensible name",
                                "type": "string"
                              },
                              "category": {
                                "description": "Luxury/Standard etc",
                                "type": "string"
                              },
                              "exemptionType": {
                                "description": "Exemption type. Valid Values - Customer, Service, Jurisdiction, None.",
                                "type": "string"
                              },
                              "isExemption": {
                                "description": "Where the tax definition has exemption defined on it",
                                "type": "boolean"
                              },
                              "name": {
                                "description": "The display name of tax type",
                                "type": "string"
                              },
                              "taxJurisdiction": {
                                "description": "TMF++::Tax Juristiction",
                                "type": "object",
                                "additionalProperties": false,
                                "required": [
                                  "level",
                                  "name"
                                ],
                                "properties": {
                                  "@baseType": {
                                    "description": "When sub-classing, this defines the super-class",
                                    "type": "string"
                                  },
                                  "@referredType": {
                                    "description": "The actual type of the target instance when needed for disambiguation.",
                                    "type": "string"
                                  },
                                  "@schemaLocation": {
                                    "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                    "type": "string",
                                    "format": "uri"
                                  },
                                  "@type": {
                                    "description": "When sub-classing, this defines the sub-class Extensible name",
                                    "type": "string"
                                  },
                                  "href": {
                                    "description": "Hyperlink reference",
                                    "type": "string",
                                    "format": "uri"
                                  },
                                  "id": {
                                    "description": "unique identifier",
                                    "type": "string"
                                  },
                                  "level": {
                                    "type": "string"
                                  },
                                  "name": {
                                    "description": "Name of the related entity.",
                                    "type": "string"
                                  }
                                }
                              },
                              "taxRate": {
                                "description": "Rate of tax",
                                "type": "number",
                                "format": "float"
                              },
                              "taxType": {
                                "description": "VAT/GST etc",
                                "type": "string"
                              },
                              "validFor": {
                                "description": "A period of time, either as a deadline (endDateTime only) a startDateTime only, or both",
                                "type": "object",
                                "additionalProperties": false,
                                "properties": {
                                  "endDateTime": {
                                    "description": "End of the time period, using IETC-RFC-3339 format",
                                    "type": "string",
                                    "format": "date-time"
                                  },
                                  "startDateTime": {
                                    "description": "Start of the time period, using IETC-RFC-3339 format",
                                    "type": "string",
                                    "format": "date-time"
                                  }
                                }
                              }
                            }
                          },
                          "taxableAmount": {
                            "description": "A base / value business entity used to represent money",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "unit": {
                                "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                                "type": "string"
                              },
                              "value": {
                                "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                                "type": "number",
                                "format": "float"
                              }
                            }
                          }
                        }
                      }
                    },
                    "chargeType": {
                      "description": "The charge type that the price represents. The supported values are&#58;<ul><li>debit<li>credit</ul>\n",
                      "type": "string"
                    },
                    "component": {
                      "description": "Revenue component details if the tax calculation item is split to revenue components\n",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "amount": {
                          "description": "A base / value business entity used to represent money",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "unit": {
                              "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                              "type": "string"
                            },
                            "value": {
                              "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                              "type": "number",
                              "format": "float"
                            }
                          }
                        },
                        "revenueType": {
                          "description": "Revenue type of the component tax calculation item, such as Voice or Data\n",
                          "type": "string"
                        },
                        "splitCode": {
                          "description": "Referenced split code that is used to calculate the specific applied tax\n",
                          "type": "string"
                        },
                        "taxCode": {
                          "description": "Tax code of the component tax calculation item\n",
                          "type": "string"
                        }
                      }
                    },
                    "dutyFreeAmount": {
                      "description": "A base / value business entity used to represent money",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "unit": {
                          "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                          "type": "string"
                        },
                        "value": {
                          "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                          "type": "number",
                          "format": "float"
                        }
                      }
                    },
                    "href": {
                      "description": "Hyperlink reference",
                      "type": "string",
                      "format": "uri"
                    },
                    "id": {
                      "description": "unique identifier",
                      "type": "string"
                    },
                    "impactingPriceParameter": {
                      "description": "The parameters that impact the price\n",
                      "type": "array",
                      "items": {
                        "description": "TMF++::The parameters that may impact/impact the price\n",
                        "type": "object",
                        "additionalProperties": false,
                        "properties": {
                          "name": {
                            "description": "The name of the parameter\n",
                            "type": "string"
                          },
                          "priceParameterType": {
                            "description": "The type of the parameter\n",
                            "type": "string"
                          },
                          "value": {
                            "description": "The value of the parameter\n",
                            "type": "string"
                          }
                        }
                      }
                    },
                    "marketingAmount": {
                      "description": "A base / value business entity used to represent money",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "unit": {
                          "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                          "type": "string"
                        },
                        "value": {
                          "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                          "type": "number",
                          "format": "float"
                        }
                      }
                    },
                    "percentage": {
                      "description": "Percentage to apply for ProdOfferPriceAlteration",
                      "type": "number",
                      "format": "float"
                    },
                    "priceOverride": {
                      "description": "A base / value business entity used to represent money",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "unit": {
                          "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                          "type": "string"
                        },
                        "value": {
                          "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                          "type": "number",
                          "format": "float"
                        }
                      }
                    },
                    "priceRecordId": {
                      "description": "The unique identifier of the price in the pricing domain.\n",
                      "type": "string"
                    },
                    "priceReduction": {
                      "description": "A base / value business entity used to represent money",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "unit": {
                          "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                          "type": "string"
                        },
                        "value": {
                          "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                          "type": "number",
                          "format": "float"
                        }
                      }
                    },
                    "rateValidity": {
                      "description": "A period of time, either as a deadline (endDateTime only) a startDateTime only, or both",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "endDateTime": {
                          "description": "End of the time period, using IETC-RFC-3339 format",
                          "type": "string",
                          "format": "date-time"
                        },
                        "startDateTime": {
                          "description": "Start of the time period, using IETC-RFC-3339 format",
                          "type": "string",
                          "format": "date-time"
                        }
                      }
                    },
                    "taxAmount": {
                      "description": "A base / value business entity used to represent money",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "unit": {
                          "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                          "type": "string"
                        },
                        "value": {
                          "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                          "type": "number",
                          "format": "float"
                        }
                      }
                    },
                    "taxIncludedAmount": {
                      "description": "A base / value business entity used to represent money",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "unit": {
                          "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                          "type": "string"
                        },
                        "value": {
                          "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                          "type": "number",
                          "format": "float"
                        }
                      }
                    },
                    "taxRate": {
                      "description": "Tax rate",
                      "type": "number",
                      "format": "float"
                    }
                  }
                },
                "priceType": {
                  "description": "A category that describes the price, such as recurring, discount, allowance, penalty, and so forth.",
                  "type": "string"
                },
                "priceCategory": {
                  "description": "A category that describes whether the price type is for service or for equipment.",
                  "type": "string"
                },
                "productOfferingPrice": {
                  "description": "ProductPriceOffering reference. An amount, usually of money, that is asked for or allowed when a ProductOffering is bought, rented, or leased",
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "@baseType": {
                      "description": "When sub-classing, this defines the super-class",
                      "type": "string"
                    },
                    "@referredType": {
                      "description": "The actual type of the target instance when needed for disambiguation.",
                      "type": "string"
                    },
                    "@schemaLocation": {
                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                      "type": "string",
                      "format": "uri"
                    },
                    "@type": {
                      "description": "When sub-classing, this defines the sub-class Extensible name",
                      "type": "string"
                    },
                    "href": {
                      "description": "Hyperlink reference",
                      "type": "string",
                      "format": "uri"
                    },
                    "id": {
                      "description": "unique identifier",
                      "type": "string"
                    },
                    "name": {
                      "description": "Name of the related entity.",
                      "type": "string"
                    },
                    "priceType": {
                      "description": "A category that describes the price, such as recurring, discount, allowance, penalty, and so forth.",
                      "type": "string"
                    },
                    "validFor": {
                      "description": "A period of time, either as a deadline (endDateTime only) a startDateTime only, or both",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "endDateTime": {
                          "description": "End of the time period, using IETC-RFC-3339 format",
                          "type": "string",
                          "format": "date-time"
                        },
                        "startDateTime": {
                          "description": "Start of the time period, using IETC-RFC-3339 format",
                          "type": "string",
                          "format": "date-time"
                        }
                      }
                    },
                    "version": {
                      "description": "ProductOffering version",
                      "type": "string"
                    }
                  }
                },
                "productPriceAlteration": {
                  "type": "array",
                  "items": {
                    "description": "Is an amount, usually of money, that modifies the price charged for an order item.",
                    "type": "object",
                    "additionalProperties": false,
                    "required": [
                      "price",
                      "priceType"
                    ],
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "alterationApplyOrder": {
                        "description": "TMF++::Order of the alteration price appliance\n",
                        "type": "integer"
                      },
                      "alterationBundleProductOfferingId": {
                        "description": "TMF++::Unique identifier of the bundle product offering on behalf of which the price alteration was given\n",
                        "type": "string"
                      },
                      "alterationProductOfferingPriceId": {
                        "description": "TMF++::Unique identifier of the product offering price on behalf of which the price alteration was given\n",
                        "type": "string"
                      },
                      "alterationType": {
                        "description": "TMF++::Type of the alteration\n",
                        "type": "string"
                      },
                      "applicationDuration": {
                        "description": "Duration during which the alteration applies on the order item price (for instance 2 months free of charge for the recurring charge)",
                        "type": "integer"
                      },
                      "chargeType": {
                        "description": "TMF++::Charge type represented by the price alteration. The supported values are&#58;<ul><li>debit<li>discount<li>credit</ul> \n",
                        "type": "string"
                      },
                      "description": {
                        "description": "A narrative that explains in detail the semantics of this order item price alteration",
                        "type": "string"
                      },
                      "href": {
                        "description": "Hyperlink reference",
                        "type": "string",
                        "format": "uri"
                      },
                      "id": {
                        "description": "unique identifier",
                        "type": "string"
                      },
                      "immediatePromotionId": {
                        "description": "TMF++::Unique identifier of the promotion instance\n",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the order item price alteration",
                        "type": "string"
                      },
                      "price": {
                        "description": "Provides all amounts (tax included, duty free, tax rate), used currency and percentage to apply for Price Alteration.",
                        "type": "object",
                        "additionalProperties": false,
                        "properties": {
                          "@baseType": {
                            "description": "When sub-classing, this defines the super-class",
                            "type": "string"
                          },
                          "@schemaLocation": {
                            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                            "type": "string",
                            "format": "uri"
                          },
                          "@type": {
                            "description": "When sub-classing, this defines the sub-class entity name",
                            "type": "string"
                          },
                          "appliedTax": {
                            "type": "array",
                            "items": {
                              "description": "TMF++::Calculated tax response",
                              "type": "object",
                              "additionalProperties": false,
                              "required": [
                                "taxAmount",
                                "taxDefinition",
                                "taxableAmount"
                              ],
                              "properties": {
                                "@baseType": {
                                  "description": "When sub-classing, this defines the super-class",
                                  "type": "string"
                                },
                                "@referredType": {
                                  "description": "The actual type of the target instance when needed for disambiguation.",
                                  "type": "string"
                                },
                                "@schemaLocation": {
                                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                  "type": "string",
                                  "format": "uri"
                                },
                                "@type": {
                                  "description": "When sub-classing, this defines the sub-class Extensible name",
                                  "type": "string"
                                },
                                "characteristic": {
                                  "type": "array",
                                  "items": {
                                    "description": "Describes a given characteristic of an object or entity through a name/value pair.",
                                    "type": "object",
                                    "additionalProperties": false,
                                    "required": [
                                      "name"
                                    ],
                                    "properties": {
                                      "@baseType": {
                                        "description": "When sub-classing, this defines the super-class",
                                        "type": "string"
                                      },
                                      "@schemaLocation": {
                                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                        "type": "string",
                                        "format": "uri"
                                      },
                                      "@type": {
                                        "description": "When sub-classing, this defines the sub-class Extensible name",
                                        "type": "string"
                                      },
                                      "characteristicRelationship": {
                                        "type": "array",
                                        "items": {
                                          "description": "Another Characteristic that is related to the current Characteristic;",
                                          "type": "object",
                                          "additionalProperties": false,
                                          "properties": {
                                            "@baseType": {
                                              "description": "When sub-classing, this defines the super-class",
                                              "type": "string"
                                            },
                                            "@schemaLocation": {
                                              "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                              "type": "string",
                                              "format": "uri"
                                            },
                                            "@type": {
                                              "description": "When sub-classing, this defines the sub-class Extensible name",
                                              "type": "string"
                                            },
                                            "href": {
                                              "description": "Hyperlink reference",
                                              "type": "string",
                                              "format": "uri"
                                            },
                                            "id": {
                                              "description": "Unique identifier of the characteristic",
                                              "type": "string"
                                            },
                                            "relationshipType": {
                                              "description": "The type of relationship",
                                              "type": "string"
                                            }
                                          }
                                        }
                                      },
                                      "id": {
                                        "description": "Unique identifier of the characteristic",
                                        "type": "string"
                                      },
                                      "metadata": {
                                        "description": "Metadata of the characteristic\n",
                                        "type": "array",
                                        "items": {
                                          "description": "Metadata\n",
                                          "type": "object",
                                          "additionalProperties": false,
                                          "properties": {
                                            "metadataType": {
                                              "description": "Type of the metadata\n",
                                              "type": "string"
                                            },
                                            "name": {
                                              "description": "Name of the metadata\n",
                                              "type": "string"
                                            },
                                            "value": {
                                              "description": "Value of the metadata\n",
                                              "type": "string"
                                            }
                                          }
                                        }
                                      },
                                      "name": {
                                        "description": "Name of the characteristic",
                                        "type": "string"
                                      },
                                      "value": {
                                        "description": "The value of the characteristic",
                                        "type": "string"
                                      },
                                      "valueMetadata": {
                                        "description": "Metadata of the characteristic value\n",
                                        "type": "array",
                                        "items": {
                                          "description": "Catalog and operational metadata\n",
                                          "type": "object",
                                          "additionalProperties": false,
                                          "properties": {
                                            "metadataType": {
                                              "description": "Type of the metadata\n",
                                              "type": "string"
                                            },
                                            "name": {
                                              "description": "Name of the metadata\n",
                                              "type": "string"
                                            },
                                            "sourceValue": {
                                              "description": "Value of the metadata source\n",
                                              "type": "string"
                                            },
                                            "value": {
                                              "description": "Value of the metadata\n",
                                              "type": "string"
                                            }
                                          }
                                        }
                                      },
                                      "valueType": {
                                        "description": "Data type of the value of the characteristic",
                                        "type": "string"
                                      }
                                    }
                                  }
                                },
                                "component": {
                                  "description": "Revenue component details if the tax calculation item is split to revenue components\n",
                                  "type": "object",
                                  "additionalProperties": false,
                                  "properties": {
                                    "amount": {
                                      "description": "A base / value business entity used to represent money",
                                      "type": "object",
                                      "additionalProperties": false,
                                      "properties": {
                                        "unit": {
                                          "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                                          "type": "string"
                                        },
                                        "value": {
                                          "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                                          "type": "number",
                                          "format": "float"
                                        }
                                      }
                                    },
                                    "revenueType": {
                                      "description": "Revenue type of the component tax calculation item, such as Voice or Data\n",
                                      "type": "string"
                                    },
                                    "splitCode": {
                                      "description": "Referenced split code that is used to calculate the specific applied tax\n",
                                      "type": "string"
                                    },
                                    "taxCode": {
                                      "description": "Tax code of the component tax calculation item\n",
                                      "type": "string"
                                    }
                                  }
                                },
                                "exemptAmount": {
                                  "description": "A base / value business entity used to represent money",
                                  "type": "object",
                                  "additionalProperties": false,
                                  "properties": {
                                    "unit": {
                                      "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                                      "type": "string"
                                    },
                                    "value": {
                                      "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                                      "type": "number",
                                      "format": "float"
                                    }
                                  }
                                },
                                "extensions": {
                                  "type": "object",
                                  "additionalProperties": false,
                                  "properties": {
                                    "Tax": {
                                      "type": "array",
                                      "items": {
                                        "type": "object",
                                        "additionalProperties": false,
                                        "properties": {
                                          "key": {
                                            "description": "Key for Tax attributes. e.g. PrintGroup",
                                            "type": "string"
                                          },
                                          "value": {
                                            "description": "Value for the Tax attribute. e.g. TAX, SURCHARGE, FEE for printGroup",
                                            "type": "string"
                                          }
                                        }
                                      }
                                    }
                                  }
                                },
                                "href": {
                                  "description": "Hyperlink reference",
                                  "type": "string",
                                  "format": "uri"
                                },
                                "id": {
                                  "description": "unique identifier",
                                  "type": "string"
                                },
                                "name": {
                                  "description": "Name of the related entity.",
                                  "type": "string"
                                },
                                "periodCoverage": {
                                  "description": "A period of time, either as a deadline (endDateTime only) a startDateTime only, or both",
                                  "type": "object",
                                  "additionalProperties": false,
                                  "properties": {
                                    "endDateTime": {
                                      "description": "End of the time period, using IETC-RFC-3339 format",
                                      "type": "string",
                                      "format": "date-time"
                                    },
                                    "startDateTime": {
                                      "description": "Start of the time period, using IETC-RFC-3339 format",
                                      "type": "string",
                                      "format": "date-time"
                                    }
                                  }
                                },
                                "taxAmount": {
                                  "description": "A base / value business entity used to represent money",
                                  "type": "object",
                                  "additionalProperties": false,
                                  "properties": {
                                    "unit": {
                                      "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                                      "type": "string"
                                    },
                                    "value": {
                                      "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                                      "type": "number",
                                      "format": "float"
                                    }
                                  }
                                },
                                "taxDefinition": {
                                  "description": "TMF++::Tax definition",
                                  "type": "object",
                                  "additionalProperties": false,
                                  "required": [
                                    "exemptionType",
                                    "isExemption",
                                    "taxJurisdiction",
                                    "taxRate",
                                    "taxType"
                                  ],
                                  "properties": {
                                    "@baseType": {
                                      "description": "When sub-classing, this defines the super-class",
                                      "type": "string"
                                    },
                                    "@schemaLocation": {
                                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                      "type": "string",
                                      "format": "uri"
                                    },
                                    "@type": {
                                      "description": "When sub-classing, this defines the sub-class Extensible name",
                                      "type": "string"
                                    },
                                    "category": {
                                      "description": "Luxury/Standard etc",
                                      "type": "string"
                                    },
                                    "exemptionType": {
                                      "description": "Exemption type. Valid Values - Customer, Service, Jurisdiction, None.",
                                      "type": "string"
                                    },
                                    "isExemption": {
                                      "description": "Where the tax definition has exemption defined on it",
                                      "type": "boolean"
                                    },
                                    "name": {
                                      "description": "The display name of tax type",
                                      "type": "string"
                                    },
                                    "taxJurisdiction": {
                                      "description": "TMF++::Tax Juristiction",
                                      "type": "object",
                                      "additionalProperties": false,
                                      "required": [
                                        "level",
                                        "name"
                                      ],
                                      "properties": {
                                        "@baseType": {
                                          "description": "When sub-classing, this defines the super-class",
                                          "type": "string"
                                        },
                                        "@referredType": {
                                          "description": "The actual type of the target instance when needed for disambiguation.",
                                          "type": "string"
                                        },
                                        "@schemaLocation": {
                                          "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                          "type": "string",
                                          "format": "uri"
                                        },
                                        "@type": {
                                          "description": "When sub-classing, this defines the sub-class Extensible name",
                                          "type": "string"
                                        },
                                        "href": {
                                          "description": "Hyperlink reference",
                                          "type": "string",
                                          "format": "uri"
                                        },
                                        "id": {
                                          "description": "unique identifier",
                                          "type": "string"
                                        },
                                        "level": {
                                          "type": "string"
                                        },
                                        "name": {
                                          "description": "Name of the related entity.",
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "taxRate": {
                                      "description": "Rate of tax",
                                      "type": "number",
                                      "format": "float"
                                    },
                                    "taxType": {
                                      "description": "VAT/GST etc",
                                      "type": "string"
                                    },
                                    "validFor": {
                                      "description": "A period of time, either as a deadline (endDateTime only) a startDateTime only, or both",
                                      "type": "object",
                                      "additionalProperties": false,
                                      "properties": {
                                        "endDateTime": {
                                          "description": "End of the time period, using IETC-RFC-3339 format",
                                          "type": "string",
                                          "format": "date-time"
                                        },
                                        "startDateTime": {
                                          "description": "Start of the time period, using IETC-RFC-3339 format",
                                          "type": "string",
                                          "format": "date-time"
                                        }
                                      }
                                    }
                                  }
                                },
                                "taxableAmount": {
                                  "description": "A base / value business entity used to represent money",
                                  "type": "object",
                                  "additionalProperties": false,
                                  "properties": {
                                    "unit": {
                                      "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                                      "type": "string"
                                    },
                                    "value": {
                                      "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                                      "type": "number",
                                      "format": "float"
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "chargeType": {
                            "description": "The charge type that the price represents. The supported values are&#58;<ul><li>debit<li>credit</ul>\n",
                            "type": "string"
                          },
                          "component": {
                            "description": "Revenue component details if the tax calculation item is split to revenue components\n",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "amount": {
                                "description": "A base / value business entity used to represent money",
                                "type": "object",
                                "additionalProperties": false,
                                "properties": {
                                  "unit": {
                                    "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                                    "type": "string"
                                  },
                                  "value": {
                                    "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                                    "type": "number",
                                    "format": "float"
                                  }
                                }
                              },
                              "revenueType": {
                                "description": "Revenue type of the component tax calculation item, such as Voice or Data\n",
                                "type": "string"
                              },
                              "splitCode": {
                                "description": "Referenced split code that is used to calculate the specific applied tax\n",
                                "type": "string"
                              },
                              "taxCode": {
                                "description": "Tax code of the component tax calculation item\n",
                                "type": "string"
                              }
                            }
                          },
                          "dutyFreeAmount": {
                            "description": "A base / value business entity used to represent money",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "unit": {
                                "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                                "type": "string"
                              },
                              "value": {
                                "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                                "type": "number",
                                "format": "float"
                              }
                            }
                          },
                          "href": {
                            "description": "Hyperlink reference",
                            "type": "string",
                            "format": "uri"
                          },
                          "id": {
                            "description": "unique identifier",
                            "type": "string"
                          },
                          "impactingPriceParameter": {
                            "description": "The parameters that impact the price\n",
                            "type": "array",
                            "items": {
                              "description": "TMF++::The parameters that may impact/impact the price\n",
                              "type": "object",
                              "additionalProperties": false,
                              "properties": {
                                "name": {
                                  "description": "The name of the parameter\n",
                                  "type": "string"
                                },
                                "priceParameterType": {
                                  "description": "The type of the parameter\n",
                                  "type": "string"
                                },
                                "value": {
                                  "description": "The value of the parameter\n",
                                  "type": "string"
                                }
                              }
                            }
                          },
                          "marketingAmount": {
                            "description": "A base / value business entity used to represent money",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "unit": {
                                "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                                "type": "string"
                              },
                              "value": {
                                "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                                "type": "number",
                                "format": "float"
                              }
                            }
                          },
                          "percentage": {
                            "description": "Percentage to apply for ProdOfferPriceAlteration",
                            "type": "number",
                            "format": "float"
                          },
                          "priceOverride": {
                            "description": "A base / value business entity used to represent money",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "unit": {
                                "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                                "type": "string"
                              },
                              "value": {
                                "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                                "type": "number",
                                "format": "float"
                              }
                            }
                          },
                          "priceRecordId": {
                            "description": "The unique identifier of the price in the pricing domain.\n",
                            "type": "string"
                          },
                          "priceReduction": {
                            "description": "A base / value business entity used to represent money",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "unit": {
                                "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                                "type": "string"
                              },
                              "value": {
                                "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                                "type": "number",
                                "format": "float"
                              }
                            }
                          },
                          "rateValidity": {
                            "description": "A period of time, either as a deadline (endDateTime only) a startDateTime only, or both",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "endDateTime": {
                                "description": "End of the time period, using IETC-RFC-3339 format",
                                "type": "string",
                                "format": "date-time"
                              },
                              "startDateTime": {
                                "description": "Start of the time period, using IETC-RFC-3339 format",
                                "type": "string",
                                "format": "date-time"
                              }
                            }
                          },
                          "taxAmount": {
                            "description": "A base / value business entity used to represent money",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "unit": {
                                "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                                "type": "string"
                              },
                              "value": {
                                "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                                "type": "number",
                                "format": "float"
                              }
                            }
                          },
                          "taxIncludedAmount": {
                            "description": "A base / value business entity used to represent money",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "unit": {
                                "description": "Currency (ISO4217 norm uses 3 letters to define the currency)",
                                "type": "string"
                              },
                              "value": {
                                "description": "A signed floating point number, the meaning of the sign is according to the context of the API that uses this Data type",
                                "type": "number",
                                "format": "float"
                              }
                            }
                          },
                          "taxRate": {
                            "description": "Tax rate",
                            "type": "number",
                            "format": "float"
                          }
                        }
                      },
                      "priceAlterationCategory": {
                        "description": "The price alteration category",
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "priceType": {
                        "description": "A category that describes the price such as recurring, one time and usage.",
                        "type": "string"
                      },
                      "priority": {
                        "description": "Priority level for applying this alteration among all the defined alterations on the order item price",
                        "type": "integer"
                      },
                      "productOfferingPrice": {
                        "description": "ProductPriceOffering reference. An amount, usually of money, that is asked for or allowed when a ProductOffering is bought, rented, or leased",
                        "type": "object",
                        "additionalProperties": false,
                        "properties": {
                          "@baseType": {
                            "description": "When sub-classing, this defines the super-class",
                            "type": "string"
                          },
                          "@referredType": {
                            "description": "The actual type of the target instance when needed for disambiguation.",
                            "type": "string"
                          },
                          "@schemaLocation": {
                            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                            "type": "string",
                            "format": "uri"
                          },
                          "@type": {
                            "description": "When sub-classing, this defines the sub-class Extensible name",
                            "type": "string"
                          },
                          "href": {
                            "description": "Hyperlink reference",
                            "type": "string",
                            "format": "uri"
                          },
                          "id": {
                            "description": "unique identifier",
                            "type": "string"
                          },
                          "name": {
                            "description": "Name of the related entity.",
                            "type": "string"
                          },
                          "priceType": {
                            "description": "A category that describes the price, such as recurring, discount, allowance, penalty, and so forth.",
                            "type": "string"
                          },
                          "validFor": {
                            "description": "A period of time, either as a deadline (endDateTime only) a startDateTime only, or both",
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "endDateTime": {
                                "description": "End of the time period, using IETC-RFC-3339 format",
                                "type": "string",
                                "format": "date-time"
                              },
                              "startDateTime": {
                                "description": "Start of the time period, using IETC-RFC-3339 format",
                                "type": "string",
                                "format": "date-time"
                              }
                            }
                          },
                          "version": {
                            "description": "ProductOffering version",
                            "type": "string"
                          }
                        }
                      },
                      "promotionActionId": {
                        "description": "TMF++::Unique identifier of the promotion action triggering this price alteration\n",
                        "type": "string"
                      },
                      "prorationFactor": {
                        "description": "TMF++::Proration factor used to prorate this amount\n",
                        "type": "number",
                        "format": "double"
                      },
                      "recurringChargePeriod": {
                        "description": "Could be month, week...",
                        "type": "string"
                      },
                      "recurringChargePeriodLength": {
                        "description": "TMF++::The period length of the recurring charge\n",
                        "type": "integer"
                      },
                      "unitOfMeasure": {
                        "description": "Could be minutes, GB...",
                        "type": "string"
                      }
                    }
                  }
                },
                "recurringChargePeriod": {
                  "description": "Could be month, week...",
                  "type": "string"
                },
                "unitOfMeasure": {
                  "description": "Could be minutes, GB...",
                  "type": "string"
                }
              }
            }
          },
          "productRelationship": {
            "type": "array",
            "items": {
              "description": "Linked products to the one instantiate, such as [bundled] if the product is a bundle and you want to describe the bundled products inside this bundle; [reliesOn] if the product needs another already owned product to rely on (e.g. an option on an already owned mobile access product) [targets] or [isTargeted] (depending on the way of expressing the link) for any other kind of links that may be useful",
              "type": "object",
              "additionalProperties": false,
              "required": [
                "product",
                "relationshipType"
              ],
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "characteristic": {
                  "type": "array",
                  "items": {
                    "description": "Describes a given characteristic of an object or entity through a name/value pair.",
                    "type": "object",
                    "additionalProperties": false,
                    "required": [
                      "name"
                    ],
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "characteristicRelationship": {
                        "type": "array",
                        "items": {
                          "description": "Another Characteristic that is related to the current Characteristic;",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "@baseType": {
                              "description": "When sub-classing, this defines the super-class",
                              "type": "string"
                            },
                            "@schemaLocation": {
                              "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                              "type": "string",
                              "format": "uri"
                            },
                            "@type": {
                              "description": "When sub-classing, this defines the sub-class Extensible name",
                              "type": "string"
                            },
                            "href": {
                              "description": "Hyperlink reference",
                              "type": "string",
                              "format": "uri"
                            },
                            "id": {
                              "description": "Unique identifier of the characteristic",
                              "type": "string"
                            },
                            "relationshipType": {
                              "description": "The type of relationship",
                              "type": "string"
                            }
                          }
                        }
                      },
                      "id": {
                        "description": "Unique identifier of the characteristic",
                        "type": "string"
                      },
                      "metadata": {
                        "description": "Metadata of the characteristic\n",
                        "type": "array",
                        "items": {
                          "description": "Metadata\n",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "metadataType": {
                              "description": "Type of the metadata\n",
                              "type": "string"
                            },
                            "name": {
                              "description": "Name of the metadata\n",
                              "type": "string"
                            },
                            "value": {
                              "description": "Value of the metadata\n",
                              "type": "string"
                            }
                          }
                        }
                      },
                      "name": {
                        "description": "Name of the characteristic",
                        "type": "string"
                      },
                      "value": {
                        "description": "The value of the characteristic",
                        "type": "string"
                      },
                      "valueMetadata": {
                        "description": "Metadata of the characteristic value\n",
                        "type": "array",
                        "items": {
                          "description": "Catalog and operational metadata\n",
                          "type": "object",
                          "additionalProperties": false,
                          "properties": {
                            "metadataType": {
                              "description": "Type of the metadata\n",
                              "type": "string"
                            },
                            "name": {
                              "description": "Name of the metadata\n",
                              "type": "string"
                            },
                            "sourceValue": {
                              "description": "Value of the metadata source\n",
                              "type": "string"
                            },
                            "value": {
                              "description": "Value of the metadata\n",
                              "type": "string"
                            }
                          }
                        }
                      },
                      "valueType": {
                        "description": "Data type of the value of the characteristic",
                        "type": "string"
                      }
                    }
                  }
                },
                "href": {
                  "description": "Hyperlink reference",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "unique identifier",
                  "type": "string"
                },
                "product": {
                  "$ref": "#/components/schemas/Product"
                },
                "productSpecificationType": {
                  "type": "string"
                },
                "productSpecificationTypeId": {
                  "type": "string"
                },
                "relationshipSubtype": {
                  "description": "Specific relation entity subtype. Relevant for several relation types",
                  "type": "string"
                },
                "relationshipType": {
                  "description": "Type of the product relationship, such as [bundled] if the product is a bundle and you want to describe the bundled products inside this bundle; [reliesOn] if the product needs another already owned product to rely on (e.g. an option on an already owned mobile access product) [targets] or [isTargeted] (depending on the way of expressing the link) for any other kind of links that may be useful",
                  "type": "string"
                }
              }
            }
          },
          "productSerialNumber": {
            "description": "Is the serial number for the product. This is typically applicable to tangible products e.g. Broadband Router.",
            "type": "string"
          },
          "productSpecification": {
            "description": "Product specification reference: A ProductSpecification is a detailed description of a tangible or intangible object made available externally in the form of a ProductOffering to customers or other parties playing a party role.",
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "@baseType": {
                "description": "When sub-classing, this defines the super-class",
                "type": "string"
              },
              "@referredType": {
                "description": "The actual type of the target instance when needed for disambiguation.",
                "type": "string"
              },
              "@schemaLocation": {
                "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                "type": "string",
                "format": "uri"
              },
              "@type": {
                "description": "When sub-classing, this defines the sub-class Extensible name",
                "type": "string"
              },
              "href": {
                "description": "Hyperlink reference",
                "type": "string",
                "format": "uri"
              },
              "id": {
                "description": "unique identifier",
                "type": "string"
              },
              "name": {
                "description": "Name of the related entity.",
                "type": "string"
              },
              "productSpecificationType": {
                "type": "string"
              },
              "productSpecificationTypeId": {
                "type": "string"
              },
              "targetProductSchema": {
                "description": "A target product schema reference. The reference object to the schema and type of target product which is described by product specification.",
                "type": "object",
                "additionalProperties": false,
                "required": [
                  "@schemaLocation",
                  "@type"
                ],
                "properties": {
                  "@schemaLocation": {
                    "description": "This field provides a link to the schema describing the target product",
                    "type": "string",
                    "format": "uri"
                  },
                  "@type": {
                    "description": "Class type of the target product",
                    "type": "string"
                  }
                }
              },
              "version": {
                "description": "Version of the product specification",
                "type": "string"
              }
            }
          },
          "productTerm": {
            "type": "array",
            "items": {
              "description": "Description of a productTerm linked to this product. This represent a commitment with a duration",
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "description": {
                  "description": "Description of the productTerm",
                  "type": "string"
                },
                "duration": {
                  "description": "An amount in a given unit",
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "amount": {
                      "description": "Numeric value in a given unit",
                      "default": 1,
                      "type": "number",
                      "format": "double"
                    },
                    "units": {
                      "description": "Unit",
                      "type": "string"
                    }
                  }
                },
                "href": {
                  "description": "Hyperlink reference",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "unique identifier",
                  "type": "string"
                },
                "name": {
                  "description": "Name of the productTerm",
                  "type": "string"
                },
                "validFor": {
                  "description": "A period of time, either as a deadline (endDateTime only) a startDateTime only, or both",
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "endDateTime": {
                      "description": "End of the time period, using IETC-RFC-3339 format",
                      "type": "string",
                      "format": "date-time"
                    },
                    "startDateTime": {
                      "description": "Start of the time period, using IETC-RFC-3339 format",
                      "type": "string",
                      "format": "date-time"
                    }
                  }
                }
              }
            }
          },
          "realizingResource": {
            "type": "array",
            "items": {
              "description": "Entity reference schema to be use for all entityRef class.",
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@referredType": {
                  "description": "The actual type of the target instance when needed for disambiguation.",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "href": {
                  "description": "Hyperlink reference",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "unique identifier",
                  "type": "string"
                },
                "name": {
                  "description": "Name of the related entity.",
                  "type": "string"
                }
              }
            }
          },
          "realizingService": {
            "type": "array",
            "items": {
              "description": "Service reference, for when Service is used by other entities",
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@referredType": {
                  "description": "The actual type of the target instance when needed for disambiguation.",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "href": {
                  "description": "Hyperlink reference",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "unique identifier",
                  "type": "string"
                },
                "name": {
                  "description": "Name of the related entity.",
                  "type": "string"
                }
              }
            }
          },
          "referenceId": {
            "description": "TMF++::Reference ID of the product\n",
            "type": "string"
          },
          "relatedParty": {
            "type": "array",
            "items": {
              "description": "Related Entity reference. A related party defines party or party role linked to a specific entity.",
              "type": "object",
              "additionalProperties": false,
              "required": [
                "id",
                "role"
              ],
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@referredType": {
                  "description": "The actual type of the target instance when needed for disambiguation.",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "extensions": {
                  "type": "array",
                  "items": {
                    "description": "ATT++::Describes a given characteristic of an object or entity through a name/value pair.",
                    "type": "object",
                    "additionalProperties": false,
                    "required": [
                      "name",
                      "value"
                    ],
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@referredType": {
                        "description": "The actual type of the target instance when needed for disambiguation.",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "href": {
                        "description": "Hyperlink reference",
                        "type": "string",
                        "format": "uri"
                      },
                      "id": {
                        "description": "unique identifier",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the characteristic",
                        "type": "string"
                      },
                      "value": {
                        "description": "Value of the characteristic",
                        "type": "string"
                      },
                      "valueType": {
                        "description": "Data type of the value of the characteristic",
                        "type": "string"
                      }
                    }
                  }
                },
                "href": {
                  "description": "Hyperlink reference",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "unique identifier",
                  "type": "string"
                },
                "name": {
                  "description": "Name of the related entity.",
                  "type": "string"
                },
                "partyType": {
                  "type": "string"
                },
                "role": {
                  "description": "Role played by the related party",
                  "type": "string"
                }
              }
            }
          },
          "startDate": {
            "description": "Is the date from which the product starts",
            "type": "string",
            "format": "date-time"
          },
          "status": {
            "description": "Is the lifecycle status of the product.",
            "enum": [
              "created",
              "pendingActive",
              "cancelled",
              "active",
              "pendingTerminate",
              "terminated",
              "suspended",
              "aborted"
            ],
            "type": "string"
          },
          "terminationDate": {
            "description": "Is the date when the product was terminated",
            "type": "string",
            "format": "date-time"
          },
          "version": {
            "description": "Version of existing product in the PI system\n",
            "type": "string"
          }
        }
      },
      "CouponsRequest": {
        "title": "CouponsRequest",
        "type": "object",
        "description": "ATT++::Coupons API Request Entity",
        "properties": {
          "code": {
            "type": "string",
            "description": "Coupon Code"
          },
          "type": {
            "type": "string",
            "description": "Coupon Type"
          }
        },
        "required": [
          "code"
        ]
      },
      "AddCoupons_RequestBody": {
        "title": "AddCoupons_RequestBody",
        "type": "object",
        "description": "ATT++::Add Coupons to the shooping cart",
        "properties": {
          "coupons": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CouponsRequest"
            }
          }
        },
        "required": [
          "coupons"
        ]
      },
      "PromotionAction": {
        "required": [
          "actionType"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the promotion action\n"
          },
          "name": {
            "type": "string",
            "description": "Name of the promotion action\n"
          },
          "description": {
            "type": "string",
            "description": "Description of the promotion action\n"
          },
          "actionType": {
            "type": "string",
            "description": "Type of the action. A valid value is *Price Alteration*, *Product Offering*.\n"
          },
          "actionValue": {
            "type": "integer",
            "description": "Value of the action. If the *actionType* is Price Alteration, the action value is '1'.\n"
          },
          "promotionPriceAlteration": {
            "$ref": "#/components/schemas/ProductOfferingPriceRef"
          },
          "productOfferingBenefit": {
            "type": "array",
            "description": "Reference to a product offering usaed as a free offer benefit by the promotion\n",
            "items": {
              "$ref": "#/components/schemas/ProductOfferingBenefit"
            }
          },
          "durationPolicy": {
            "$ref": "#/components/schemas/DurationPolicy"
          },
          "validFor": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "actionTerminationPolicy": {
            "type": "string",
            "description": "Defines the termination policy upon duration end date\n"
          },
          "relatedTriggerItem": {
            "type": "array",
            "description": "An optional relation from a specific promotion action to a specific trigger item.  \n",
            "items": {
              "$ref": "#/components/schemas/RelatedTriggerItem"
            }
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "TMF++::Action of the promotion. Customers can receive benefits associated with the action if the conditions in the promotion pattern are fulfilled.\n"
      },
      "DurationPolicy": {
        "type": "object",
        "properties": {
          "duration": {
            "$ref": "#/components/schemas/Quantity"
          },
          "startDatePolicy": {
            "type": "string",
            "description": "Start date of the policy, from which the duration is calculated\n"
          },
          "endDatePolicy": {
            "type": "string",
            "description": "End date of the policy, until which the duration is calculated\n"
          },
          "effectiveFor": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "terminationPolicy": {
            "type": "string",
            "description": "Defines the termination policy upon duration end date\n"
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "TMF++::Policy for calculting a limited duration for any entity\n"
      },
      "RelatedTriggerItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "The unique ID of the related trigger item\n"
          },
          "role": {
            "type": "string",
            "description": "The role of the related trigger item\n"
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "TMF++::A relation to a specific trigger item. For example, for promotion action with actionType = productOffering, this relation indicates a relevant trigger item to which the action should be related. The type of the relation is specified in 'role' field\n"
      },
      "ProductOfferingBenefit": {
        "type": "object",
        "properties": {
          "productOfferingId": {
            "type": "string",
            "description": "the id of the product offering granted as a benefit\n"
          },
          "promotionPriceAlteration": {
            "type": "array",
            "description": "referecne to price entity representing the actual monetary discount\n",
            "items": {
              "$ref": "#/components/schemas/ProductOfferingPriceRef"
            }
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "TMF++::Reference to a product offering used as a free offer benefit by the promotion"
      },
      "ProductOrder_Update_RelatedParty": {
        "title": "ProductOrder_Update_RelatedParty",
        "type": "object",
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "relatedParty": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedParty"
            }
          }
        }
      },
      "NumberSelection_RequestBody": {
        "title": "NumberSelection_RequestBody",
        "additionalProperties": false,
        "type": "object",
        "properties": {
          "number": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "id",
                "resource"
              ],
              "additionalProperties": false,
              "properties": {
                "id": {
                  "type": "string",
                  "description": "Number Id"
                },
                "role": {
                  "type": "string",
                  "description": "Number Role"
                },
                "resource": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RelatedResource"
                  }
                }
              }
            }
          }
        }
      },
      "ServiceAddress_RequestBody": {
        "title": "ServiceAddress_RequestBody",
        "additionalProperties": false,
        "type": "object",
        "properties": {
          "address": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "id",
                "resource"
              ],
              "additionalProperties": false,
              "properties": {
                "id": {
                  "type": "string",
                  "description": "Service Place Id"
                },
                "resource": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RelatedResource"
                  }
                }
              }
            }
          }
        }
      },
      "AddItemsToCart_RequestBody": {
        "title": "ProductOrderItem_RequestBody",
        "type": "object",
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "relatedParty": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedParty"
            }
          },
          "promotions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PromotionRequest"
            }
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOrderItem_InputRequest"
            }
          }
        },
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items."
      },
      "SaveCart_RequestBody": {
        "title": "SaveCart_RequestBody",
        "type": "object",
        "properties": {
          "email": {
            "type": "string",
            "description": "Customer's Email Address"
          }
        },
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items."
      },
      "CartUpdateRequest": {
        "title": "CartUpdateRequest",
        "type": "object",
        "properties": {
          "state": {
            "type": "string",
            "description": "state of the shoppingCart"
          },
          "extensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          }
        },
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items."
      },
      "Fulfillment_RequestBody": {
        "title": "Fulfillment_RequestBody",
        "type": "object",
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Fulfillment_LineItem"
            }
          }
        },
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items."
      },
      "Fulfillment_LineItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Identifier of the product offer"
          },
          "quantity": {
            "type": "integer",
            "description": "Quantity ordered"
          },
          "selectedFulfillmentOption": {
            "$ref": "#/components/schemas/ProductOrderItem_InputRequest"
          }
        }
      },
      "BillingInfo_RequestBody": {
        "title": "BillingInfo_RequestBody",
        "type": "object",
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "billingInfo": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BillingInfoRequest"
            }
          }
        },
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items."
      },
      "PaymentInfo_RequestBody": {
        "title": "PaymentInfo_RequestBody",
        "type": "object",
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "payment": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PaymentInfoRequest"
            }
          }
        },
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items."
      },
      "ProductOrderItem_InputRequest": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Identifier of the product offer"
          },
          "itemType": {
            "type": "string",
            "description": "Type of the product offer"
          },
          "offerId": {
            "type": "string",
            "description": "Identifier of the product offer"
          },
          "requestedCompletionDate": {
            "type": "string",
            "description": "Requested delivery date from the requestor perspective.",
            "format": "date-time"
          },
          "variantId": {
            "type": "string",
            "description": "Variant Group Id of the product offer. Also known as SKU."
          },
          "groupOptionId": {
            "type": "string",
            "description": "Reference to the product offering group option from the product catalog"
          },
          "quantity": {
            "type": "integer",
            "description": "Quantity ordered"
          },
          "action": {
            "$ref": "#/components/schemas/OrderItemActionType"
          },
          "state": {
            "$ref": "#/components/schemas/ProductOrderItemStateType"
          },
          "billingAccount": {
            "$ref": "#/components/schemas/BillingAccountRef"
          },
          "itemTerm": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderTerm"
            }
          },
          "product": {
            "$ref": "#/components/schemas/ProductRefOrValue"
          },
          "itemRelationship": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderItemRelationship"
            }
          },
          "rootBundleProductOfferId": {
            "type": "string",
            "description": "The ID of the root bundle item.\n"
          },
          "rootBundleProductOrderItemId": {
            "type": "string",
            "description": "The ID of the root bundle order item.\n"
          },
          "rootOrderItemId": {
            "type": "string",
            "description": "The ID of the root order item.\n"
          },
          "itemTxnType": {
            "type": "string",
            "enum": [
              "ACC",
              "AL",
              "ALF",
              "AMEND",
              "CANCEL",
              "CHANGE",
              "DEVICE",
              "DISCONNECT",
              "NEW",
              "NO_CHANGE",
              "PARK",
              "PRICE_CHANGE",
              "REFERENCE",
              "REWARDS/GIFT",
              "UNIFY",
              "UNLOCK",
              "UP",
              "WINBACK",
              "WINOVER"
            ]
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOrderItem_InputRequest"
            }
          },
          "characteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "actionReason": {
            "$ref": "#/components/schemas/ActionReason"
          }
        }
      },
      "EntityIdGenericResponse": {
        "title": "EntityIDGenericResponse",
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        }
      },
      "SearchCartEntity": {
        "title": "SearchCartEntity",
        "type": "object",
        "additionalProperties": true
      },
      "EntityCountGenericResponse": {
        "title": "EntityIDGenericResponse",
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "count": {
            "type": "integer"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        }
      },
      "QueryCartResponse": {
        "type": "array",
        "items": {
          "$ref": "#/components/schemas/SearchCartEntity"
        }
      },
      "MicroCartsResponse": {
        "properties": {
          "userId": {
            "type": "string",
            "description": "user profile id"
          },
          "carts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOrder"
            }
          },
          "cart-conflict-info": {
            "type": "object",
            "additionalProperties": true
          }
        }
      },
      "InitializeCart_RequestBody": {
        "title": "ProductOrderItem_RequestBody",
        "type": "object",
        "properties": {
          "cartType": {
            "type": "string",
            "description": "CartType"
          },
          "id": {
            "type": "string",
            "description": "id"
          },
          "extensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          },
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "relatedParty": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedParty"
            }
          }
        },
        "description": "ATT++::Initialize Cart Input Request Body"
      },
      "Configuration": {
        "type": "object",
        "properties": {
          "status": {
            "type": "string",
            "description": "Type of the component\n"
          },
          "type": {
            "type": "string",
            "description": "Type of the component\n"
          },
          "subtype": {
            "type": "string",
            "description": "Sub Type of the Component\n"
          },
          "properties": {
            "type": "array",
            "description": "Name/value pair\n",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          },
          "required": {
            "type": "boolean",
            "description": "Component required for Product Order Configuration\n"
          },
          "postOrderConfigurable": {
            "type": "boolean",
            "description": "Component Post Order Product Order Configuration\n"
          },
          "readOnly": {
            "type": "boolean",
            "description": "Component allowed for configuration or not.\n"
          },
          "resource": {
            "type": "array",
            "description": "Resource that is associated with the message\n",
            "items": {
              "$ref": "#/components/schemas/RelatedResource"
            }
          }
        },
        "description": "ATT++::Message associated with the validation failure\n"
      },
      "ApplicationDetails": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a application"
          },
          "unifiedCreditTransactionId": {
            "type": "string",
            "description": "Transaction Id."
          },
          "unifiedPolicyTransactionId": {
            "type": "string",
            "description": "Unified Policy Transaction Id."
          },
          "refusedIndicator": {
            "type": "boolean",
            "description": "Refused Indicator"
          },
          "debtPaymentComplete": {
            "type": "boolean",
            "description": "Debt Payment completed part of the transaction"
          }
        },
        "description": "Credit Application Details"
      },
      "RiskAssessment_RequestBody": {
        "title": "RiskAssessment_RequestBody",
        "type": "object",
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "autoApplyRiskAssesmentPolicyToCart": {
            "type": "boolean",
            "description": "Auto Apply Policy to Cart"
          },
          "applicationDetails": {
            "$ref": "#/components/schemas/ApplicationDetails"
          }
        },
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items."
      },
      "RiskAssessment_Response": {
        "title": "RiskAssessment_Response",
        "type": "object",
        "properties": {
          "status": {
            "type": "string",
            "description": "Policy Status"
          },
          "policyImpactToCart": {
            "type": "boolean",
            "description": "Policy impactto Cart"
          },
          "policyAppliedToCart": {
            "type": "boolean",
            "description": "Policy applied to Cart"
          },
          "applicationDetails": {
            "$ref": "#/components/schemas/ApplicationDetails"
          },
          "riskAssessmentResult": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RiskAssessmentResult"
            }
          }
        },
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items."
      },
      "RiskAssessmentResult": {
        "title": "RiskAssesmentResult",
        "type": "object",
        "properties": {
          "productType": {
            "type": "string",
            "description": "Product Type"
          },
          "securityType": {
            "type": "string",
            "description": "Security Type"
          },
          "securityDescription": {
            "type": "string",
            "description": "Security description"
          },
          "securityAmount": {
            "type": "number",
            "description": "Security Amount"
          },
          "resource": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedResource"
            }
          },
          "characteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          }
        },
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items."
      },
      "SubmitOrder_RequestBody": {
        "title": "SubmitOrder_RequestBody",
        "type": "object",
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "extensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          }
        },
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items."
      },
      "SubmitOrder_ResponseBody": {
        "title": "SubmitOrder_ResponseBody",
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Product Order Id"
          },
          "state": {
            "$ref": "#/components/schemas/ProductOrderStateType"
          },
          "customerOrderId": {
            "type": "string",
            "description": "Customer Order Id"
          },
          "completionDate": {
            "type": "string",
            "description": "Date when the order was completed",
            "format": "date-time"
          },
          "orderSummaryAccessToken": {
            "type": "string",
            "description": "Order Summary Access Token"
          }
        },
        "description": "ATT++::Submit Order Response Body"
      },
      "Terms_RequestBody": {
        "title": "Terms_RequestBody",
        "type": "object",
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "agreement": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TermsInputRequest"
            }
          }
        },
        "description": "ATT++::An identified part of the order. "
      },
      "CartFulfillmentOptionsResponse": {
        "title": "CartFulfillmentOptionsResponse",
        "type": "object",
        "properties": {
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CartItemFulfillmentOption"
            }
          }
        },
        "description": "ATT++::CartFulfillmentOptionsResponse "
      },
      "CartItemFulfillmentOption": {
        "title": "CartItemFulfillmentOption",
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Terms id"
          },
          "selectedFulfillmentOption": {
            "$ref": "#/components/schemas/ProductOrderItem"
          },
          "fulfillmentOptions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          },
          "characteristic": {
            "type": "array",
            "description": "a structure used to describe a characteristics of fulfillmentoptions when not applicable",
            "items": {
              "$ref": "#/components/schemas/Characteristic"
            }
          }
        },
        "description": "ATT++::CartFulfillmentOptionsResponse "
      },
      "FulfillmentOption": {
        "description": "Fulfillment option",
        "type": "object",
        "properties": {
          "priority": {
            "type": "integer"
          },
          "fulfillmentMethod": {
            "type": "string"
          },
          "signalStatus": {
            "type": "string"
          },
          "availableQty": {
            "type": "number"
          },
          "available": {
            "type": "boolean"
          },
          "dates": {
            "$ref": "#/components/schemas/DFDate"
          },
          "productOffering": {
            "$ref": "#/components/schemas/ProductOfferingRef"
          },
          "price": {
            "$ref": "#/components/schemas/FulfillmentOptionPrice"
          },
          "finalPrice": {
            "$ref": "#/components/schemas/FulfillmentOptionPrice"
          }
        }
      },
      "DFDate": {
        "description": "Direct Fulfillment Date",
        "type": "object",
        "properties": {
          "shipmentDates": {
            "type": "object",
            "properties": {
              "dateFrom": {
                "type": "string"
              },
              "dateTo": {
                "type": "string"
              }
            }
          },
          "deliveryDates": {
            "type": "object",
            "properties": {
              "dateFrom": {
                "type": "string"
              },
              "dateTo": {
                "type": "string"
              }
            }
          }
        }
      },
      "FulfillmentOptionPrice": {
        "description": "Direct Fulfillment Date",
        "type": "object",
        "properties": {
          "dutyFreeAmount": {
            "$ref": "#/components/schemas/Money"
          }
        }
      },
      "OrderSummary_Response": {
        "title": "OrderSummary_Response",
        "type": "object",
        "properties": {
          "productOrder": {
            "$ref": "#/components/schemas/ProductOrder"
          },
          "customerInfo": {
            "$ref": "#/components/schemas/CustomerInfo"
          },
          "addresses": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GeographicAddress"
            }
          },
          "payment": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PaymentProductOrder"
            }
          }
        },
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items."
      },
      "GeographicAddress": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the place"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Unique reference of the place"
          },
          "city": {
            "type": "string",
            "description": "City that the address is in"
          },
          "country": {
            "type": "string",
            "description": "Country that the address is in"
          },
          "locality": {
            "type": "string",
            "description": "An area of defined or undefined boundaries within a local authority or other legislatively defined area, usually rural or semi rural in nature. [ANZLIC-STREET], or a suburb, a bounded locality within a city, town or shire principally of urban character [ANZLICSTREET]"
          },
          "name": {
            "type": "string",
            "description": "A user-friendly name for the place, such as [Paris Store], [London Store], [Main Home]"
          },
          "postcode": {
            "type": "string",
            "description": "descriptor for a postal delivery area, used to speed and simplify the delivery of mail (also know as zipcode)"
          },
          "stateOrProvince": {
            "type": "string",
            "description": "the State or Province that the address is in"
          },
          "streetName": {
            "type": "string",
            "description": "Name of the street or other street type"
          },
          "streetNr": {
            "type": "string",
            "description": "Number identifying a specific property on a public street. It may be combined with streetNrLast for ranged addresses"
          },
          "streetNrLast": {
            "type": "string",
            "description": "Last number in a range of street numbers allocated to a property"
          },
          "streetNrLastSuffix": {
            "type": "string",
            "description": "Last street number suffix for a ranged address"
          },
          "streetNrSuffix": {
            "type": "string",
            "description": "the first street number suffix"
          },
          "streetSuffix": {
            "type": "string",
            "description": "A modifier denoting a relative direction"
          },
          "streetType": {
            "type": "string",
            "description": "alley, avenue, boulevard, brae, crescent, drive, highway, lane, terrace, parade, place, tarn, way, wharf "
          },
          "geographicLocation": {
            "$ref": "#/components/schemas/GeographicLocationRefOrValue"
          },
          "geographicSubAddress": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GeographicSubAddress"
            }
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "Structured textual way of describing how to find a Property in an urban area (country properties are often defined differently).\nNote : Address corresponds to SID UrbanPropertyAddress"
      },
      "GeographicLocationRefOrValue": {
        "required": [
          "@type"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the place"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Unique reference of the place"
          },
          "name": {
            "type": "string",
            "description": "A user-friendly name for the place, such as [Paris Store], [London Store], [Main Home]"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class",
            "example": "ResourceSpecification"
          },
          "bbox": {
            "type": "array",
            "description": "A bounding box array that contains the geometry. The axes order follows the axes order of the geometry",
            "items": {
              "type": "number"
            }
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri",
            "example": "https://mycsp.com:8080/tmf-api/schema/Resource/LogicalResourceSpecification.schema.json"
          },
          "@type": {
            "type": "string",
            "description": "The name of the GeoJSON structure used in the geometry attribute",
            "enum": [
              "GeoJsonPoint",
              "GeoJsonMultiPoint",
              "GeoJsonLineString",
              "GeoJsonMultiLineString",
              "GeoJsonPolygon"
            ]
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "A GeographicLocation is a pure-virtual super-class to the GeoJSON-aligned geometries of Point (addresses and locations), MultiPoint, LineString (streets, highways and boundaries), MultiLineString and Polygon (countries, provinces, tracts of land). Use the @type attribute to specify which of these is being specified by the geometry attribute."
      },
      "GeographicSubAddress": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique Identifier of the subAddress"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Link to the subAddress"
          },
          "buildingName": {
            "type": "string",
            "description": "allows for buildings that have well-known names"
          },
          "levelNumber": {
            "type": "string",
            "description": "used where a level type may be repeated e.g. BASEMENT 1, BASEMENT 2"
          },
          "levelType": {
            "type": "string",
            "description": "describes level types within a building"
          },
          "name": {
            "type": "string",
            "description": "Name of the subAddress to identify it with a meaningful identification"
          },
          "privateStreetName": {
            "type": "string",
            "description": "private streets internal to a property (e.g. a university) may have internal names that are not recorded by the land title office."
          },
          "privateStreetNumber": {
            "type": "string",
            "description": "private streets numbers internal to a private street"
          },
          "subAddressType": {
            "type": "string",
            "description": "Type of subAddress : it can be a subunit or a private street"
          },
          "subUnitNumber": {
            "type": "string",
            "description": "the discriminator used for the subunit\noften just a simple number e.g. FLAT 5, may also be a range"
          },
          "subUnitType": {
            "type": "string",
            "description": "the type of subunit\ne.g.BERTH, FLAT, PIER, SUITE, SHOP, TOWER, UNIT, WHARF"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "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.    "
      },
      "PartyCharacteristic": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Valid value is \"individualType\".Only applicable for accessory only individual\n"
          },
          "value": {
            "type": "string",
            "description": "Valid value is \"accessoryOnly\".Only applicable for accessory only individual\n"
          },
          "valueType": {
            "type": "string",
            "description": "Only applicable for accessory only individual\n"
          }
        }
      },
      "ContactMedium": {
        "type": "object",
        "properties": {
          "mediumType": {
            "type": "string",
            "description": "Contact medium type , Valid values - email ,postalAddress,telephone\n"
          },
          "preferred": {
            "type": "boolean",
            "description": "Indicator for preferred contact medium for communication, as of today US not taking any notification\n"
          },
          "characteristic": {
            "$ref": "#/components/schemas/MediumCharacteristic"
          }
        }
      },
      "MediumCharacteristic": {
        "type": "object",
        "properties": {
          "contactType": {
            "type": "string",
            "description": "Type of medium (fax, mobile phone...).\n"
          },
          "emailAddress": {
            "type": "string",
            "description": "The contact's email address for the ContactMedium type of email.\n"
          },
          "phoneNumber": {
            "type": "string",
            "description": "The contact's phone number for Contact Medium type telephone number.\n"
          },
          "city": {
            "type": "string",
            "description": "The city name for the contact's address for Contact Medium type postal address.\n"
          },
          "country": {
            "type": "string",
            "description": "The country ISO code for the contact's address for Contact Medium type postal address.\n"
          },
          "postCode": {
            "type": "string",
            "description": "The postcode for the contact's address for Contact Medium type postal address.\n"
          },
          "stateOrProvince": {
            "type": "string",
            "description": "The state or province from contact's address for Contact Medium type postal address.\n"
          },
          "street1": {
            "type": "string",
            "description": "The first street line for the contact's address for Contact Medium type postal address.\n"
          },
          "street2": {
            "type": "string",
            "description": "The second street line for the contact's address for Contact Medium type \n"
          },
          "place": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The unique address ID for the address set on the customer\n"
              }
            }
          }
        }
      },
      "RelatedPartyRef": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique id of an existing id.\n"
          },
          "name": {
            "type": "string",
            "description": "The name of related party.\n"
          },
          "role": {
            "type": "string",
            "description": "The role of related party\n"
          },
          "@referredType": {
            "type": "string",
            "description": "Describes if it's Customer/Individual/Organazation\nPatchable - No\n"
          },
          "validFor": {
            "$ref": "#/components/schemas/TimePeriod"
          }
        }
      },
      "languageAbility": {
        "type": "object",
        "properties": {
          "languageCode": {
            "type": "string",
            "description": "\"en\" , defines code for language for customer\n"
          },
          "languageName": {
            "type": "string",
            "description": "English , NEed to define values\n"
          }
        }
      },
      "legalId": {
        "type": "array",
        "items": {
          "$ref": "#/components/schemas/individualIdentification"
        }
      },
      "resource": {
        "type": "array",
        "items": {
          "$ref": "#/components/schemas/individualIdentification"
        }
      },
      "individualIdentification": {
        "type": "object",
        "properties": {
          "identificationId": {
            "type": "string",
            "description": "Identifier"
          },
          "identificationType": {
            "type": "string",
            "description": "security identifier type"
          },
          "@type": {
            "type": "string",
            "description": "SecurityQuestion"
          }
        }
      },
      "CustomerInfo": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the individual\n"
          },
          "@type": {
            "type": "string",
            "description": "individual"
          },
          "givenName": {
            "type": "string",
            "description": "firstName"
          },
          "familyName": {
            "type": "string",
            "description": "lastName"
          },
          "contactMedium": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ContactMedium"
            }
          },
          "languageAbility": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/languageAbility"
            }
          },
          "partyCharacteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PartyCharacteristic"
            }
          }
        }
      },
      "Promotion_RequestBody": {
        "title": "Promotion_RequestBody",
        "type": "object",
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items.",
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "productConfiguration": {
            "$ref": "#/components/schemas/ProductConfiguration"
          },
          "promotions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PromotionRequest"
            }
          },
          "billingAccount": {
            "$ref": "#/components/schemas/BillingAccountRef"
          },
          "extensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          }
        },
        "required": [
          "channel",
          "promotions"
        ]
      },
      "PromotionRequest": {
        "title": "PromotionRequest",
        "type": "object",
        "description": "ATT++::Promotion API Request Entity",
        "properties": {
          "immediatePromotionCharacteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ContextCharacteristic"
            }
          },
          "id": {
            "type": "string",
            "description": "Promotion Id"
          },
          "type": {
            "type": "string",
            "description": "Promotion Type.",
            "enum": [
              "manualpromotion"
            ]
          },
          "status": {
            "type": "string",
            "description": "Promotion Status"
          },
          "productPromotion": {
            "$ref": "#/components/schemas/ProductPromotionRef"
          },
          "reason": {
            "$ref": "#/components/schemas/Reason"
          },
          "promotion": {
            "$ref": "#/components/schemas/PromotionRef"
          },
          "triggerItem": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TriggerItem"
            }
          },
          "benefitItem": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BenefitItem"
            }
          },
          "extensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          }
        },
        "required": [
          "id",
          "type"
        ]
      },
      "ProductConfiguration": {
        "title": "ProductConfiguration",
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Product Id"
          }
        }
      },
      "Reason": {
        "title": "Reason",
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Reason Name"
          },
          "reasonText": {
            "type": "string",
            "description": "Reason Text"
          }
        },
        "description": "ATT++::An identified part of the order. A product order is decomposed into one or more order items."
      },
      "Encryption_Request": {
        "title": "Encryption Request",
        "type": "object",
        "properties": {
          "referralChannel": {
            "type": "string",
            "description": "Channel name"
          },
          "referralAgentId": {
            "type": "string",
            "description": "Rep Id"
          },
          "referralStoreId": {
            "type": "string",
            "description": "store Id"
          }
        },
        "description": "Request contents which need to be encrypted."
      },
      "Encryption_Response": {
        "title": "Encryption Response",
        "type": "object",
        "properties": {
          "referralToken": {
            "type": "string",
            "description": "Encrypted String"
          }
        },
        "description": "Encrypted response of the given content"
      },
      "ProductOrderItem_Extensions": {
        "title": "Extensions for ProductOrderItem",
        "type": "object",
        "properties": {
          "@baseType": {
            "description": "When sub-classing, this defines the super-class",
            "type": "string"
          },
          "@referredType": {
            "description": "The actual type of the target instance when needed for disambiguation.",
            "type": "string"
          },
          "@schemaLocation": {
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri",
            "type": "string"
          },
          "@type": {
            "description": "When sub-classing, this defines the sub-class Extensible name",
            "type": "string"
          },
          "href": {
            "description": "Hyperlink reference",
            "format": "uri",
            "type": "string"
          },
          "id": {
            "description": "unique identifier",
            "type": "string"
          },
          "initDeliveryByFromDate": {
            "format": "date-time",
            "type": "string"
          },
          "initDeliveryByToDate": {
            "format": "date-time",
            "type": "string"
          },
          "initPromiseFromDate": {
            "format": "date-time",
            "type": "string"
          },
          "initPromiseToDate": {
            "format": "date-time",
            "type": "string"
          },
          "lineSalesRep": {
            "type": "string"
          },
          "substitutionAction": {
            "type": "string"
          },
          "name": {
            "description": "Name of the related entity.",
            "type": "string"
          }
        }
      },
      "ExpressCheckout_Request": {
        "title": "Express Checkout Request",
        "type": "object",
        "properties": {
          "channel": {
            "$ref": "#/components/schemas/RelatedChannel"
          },
          "fulfillment": {
            "$ref": "#/components/schemas/FulfillmentDetails"
          },
          "payment": {
            "$ref": "#/components/schemas/PaymentDetails"
          }
        },
        "description": "Request contents which need to be encrypted."
      },
      "FulfillmentDetails": {
        "type": "object",
        "properties": {
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Fulfillment_LineItem_EC"
            }
          }
        }
      },
      "Fulfillment_LineItem_EC": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "fulfillmentMethod": {
            "type": "string"
          },
          "signalStatus": {
            "type": "string"
          },
          "availableQty": {
            "type": "number"
          },
          "available": {
            "type": "boolean"
          },
          "dates": {
            "$ref": "#/components/schemas/DFDate"
          },
          "productOffering": {
            "$ref": "#/components/schemas/ProductOfferingRef"
          },
          "product": {
            "$ref": "#/components/schemas/ProductRefOrValue"
          },
          "productOrderItemRelationship": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderItemRelationship"
            }
          },
          "price": {
            "$ref": "#/components/schemas/FulfillmentOptionPrice"
          },
          "finalPrice": {
            "$ref": "#/components/schemas/FulfillmentOptionPrice"
          },
          "extensions": {
            "$ref": "#/components/schemas/ProductOrderItem_Extensions"
          }
        }
      },
      "PaymentDetails": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Payment Id"
          },
          "role": {
            "type": "string",
            "description": "Payment Role"
          },
          "authorizationCode": {
            "type": "string"
          },
          "resource": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedResource"
            }
          }
        }
      },
      "ActionReason": {
        "type": "object",
        "properties": {
          "action": {
            "description": "Name of the action performed on the instance of the product offering\n",
            "type": "string"
          },
          "name": {
            "description": "Name of the modification reason\n",
            "type": "string"
          },
          "reasonText": {
            "description": "Text of the modification reason. This property is populated if the type of the modification reason requires an input of a free text\n",
            "type": "string"
          }
        }
      },
      "AgreementItemRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "agreementItemId": {
            "type": "string",
            "description": "Identifier of the agreement"
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "Agreement reference. An agreement represents a contract or arrangement, either written or verbal and sometimes enforceable by law, such as a service level agreement or a customer price agreement. An agreement involves a number of other business entities, such as products, services, and resources and/or their specifications."
      },
      "AgreementRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the agreement"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          },
          "extensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          }
        },
        "description": "Agreement reference. An agreement represents a contract or arrangement, either written or verbal and sometimes enforceable by law, such as a service level agreement or a customer price agreement. An agreement involves a number of other business entities, such as products, services, and resources and/or their specifications.",
        "title": ""
      },
      "Any": {
        "type": "object"
      },
      "AppointmentRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "The identifier of the referred appointment"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "The reference of the appointment"
          },
          "description": {
            "type": "string",
            "description": "An explanatory text regarding the appointment made with a party"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation"
          }
        },
        "description": "Refers an appointment, such as a Customer presentation or internal meeting or site visit"
      },
      "BillingAccountRef": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the billing account"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the billing account"
          },
          "name": {
            "type": "string",
            "description": "Name of the billing account"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          },
          "characteristic": {
            "type": "array",
            "description": "a strucuture used to describe a characteristics of billing account",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          },
          "ratingType": {
            "type": "string",
            "description": "Indicates whether the account follows a specific payment option such as prepaid or postpaid"
          }
        },
        "description": "BillingAccount reference. A BillingAccount is a detailed description of a bill structure."
      },
      "BillStructure": {
        "type": "object",
        "properties": {
          "presentationMedia": {
            "type": "array",
            "description": "The structure of the bill for party accounts (billing or settlement).",
            "items": {
              "$ref": "#/components/schemas/BillPresentationMediaRefOrValue"
            }
          }
        },
        "description": "The structure of the bill for party accounts (billing or settlement)."
      },
      "PaymentMethodRef": {
        "type": "object",
        "properties": {
          "presentationMedia": {
            "type": "object",
            "description": "PaymentMethod reference. A payment method defines a specific mean of payment (e.g direct debit).",
            "items": {
              "$ref": "#/components/schemas/EntityRef"
            }
          }
        },
        "description": "PaymentMethod reference. A payment method defines a specific mean of payment (e.g direct debit)."
      },
      "BillPresentationMediaRefOrValue": {
        "type": "object",
        "properties": {
          "presentationMedia": {
            "type": "array",
            "description": "An attachment by value or by reference.",
            "items": {
              "$ref": "#/components/schemas/BillPresentationMediaRef"
            }
          }
        },
        "description": "An attachment by value or by reference.."
      },
      "BillPresentationMediaRef": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the bill presentation media"
          },
          "name": {
            "type": "string",
            "description": "A short descriptive name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "PresentationMedia reference. A mean of communicating a bill, supported by the associated bill format. For example, post mail, email, web page."
      },
      "CancelOrder": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "id of the cancellation request (this is not an order id)"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Hyperlink to access the cancellation request"
          },
          "cancellationReason": {
            "type": "string",
            "description": "Reason why the order is cancelled."
          },
          "effectiveCancellationDate": {
            "type": "string",
            "description": "Date when the order is cancelled.",
            "format": "date-time"
          },
          "requestedCancellationDate": {
            "type": "string",
            "description": "Date when the submitter wants the order to be cancelled",
            "format": "date-time"
          },
          "state": {
            "$ref": "#/components/schemas/TaskStateType"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "A Order cancel is a type of task which  can  be used to place a request to cancel an order"
      },
      "CancelProductOrder": {
        "required": [
          "productOrder"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "id of the cancellation request (this is not an order id)"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Hyperlink to access the cancellation request"
          },
          "cancellationReason": {
            "type": "string",
            "description": "Reason why the order is cancelled."
          },
          "effectiveCancellationDate": {
            "type": "string",
            "description": "Date when the order is cancelled.",
            "format": "date-time"
          },
          "requestedCancellationDate": {
            "type": "string",
            "description": "Date when the submitter wants the order to be cancelled",
            "format": "date-time"
          },
          "productOrder": {
            "$ref": "#/components/schemas/ProductOrderRef"
          },
          "state": {
            "$ref": "#/components/schemas/TaskStateType"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "Request for cancellation an existing product order"
      },
      "CancelProductOrder_Create": {
        "required": [
          "productOrder"
        ],
        "type": "object",
        "properties": {
          "cancellationReason": {
            "type": "string",
            "description": "Reason why the order is cancelled."
          },
          "requestedCancellationDate": {
            "type": "string",
            "description": "Date when the submitter wants the order to be cancelled",
            "format": "date-time"
          },
          "productOrder": {
            "$ref": "#/components/schemas/ProductOrderRef"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "Request for cancellation an existing product order\nSkipped properties: id,href,state,effectiveCancellationDate"
      },
      "Characteristic": {
        "required": [
          "name",
          "value"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of the characteristic"
          },
          "valueType": {
            "type": "string",
            "description": "Data type of the value of the characteristic"
          },
          "value": {
            "type": "string",
            "description": "Value of the characteristic"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "Describes a given characteristic of an object or entity through a name/value pair."
      },
      "EntityRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "Entity reference schema to be use for all entityRef class."
      },
      "FutureBillResponse": {
        "type": "object",
        "properties": {
          "futurebills": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/FutureBillEstimate"
            }
          }
        }
      },
      "FutureBillEstimate": {
        "type": "object",
        "properties": {
          "annualCost": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "additionalCharges": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "bundlePrice": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "description": {
            "type": "string",
            "description": "Description of the promotionDuration"
          },
          "discounts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Discount"
            }
          },
          "installmentCharge": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "installmentChannelCharge": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "monthTitleLength": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "oneTimeCost": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "sortOrder": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "subTotal": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "totalCount": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          }
        }
      },
      "Discount": {
        "type": "object",
        "properties": {
          "price": {
            "type": "number",
            "description": "A positive floating point number",
            "format": "float"
          },
          "description": {
            "type": "string",
            "description": "Description of the discount"
          }
        }
      },
      "installationDayContact": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string"
          },
          "contactMedium": {
            "type": "array",
            "items": {
              "description": "Indicates the contact medium that could be used to contact the party.",
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "characteristic": {
                  "description": "Any additional characteristic(s) of this contact medium",
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "@baseType": {
                      "description": "When sub-classing, this defines the super-class",
                      "type": "string"
                    },
                    "@schemaLocation": {
                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                      "type": "string",
                      "format": "uri"
                    },
                    "@type": {
                      "description": "When sub-classing, this defines the sub-class Extensible name",
                      "type": "string"
                    },
                    "city": {
                      "description": "The city",
                      "type": "string"
                    },
                    "contactType": {
                      "description": "The type of contact, for example: phone number such as mobile, fixed home, fixed office. postal address such as shipping instalation…",
                      "type": "string"
                    },
                    "country": {
                      "description": "The country",
                      "type": "string"
                    },
                    "emailAddress": {
                      "description": "Full email address in standard format",
                      "type": "string"
                    },
                    "faxNumber": {
                      "description": "The fax number of the contact",
                      "type": "string"
                    },
                    "href": {
                      "description": "Hyperlink reference",
                      "type": "string",
                      "format": "uri"
                    },
                    "id": {
                      "description": "unique identifier",
                      "type": "string"
                    },
                    "phoneNumber": {
                      "description": "The primary phone number of the contact",
                      "type": "string"
                    },
                    "place": {
                      "description": "Place reference. Place defines the places where the products are sold or delivered.",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "@baseType": {
                          "description": "When sub-classing, this defines the super-class",
                          "type": "string"
                        },
                        "@schemaLocation": {
                          "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                          "type": "string",
                          "format": "uri"
                        },
                        "@type": {
                          "description": "When sub-classing, this defines the sub-class Extensible name",
                          "type": "string"
                        },
                        "characteristic": {
                          "type": "array",
                          "items": {
                            "description": "Describes a given characteristic of an object or entity through a name/value pair.",
                            "type": "object",
                            "additionalProperties": false,
                            "required": [
                              "name"
                            ],
                            "properties": {
                              "@baseType": {
                                "description": "When sub-classing, this defines the super-class",
                                "type": "string"
                              },
                              "@schemaLocation": {
                                "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                "type": "string",
                                "format": "uri"
                              },
                              "@type": {
                                "description": "When sub-classing, this defines the sub-class Extensible name",
                                "type": "string"
                              },
                              "characteristicRelationship": {
                                "type": "array",
                                "items": {
                                  "description": "Another Characteristic that is related to the current Characteristic;",
                                  "type": "object",
                                  "additionalProperties": false,
                                  "properties": {
                                    "@baseType": {
                                      "description": "When sub-classing, this defines the super-class",
                                      "type": "string"
                                    },
                                    "@schemaLocation": {
                                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                                      "type": "string",
                                      "format": "uri"
                                    },
                                    "@type": {
                                      "description": "When sub-classing, this defines the sub-class Extensible name",
                                      "type": "string"
                                    },
                                    "href": {
                                      "description": "Hyperlink reference",
                                      "type": "string",
                                      "format": "uri"
                                    },
                                    "id": {
                                      "description": "Unique identifier of the characteristic",
                                      "type": "string"
                                    },
                                    "relationshipType": {
                                      "description": "The type of relationship",
                                      "type": "string"
                                    }
                                  }
                                }
                              },
                              "id": {
                                "description": "Unique identifier of the characteristic",
                                "type": "string"
                              },
                              "metadata": {
                                "description": "Metadata of the characteristic\n",
                                "type": "array",
                                "items": {
                                  "description": "Metadata\n",
                                  "type": "object",
                                  "additionalProperties": false,
                                  "properties": {
                                    "metadataType": {
                                      "description": "Type of the metadata\n",
                                      "type": "string"
                                    },
                                    "name": {
                                      "description": "Name of the metadata\n",
                                      "type": "string"
                                    },
                                    "value": {
                                      "description": "Value of the metadata\n",
                                      "type": "string"
                                    }
                                  }
                                }
                              },
                              "name": {
                                "description": "Name of the characteristic",
                                "type": "string"
                              },
                              "value": {
                                "description": "The value of the characteristic",
                                "type": "string"
                              },
                              "valueMetadata": {
                                "description": "Metadata of the characteristic value\n",
                                "type": "array",
                                "items": {
                                  "description": "Catalog and operational metadata\n",
                                  "type": "object",
                                  "additionalProperties": false,
                                  "properties": {
                                    "metadataType": {
                                      "description": "Type of the metadata\n",
                                      "type": "string"
                                    },
                                    "name": {
                                      "description": "Name of the metadata\n",
                                      "type": "string"
                                    },
                                    "sourceValue": {
                                      "description": "Value of the metadata source\n",
                                      "type": "string"
                                    },
                                    "value": {
                                      "description": "Value of the metadata\n",
                                      "type": "string"
                                    }
                                  }
                                }
                              },
                              "valueType": {
                                "description": "Data type of the value of the characteristic",
                                "type": "string"
                              }
                            }
                          }
                        },
                        "href": {
                          "description": "Unique reference of the place",
                          "type": "string",
                          "format": "uri"
                        },
                        "id": {
                          "description": "Unique identifier of the place",
                          "type": "string"
                        },
                        "name": {
                          "description": "A user-friendly name for the place, such as [Paris Store], [London Store], [Main Home]",
                          "type": "string"
                        },
                        "role": {
                          "type": "string"
                        },
                        "validated": {
                          "type": "boolean"
                        }
                      }
                    },
                    "postCode": {
                      "description": "Postcode",
                      "type": "string"
                    },
                    "socialNetworkId": {
                      "description": "Identifier as a member of a social network",
                      "type": "string"
                    },
                    "stateOrProvince": {
                      "description": "State or province",
                      "type": "string"
                    },
                    "street1": {
                      "description": "Describes the street",
                      "type": "string"
                    },
                    "street2": {
                      "description": "Complementary street description",
                      "type": "string"
                    },
                    "verified": {
                      "type": "boolean"
                    }
                  }
                },
                "href": {
                  "description": "Hyperlink reference",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "unique identifier",
                  "type": "string"
                },
                "mediumType": {
                  "description": "Type of the contact medium, such as: email address, telephone number, postal address",
                  "type": "string"
                },
                "preferred": {
                  "description": "If true, indicates that is the preferred contact medium",
                  "type": "boolean"
                },
                "validFor": {
                  "description": "The time period that the contact medium is valid for",
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "endDateTime": {
                      "description": "End of the time period, using IETC-RFC-3339 format",
                      "x-amf-examples": {
                        "default-example_1": "1985-04-12T23:20:50.52Z",
                        "default-example_2": "2018-09-21T09:13:16-07:00"
                      },
                      "type": "string",
                      "format": "date-time"
                    },
                    "startDateTime": {
                      "description": "Start of the time period, using IETC-RFC-3339 format",
                      "x-amf-examples": {
                        "default-example_1": "1985-04-12T23:20:50.52Z",
                        "default-example_2": "2018-09-21T09:13:16-07:00"
                      },
                      "type": "string",
                      "format": "date-time"
                    }
                  }
                }
              }
            }
          },
          "individualIdentification": {
            "type": "array",
            "items": {
              "description": "Represents our registration of information used as proof of identity by an individual (passport, national identity card, drivers license, social security number, birth certificate)",
              "type": "object",
              "additionalProperties": false,
              "required": [
                "identificationId"
              ],
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "attachment": {
                  "description": "An attachment by value or by reference. An attachment complements the description of an element, for example through a document, a video, a picture.",
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "@baseType": {
                      "description": "When sub-classing, this defines the super-class",
                      "type": "string"
                    },
                    "@referredType": {
                      "description": "The actual type of the target instance when needed for disambiguation.",
                      "type": "string"
                    },
                    "@schemaLocation": {
                      "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                      "type": "string",
                      "format": "uri"
                    },
                    "@type": {
                      "description": "When sub-classing, this defines the sub-class Extensible name",
                      "type": "string"
                    },
                    "attachmentType": {
                      "description": "Attachment type such as video, picture",
                      "x-amf-examples": {
                        "default-example_1": "video",
                        "default-example_2": "picture"
                      },
                      "type": "string"
                    },
                    "content": {
                      "description": "The actual contents of the attachment object, if embedded, encoded as base64",
                      "type": "string",
                      "format": "base64"
                    },
                    "description": {
                      "description": "A narrative text describing the content of the attachment",
                      "x-amf-examples": {
                        "default-example_1": "Photograph of the Product",
                        "default-example_2": "Explanation Video"
                      },
                      "type": "string"
                    },
                    "href": {
                      "description": "URL serving as reference for the attachment resource",
                      "x-amf-examples": {
                        "default-example_1": "http://host/Attachment/4aafacbd-11ff-4dc8-b445-305f2215715f"
                      },
                      "type": "string",
                      "format": "uri"
                    },
                    "id": {
                      "description": "Unique-Identifier for this attachment",
                      "x-amf-examples": {
                        "default-example_1": "4aafacbd-11ff-4dc8-b445-305f2215715f",
                        "default-example_2": "2334bc59-726e-4d34-ab96-f50e0561412f"
                      },
                      "type": "string"
                    },
                    "mimeType": {
                      "description": "Attachment mime type such as extension file for video, picture and document",
                      "type": "string"
                    },
                    "name": {
                      "description": "Name of the related entity.",
                      "type": "string"
                    },
                    "size": {
                      "description": "The size of the attachment.",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "amount": {
                          "description": "Numeric value in a given unit",
                          "default": 1,
                          "type": "number",
                          "format": "double"
                        },
                        "units": {
                          "description": "Unit",
                          "type": "string"
                        }
                      }
                    },
                    "url": {
                      "description": "Link to the attachment media/content",
                      "x-amf-examples": {
                        "default-example_1": "http://host/Content/4aafacbd-11ff-4dc8-b445-305f2215715f"
                      },
                      "type": "string",
                      "format": "uri"
                    },
                    "validFor": {
                      "description": "The period of time for which the attachment is valid",
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "endDateTime": {
                          "description": "End of the time period, using IETC-RFC-3339 format",
                          "x-amf-examples": {
                            "default-example_1": "1985-04-12T23:20:50.52Z",
                            "default-example_2": "2018-09-21T09:13:16-07:00"
                          },
                          "type": "string",
                          "format": "date-time"
                        },
                        "startDateTime": {
                          "description": "Start of the time period, using IETC-RFC-3339 format",
                          "x-amf-examples": {
                            "default-example_1": "1985-04-12T23:20:50.52Z",
                            "default-example_2": "2018-09-21T09:13:16-07:00"
                          },
                          "type": "string",
                          "format": "date-time"
                        }
                      }
                    }
                  }
                },
                "expirationDate": {
                  "description": "ATT++::Date at which the identifier will be expired",
                  "type": "string"
                },
                "href": {
                  "description": "Hyperlink reference",
                  "type": "string",
                  "format": "uri"
                },
                "id": {
                  "description": "unique identifier",
                  "type": "string"
                },
                "identificationId": {
                  "description": "Identifier",
                  "type": "string"
                },
                "identificationType": {
                  "description": "Identification type (passport, national identity card, drivers license, social security number, birth certificate)",
                  "type": "string"
                },
                "issuingAuthority": {
                  "description": "Authority which has issued the identifier, such as: social security, town hall",
                  "type": "string"
                },
                "issuingDate": {
                  "description": "Date at which the identifier was issued",
                  "type": "string",
                  "format": "date-time"
                },
                "validFor": {
                  "description": "A period of time, either as a deadline (endDateTime only) a startDateTime only, or both",
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "endDateTime": {
                      "description": "End of the time period, using IETC-RFC-3339 format",
                      "x-amf-examples": {
                        "default-example_1": "1985-04-12T23:20:50.52Z",
                        "default-example_2": "2018-09-21T09:13:16-07:00"
                      },
                      "type": "string",
                      "format": "date-time"
                    },
                    "startDateTime": {
                      "description": "Start of the time period, using IETC-RFC-3339 format",
                      "x-amf-examples": {
                        "default-example_1": "1985-04-12T23:20:50.52Z",
                        "default-example_2": "2018-09-21T09:13:16-07:00"
                      },
                      "type": "string",
                      "format": "date-time"
                    }
                  }
                }
              }
            }
          },
          "partyCharacteristic": {
            "type": "array",
            "items": {
              "description": "Describes a given characteristic of an object or entity through a name/value pair.",
              "type": "object",
              "additionalProperties": false,
              "required": [
                "name"
              ],
              "properties": {
                "@baseType": {
                  "description": "When sub-classing, this defines the super-class",
                  "type": "string"
                },
                "@schemaLocation": {
                  "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                  "type": "string",
                  "format": "uri"
                },
                "@type": {
                  "description": "When sub-classing, this defines the sub-class Extensible name",
                  "type": "string"
                },
                "characteristicRelationship": {
                  "type": "array",
                  "items": {
                    "description": "Another Characteristic that is related to the current Characteristic;",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "@baseType": {
                        "description": "When sub-classing, this defines the super-class",
                        "type": "string"
                      },
                      "@schemaLocation": {
                        "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                        "type": "string",
                        "format": "uri"
                      },
                      "@type": {
                        "description": "When sub-classing, this defines the sub-class Extensible name",
                        "type": "string"
                      },
                      "href": {
                        "description": "Hyperlink reference",
                        "type": "string",
                        "format": "uri"
                      },
                      "id": {
                        "description": "Unique identifier of the characteristic",
                        "type": "string"
                      },
                      "relationshipType": {
                        "description": "The type of relationship",
                        "type": "string"
                      }
                    }
                  }
                },
                "id": {
                  "description": "Unique identifier of the characteristic",
                  "type": "string"
                },
                "metadata": {
                  "description": "Metadata of the characteristic\n",
                  "type": "array",
                  "items": {
                    "description": "Metadata\n",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "metadataType": {
                        "description": "Type of the metadata\n",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the metadata\n",
                        "type": "string"
                      },
                      "value": {
                        "description": "Value of the metadata\n",
                        "type": "string"
                      }
                    }
                  }
                },
                "name": {
                  "description": "Name of the characteristic",
                  "type": "string"
                },
                "value": {
                  "description": "The value of the characteristic",
                  "type": "string"
                },
                "valueMetadata": {
                  "description": "Metadata of the characteristic value\n",
                  "type": "array",
                  "items": {
                    "description": "Catalog and operational metadata\n",
                    "type": "object",
                    "additionalProperties": false,
                    "properties": {
                      "metadataType": {
                        "description": "Type of the metadata\n",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the metadata\n",
                        "type": "string"
                      },
                      "sourceValue": {
                        "description": "Value of the metadata source\n",
                        "type": "string"
                      },
                      "value": {
                        "description": "Value of the metadata\n",
                        "type": "string"
                      }
                    }
                  }
                },
                "valueType": {
                  "description": "Data type of the value of the characteristic",
                  "type": "string"
                }
              }
            }
          },
          "givenName": {
            "type": "string"
          },
          "familyName": {
            "type": "string"
          }
        }
      },
      "Note": {
        "required": [
          "text"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Identifier of the note within its containing entity (may or may not be globally unique, depending on provider implementation)"
          },
          "author": {
            "type": "string",
            "description": "Author of the note"
          },
          "date": {
            "type": "string",
            "description": "Date of the note",
            "format": "date-time"
          },
          "text": {
            "type": "string",
            "description": "Text of the note"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "Extra information about a given entity"
      },
      "OrderItemActionType": {
        "type": "string",
        "description": "action to be performed on the product",
        "enum": [
          "Metadata Change",
          "activate",
          "add",
          "add;port in",
          "add;swap",
          "agreement change",
          "amend",
          "backdated next item",
          "backdated previous item",
          "bundle",
          "bundle;relation change",
          "bundle;relation change;suspend",
          "bundle;unbundle",
          "bundle;unbundle;relation change",
          "cancel",
          "change",
          "change billing account",
          "change billing account;change",
          "change hierarchy",
          "change own",
          "change ownership from",
          "change ownership to",
          "change ownership to;bundle;relation change",
          "change ownership to;change",
          "change ownership to;change billing account",
          "change ownership to;change billing account;change related party",
          "change ownership to;change related party",
          "change ownership to;change;change billing account",
          "change ownership to;relation change",
          "change ownership to;relation change;replace offer from",
          "change ownership to;replace offer from",
          "change ownership to;terminate",
          "change ownership to;unbundle;relation change",
          "change place",
          "change related party",
          "change resource",
          "change resource;change",
          "change term",
          "change term;change",
          "change;agreement change",
          "change;bundle",
          "change;bundle;unbundle;relation change",
          "change;change resource",
          "change;related change",
          "change;relation change",
          "change;suspend",
          "child change",
          "child change;suspend",
          "child change;terminate",
          "contract change",
          "contract change;Metadata Change",
          "contract change;change",
          "contract change;change place",
          "contract change;change related party",
          "contract change;change term",
          "contract change;price change",
          "contract change;price change;terminate",
          "contract change;promotion change",
          "contract change;relation change",
          "contract change;terminate",
          "delete",
          "modify",
          "move from",
          "move from;terminate",
          "move to",
          "noChange",
          "port in",
          "port out",
          "port out;terminate",
          "preActivate",
          "price change",
          "promotion change",
          "promotion change;child change",
          "promotion change;child change;suspend",
          "promotion change;child change;terminate",
          "promotion change;terminate",
          "promotion change;unbundle;relation change",
          "reestablish",
          "reestablish;change",
          "reestablish;change place",
          "register",
          "related change",
          "related change;relation change",
          "relation change",
          "relation change;change",
          "relation change;price change",
          "remove",
          "replace",
          "replace offer from",
          "replace offer from;agreement change",
          "replace offer from;child change",
          "replace offer from;contract change",
          "replace offer from;reestablish",
          "replace offer keep from",
          "replace offer to",
          "replace offer to;agreement change",
          "replace offer to;change",
          "replace offer to;change billing account",
          "replace offer to;change related party",
          "replace offer to;change related party;change",
          "replace offer to;change term",
          "replace offer to;contract change",
          "replace offer to;contract change;change term",
          "replace offer to;contract change;price change",
          "replace offer to;contract change;relation change",
          "replace offer to;relation change",
          "resume",
          "resume from cancel",
          "resume;change",
          "resume;change billing account",
          "root virtual move",
          "suspend",
          "suspend-obsolete",
          "suspend;change",
          "suspend;change;change resource",
          "suspend;child change",
          "suspend;related change",
          "suspend;relation change",
          "suspend;unbundle;relation change",
          "swap",
          "swap;add",
          "terminate",
          "terminate;agreement change",
          "terminate;change",
          "terminate;change related party",
          "unbundle",
          "unbundle;bundle;relation change",
          "unbundle;relation change",
          "unbundle;relation change;suspend",
          "unify"
        ]
      },
      "OrderItemRelationship": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "relationshipType": {
            "type": "string",
            "description": "The type of order item relationship"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        }
      },
      "OrderPrice": {
        "type": "object",
        "properties": {
          "description": {
            "type": "string",
            "description": "A narrative that explains in detail the semantics of this order item price."
          },
          "name": {
            "type": "string",
            "description": "A short descriptive name such as \"Subscription price\"."
          },
          "priceType": {
            "type": "string",
            "description": "A category that describes the price, such as recurring, discount, allowance, penalty, and so forth"
          },
          "recurringChargePeriod": {
            "type": "string",
            "description": "Could be month, week..."
          },
          "unitOfMeasure": {
            "type": "string",
            "description": "Could be minutes, GB..."
          },
          "billingAccount": {
            "$ref": "#/components/schemas/BillingAccountRef"
          },
          "price": {
            "$ref": "#/components/schemas/Price"
          },
          "priceAlteration": {
            "type": "array",
            "description": "a strucuture used to describe a price alteration",
            "items": {
              "$ref": "#/components/schemas/PriceAlteration"
            }
          },
          "productOfferingPrice": {
            "$ref": "#/components/schemas/ProductOfferingPriceRef"
          },
          "recurringChargePeriodLength": {
            "type": "integer",
            "description": "TMF++::The period length of the recurring charge\n"
          },
          "finalPrice": {
            "$ref": "#/components/schemas/Price"
          },
          "standalonePrice": {
            "$ref": "#/components/schemas/Price"
          },
          "immediatePayOption": {
            "$ref": "#/components/schemas/ImmediatePayOption"
          },
          "installmentOption": {
            "$ref": "#/components/schemas/InstallmentOption"
          },
          "orderPriceRelationship": {
            "$ref": "#/components/schemas/OrderPriceRelationship"
          },
          "taxIncluded": {
            "type": "string",
            "description": "TMF++::Indicates whether the price is defined in CatalogONE as including tax or excluding tax. Valid values are Excluded and Included.\n"
          },
          "priceOverrideOption": {
            "$ref": "#/components/schemas/PriceOverrideOption"
          },
          "role": {
            "type": "string",
            "description": "TMF++::The role of the price, for example, price, bundle price alteration, and so on\n"
          },
          "payment": {
            "type": "array",
            "description": "TMF++::Payment performed for a specific order price\n",
            "items": {
              "$ref": "#/components/schemas/PaymentRef"
            }
          },
          "prorationFactor": {
            "type": "number",
            "description": "TMF++::Proration factor used to prorate this amount\n",
            "format": "double"
          },
          "periodCoverage": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "relatedAppliedBillingRate": {
            "$ref": "#/components/schemas/RelatedAppliedBillingRateRef"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "An amount, usually of money, that represents the actual price paid by the Customer for this item or this order"
      },
      "ImmediatePayOption": {
        "type": "object",
        "properties": {
          "payOption": {
            "type": "string",
            "description": "The immediate pay option:\n<ul>\n<li> *MUST* - The price must be paid immediately\n<li> *MAY* - The price might be paid immediately\n</ul>\n"
          },
          "payAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "minPayAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "payImmediately": {
            "type": "boolean",
            "description": "Indicates whether the prcie included in the immediate payment.\nIf the pay option is set to MUST, this indication is set to true.\nIf the pay option is set to MAY, this indication is set to either true or false based on a customer decission.\n"
          }
        },
        "description": "TMF++::The payment options for the product offering price payment. The payment options can indicate whether the price must or might be paid immediatelly.\nIn addition, the payment options include an indication whether the price should be included in the immediate payment or not.\nIf the payment option is set to must, this indication is set to true. Otherwise, if the payment option is set to might, the indication is set to either\ntrue or false based on a customer decission.\n"
      },
      "RelatedAppliedBillingRateRef": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the applied billing rate\n"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Hypertext reference to the applied billing rate\n"
          },
          "@referredType": {
            "type": "string",
            "description": "Type of the applied billing rate, for example, *AppliedCustomerBillingOneTimeCharge* or *AppliedCustomerBillingRecurringCharge*    \n"
          }
        },
        "description": "TMF++::Relation to another applied billing rate\n"
      },
      "PaymentAmount": {
        "type": "object",
        "properties": {
          "amount": {
            "$ref": "#/components/schemas/Money"
          },
          "percentage": {
            "type": "number",
            "description": "Represents the percentage that the amount represents out of the price\n",
            "format": "float"
          },
          "taxIncludedAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "dutyFreeAmount": {
            "$ref": "#/components/schemas/Money"
          }
        },
        "description": "TMF++::Represents a payment amount\n"
      },
      "OrderPriceRelationship": {
        "required": [
          "id",
          "type"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the related *OrderPrice* entity\n"
          },
          "type": {
            "type": "string",
            "description": "Type of the relationship\n"
          }
        },
        "description": "TMF++::Relationship between the *OrderPrice* entities\n"
      },
      "PriceOverrideOption": {
        "type": "object",
        "properties": {
          "overrideType": {
            "type": "string",
            "description": "Indicates which override option the CSR can apply. Valid Values &#58; waive, absolute, increase, decrease\n"
          },
          "overrideValue": {
            "$ref": "#/components/schemas/PaymentAmount"
          },
          "validFor": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "relatedParty": {
            "$ref": "#/components/schemas/RelatedParty"
          },
          "reason": {
            "$ref": "#/components/schemas/ModifyReason"
          }
        },
        "description": "TMF++::The waive and override data of a price\n"
      },
      "InstallmentOption": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "The identifier of the installment option\n"
          },
          "name": {
            "description": "Name of the related entity.",
            "type": "string"
          },
          "@type": {
            "description": "When sub-classing, this defines the sub-class Extensible name",
            "type": "string"
          },
          "installmentOption": {
            "type": "string",
            "description": "Indicates if installment options are optional / mandatory for the price\n",
            "readOnly": true
          },
          "numberOfInstallments": {
            "type": "integer",
            "description": "The number of installments\n"
          },
          "downPayment": {
            "$ref": "#/components/schemas/PaymentAmount"
          }
        },
        "description": "TMF++::Represents an installment option for an  price\n"
      },
      "OrderTerm": {
        "type": "object",
        "properties": {
          "description": {
            "type": "string",
            "description": "Description of the productOrderTerm"
          },
          "name": {
            "type": "string",
            "description": "Name of the productOrderTerm"
          },
          "duration": {
            "$ref": "#/components/schemas/Quantity"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "Description of a productTerm linked to this orderItem. This represent a commitment with a duration"
      },
      "PaymentRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "A name for the payment"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          },
          "characteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Characteristic"
            }
          }
        },
        "description": "If an immediate payment has been done at the product order submission, the payment information are captured and stored (as a reference) in the order."
      },
      "PlaceRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          },
          "validated": {
            "type": "boolean",
            "description": "ATT++::Address validation completed or not completed"
          }
        },
        "description": "Place reference. PlaceRef defines the placeRefs where the products are sold or delivered."
      },
      "Price": {
        "type": "object",
        "properties": {
          "percentage": {
            "type": "number",
            "description": "Percentage to apply for ProdOfferPriceAlteration",
            "format": "float"
          },
          "taxRate": {
            "type": "number",
            "description": "Tax rate",
            "format": "float"
          },
          "dutyFreeAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "taxIncludedAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "marketingAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "taxAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "priceReduction": {
            "$ref": "#/components/schemas/Money"
          },
          "priceOverride": {
            "$ref": "#/components/schemas/Money"
          },
          "priceRecordId": {
            "type": "string",
            "description": "The unique identifier of the price in the pricing domain.\n"
          },
          "chargeType": {
            "type": "string",
            "description": "The charge type that the price represents. The supported values are&#58;<ul><li>debit<li>credit</ul>\n"
          },
          "impactingPriceParameter": {
            "type": "array",
            "description": "The parameters that impact the price\n",
            "items": {
              "$ref": "#/components/schemas/PriceParam"
            }
          },
          "appliedTax": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AppliedTax"
            }
          },
          "rateValidity": {
            "$ref": "#/components/schemas/TimePeriod"
          }
        },
        "description": "Provides all amounts (tax included, duty free, tax rate), used currency and percentage to apply for Price Alteration."
      },
      "PriceParam": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "The type of the parameter\n"
          },
          "name": {
            "type": "string",
            "description": "The name of the parameter\n"
          },
          "value": {
            "type": "string",
            "description": "The value of the parameter\n"
          }
        },
        "description": "TMF++::The parameters that may impact/impact the price\n"
      },
      "AppliedTax": {
        "required": [
          "taxAmount",
          "taxDefinition",
          "taxableAmount"
        ],
        "type": "object",
        "properties": {
          "taxDefinition": {
            "$ref": "#/components/schemas/TaxDefinition"
          },
          "taxAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "taxableAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "exemptAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "periodCoverage": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "characteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Characteristic"
            }
          },
          "extensions": {
            "type": "object",
            "items": {
              "$ref": "#/components/schemas/TaxExtensions"
            }
          }
        },
        "description": "TMF++::Calculated tax response"
      },
      "TaxExtensions": {
        "type": "object",
        "properties": {
          "Tax": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Tax"
            }
          }
        }
      },
      "Tax": {
        "type": "object",
        "properties": {
          "key": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        }
      },
      "TaxDefinition": {
        "required": [
          "exemptionType",
          "isExemption",
          "taxJurisdiction",
          "taxRate",
          "taxType",
          "vaidFor"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "The display name of tax type"
          },
          "taxRate": {
            "type": "number",
            "description": "Rate of tax",
            "format": "float"
          },
          "taxType": {
            "type": "string",
            "description": "VAT/GST etc"
          },
          "category": {
            "type": "string",
            "description": "Luxury/Standard etc"
          },
          "isExemption": {
            "type": "boolean",
            "description": "Where the tax definition has exemption defined on it"
          },
          "exemptionType": {
            "type": "string",
            "description": "Exemption type. Valid Values - Customer, Service, Jurisdiction, None."
          },
          "vaidFor": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "taxJurisdiction": {
            "$ref": "#/components/schemas/TaxJurisdiction"
          }
        },
        "description": "TMF++::Tax definition"
      },
      "TaxJurisdiction": {
        "required": [
          "level",
          "name"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "level": {
            "type": "string"
          },
          "id": {
            "type": "string"
          }
        },
        "description": "TMF++::Tax Juristiction"
      },
      "PriceAlteration": {
        "required": [
          "price",
          "priceType"
        ],
        "type": "object",
        "properties": {
          "applicationDuration": {
            "type": "integer",
            "description": "Duration during which the alteration applies on the order item price (for instance 2 months free of charge for the recurring charge)"
          },
          "description": {
            "type": "string",
            "description": "A narrative that explains in detail the semantics of this order item price alteration"
          },
          "name": {
            "type": "string",
            "description": "Name of the order item price alteration"
          },
          "priceType": {
            "type": "string",
            "description": "A category that describes the price such as recurring, one time and usage."
          },
          "priority": {
            "type": "integer",
            "description": "Priority level for applying this alteration among all the defined alterations on the order item price"
          },
          "recurringChargePeriod": {
            "type": "string",
            "description": "Could be month, week..."
          },
          "unitOfMeasure": {
            "type": "string",
            "description": "Could be minutes, GB..."
          },
          "price": {
            "$ref": "#/components/schemas/Price"
          },
          "productOfferingPrice": {
            "$ref": "#/components/schemas/ProductOfferingPriceRef"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "recurringChargePeriodLength": {
            "type": "integer",
            "description": "TMF++::The period length of the recurring charge\n"
          },
          "alterationType": {
            "type": "string",
            "description": "TMF++::Type of the alteration\n"
          },
          "promotionActionId": {
            "type": "string",
            "description": "TMF++::Unique identifier of the promotion action triggering this price alteration\n"
          },
          "immediatePromotionId": {
            "type": "string",
            "description": "TMF++::Unique identifier of the promotion instance\n"
          },
          "alterationProductOfferingPriceId": {
            "type": "string",
            "description": "TMF++::Unique identifier of the product offering price on behalf of which the price alteration was given\n"
          },
          "alterationBundleProductOfferingId": {
            "type": "string",
            "description": "TMF++::Unique identifier of the bundle product offering on behalf of which the price alteration was given\n"
          },
          "alterationApplyOrder": {
            "type": "integer",
            "description": "TMF++::Order of the alteration price appliance\n"
          },
          "chargeType": {
            "type": "string",
            "description": "TMF++::Charge type represented by the price alteration. The supported values are&#58;<ul><li>debit<li>discount<li>credit</ul> \n"
          },
          "prorationFactor": {
            "type": "number",
            "description": "TMF++::Proration factor used to prorate this amount\n",
            "format": "double"
          },
          "periodCoverage": {
            "$ref": "#/components/schemas/TimePeriod"
          }
        },
        "description": "Is an amount, usually of money, that modifies the price charged for an order item."
      },
      "ProductOfferingPriceRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "priceType": {
            "type": "string",
            "description": "Price offered based on the type"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "ProductPriceOffering reference. An amount, usually of money, that is asked for or allowed when a ProductOffering is bought, rented, or leased"
      },
      "ProductOfferingQualificationItemRef": {
        "required": [
          "id",
          "productOfferingQualificationId"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Id of an item of a product offering qualification"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "productOfferingQualificationHref": {
            "type": "string",
            "description": "Reference of the related entity."
          },
          "productOfferingQualificationId": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "productOfferingQualificationName": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "It's a productOfferingQualification item that has been executed previously."
      },
      "ProductOfferingQualificationRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "It's a productOfferingQualification that has been executed previously"
      },
      "ProductOfferingRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "productOfferingType": {
            "type": "string",
            "description": "TMF++::Type of the product offering\n"
          },
          "productOfferingTypeGroup": {
            "type": "string",
            "description": "TMF++::Type of the product offering type group\n"
          },
          "productOfferingGroup": {
            "type": "string",
            "description": "TMF++::Type of the product offering group\n"
          },
          "primary": {
            "type": "boolean",
            "description": "TMF++::Indicates whether the product offering has a business significance for the customer&#58;\n- It is reflected as a product for the customer and it is actionable - the customer can perform ordering actions on it\n- An action performed on a primary offer can impact the actions available for its bundled or dependent offers (for example, when ownership of a primary offer is changed some internal offers cannot be added or removed)\n"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "ProductOffering reference. A product offering represents entities that are orderable from the provider of the catalog, this resource includes pricing information."
      },
      "ProductOrder": {
        "type": "object",
        "description": "A Product Order is a type of order which  can  be used to place an order between a customer and a service provider or between a service provider and a partner and vice versa,",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID created on repository side (OM system)"
          },
          "version": {
            "type": "integer",
            "description": "Version number for the Shopping Cart"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Hyperlink to access the order"
          },
          "coupon": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ImmediatePromotion"
            }
          },
          "cancellationDate": {
            "type": "string",
            "description": "Date when the order is cancelled. This is used when order is cancelled. ",
            "format": "date-time"
          },
          "cancellationReason": {
            "type": "string",
            "description": "Reason why the order is cancelled. This is used when order is cancelled. "
          },
          "category": {
            "type": "string",
            "description": "Used to categorize the order from a business perspective that can be useful for the OM system (e.g. \"enterprise\", \"residential\", ...)"
          },
          "completionDate": {
            "type": "string",
            "description": "Date when the order was completed",
            "format": "date-time"
          },
          "description": {
            "type": "string",
            "description": "Description of the product order"
          },
          "expectedCompletionDate": {
            "type": "string",
            "description": "Expected delivery date amended by the provider",
            "format": "date-time"
          },
          "externalId": {
            "type": "string",
            "description": "ID given by the consumer and only understandable by him (to facilitate his searches afterwards)"
          },
          "notificationContact": {
            "type": "string",
            "description": "Contact attached to the order to send back information regarding this order"
          },
          "orderDate": {
            "type": "string",
            "description": "Date when the order was created",
            "format": "date-time"
          },
          "lastUpdate": {
            "type": "string",
            "description": "TMF++::Date on which the product order was created\n",
            "format": "date-time",
            "readOnly": true
          },
          "orderPriceDate": {
            "type": "string",
            "description": "TMF++::Date on which the product order price was calculated\n",
            "format": "date-time",
            "readOnly": true
          },
          "priority": {
            "type": "string",
            "description": "A way that can be used by consumers to prioritize orders in OM system (from 0 to 4 : 0 is the highest priority, and 4 the lowest)"
          },
          "requestedCompletionDate": {
            "type": "string",
            "description": "Requested delivery date from the requestor perspective",
            "format": "date-time"
          },
          "requestedStartDate": {
            "type": "string",
            "description": "Order fulfillment start date wished by the requestor. This is used when, for any reason, requestor cannot allow seller to begin to operationally begin the fulfillment before a date. ",
            "format": "date-time"
          },
          "orderExtensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          },
          "productConfiguration": {
            "$ref": "#/components/schemas/ProductConfiguration"
          },
          "agreement": {
            "type": "array",
            "description": "A reference to an agreement defined in the context of the product order",
            "items": {
              "$ref": "#/components/schemas/AgreementRef"
            }
          },
          "billingAccount": {
            "$ref": "#/components/schemas/BillingAccountRef"
          },
          "channel": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedChannel"
            }
          },
          "note": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Note"
            }
          },
          "orderTotalPrice": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderPrice"
            }
          },
          "payment": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PaymentProductOrder"
            }
          },
          "productOfferingQualification": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOfferingQualificationRef"
            }
          },
          "productOrderItem": {
            "minItems": 1,
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOrderItem"
            }
          },
          "quote": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/QuoteRef"
            }
          },
          "relatedParty": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedParty"
            }
          },
          "state": {
            "$ref": "#/components/schemas/ProductOrderStateType"
          },
          "subState": {
            "type": "string",
            "description": "Substatus value"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "immediatePromotion": {
            "type": "array",
            "readOnly": true,
            "items": {
              "$ref": "#/components/schemas/ImmediatePromotion"
            }
          },
          "validation": {
            "$ref": "#/components/schemas/Validation"
          }
        },
        "required": [
          "productOrderItem"
        ],
        "x-examples": {}
      },
      "ProductOrder_Create": {
        "required": [
          "productOrderItem"
        ],
        "type": "object",
        "properties": {
          "cancellationDate": {
            "type": "string",
            "description": "Date when the order is cancelled. This is used when order is cancelled. ",
            "format": "date-time"
          },
          "cancellationReason": {
            "type": "string",
            "description": "Reason why the order is cancelled. This is used when order is cancelled. "
          },
          "category": {
            "type": "string",
            "description": "Used to categorize the order from a business perspective that can be useful for the OM system (e.g. \"enterprise\", \"residential\", ...)"
          },
          "description": {
            "type": "string",
            "description": "Description of the product order"
          },
          "externalId": {
            "type": "string",
            "description": "ID given by the consumer and only understandable by him (to facilitate his searches afterwards)"
          },
          "notificationContact": {
            "type": "string",
            "description": "Contact attached to the order to send back information regarding this order"
          },
          "priority": {
            "type": "string",
            "description": "A way that can be used by consumers to prioritize orders in OM system (from 0 to 4 : 0 is the highest priority, and 4 the lowest)"
          },
          "requestedCompletionDate": {
            "type": "string",
            "description": "Requested delivery date from the requestor perspective",
            "format": "date-time"
          },
          "requestedStartDate": {
            "type": "string",
            "description": "Order fulfillment start date wished by the requestor. This is used when, for any reason, requestor cannot allow seller to begin to operationally begin the fulfillment before a date. ",
            "format": "date-time"
          },
          "agreement": {
            "type": "array",
            "description": "A reference to an agreement defined in the context of the product order",
            "items": {
              "$ref": "#/components/schemas/AgreementRef"
            }
          },
          "billingAccount": {
            "$ref": "#/components/schemas/BillingAccountRef"
          },
          "channel": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedChannel"
            }
          },
          "note": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Note"
            }
          },
          "orderTotalPrice": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderPrice"
            }
          },
          "payment": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PaymentRef"
            }
          },
          "productOfferingQualification": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOfferingQualificationRef"
            }
          },
          "productOrderItem": {
            "minItems": 1,
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOrderItem"
            }
          },
          "quote": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/QuoteRef"
            }
          },
          "relatedParty": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedParty"
            }
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "A Product Order is a type of order which  can  be used to place an order between a customer and a service provider or between a service provider and a partner and vice versa,\nSkipped properties: id,href,completionDate,orderDate,state,expectedCompletionDate,productOrderItem.state"
      },
      "ProductOrder_Update": {
        "required": [
          "productOrderItem"
        ],
        "type": "object",
        "properties": {
          "cancellationDate": {
            "type": "string",
            "description": "Date when the order is cancelled. This is used when order is cancelled. ",
            "format": "date-time"
          },
          "cancellationReason": {
            "type": "string",
            "description": "Reason why the order is cancelled. This is used when order is cancelled. "
          },
          "category": {
            "type": "string",
            "description": "Used to categorize the order from a business perspective that can be useful for the OM system (e.g. \"enterprise\", \"residential\", ...)"
          },
          "completionDate": {
            "type": "string",
            "description": "Date when the order was completed",
            "format": "date-time"
          },
          "description": {
            "type": "string",
            "description": "Description of the product order"
          },
          "expectedCompletionDate": {
            "type": "string",
            "description": "Expected delivery date amended by the provider",
            "format": "date-time"
          },
          "externalId": {
            "type": "string",
            "description": "ID given by the consumer and only understandable by him (to facilitate his searches afterwards)"
          },
          "notificationContact": {
            "type": "string",
            "description": "Contact attached to the order to send back information regarding this order"
          },
          "priority": {
            "type": "string",
            "description": "A way that can be used by consumers to prioritize orders in OM system (from 0 to 4 : 0 is the highest priority, and 4 the lowest)"
          },
          "requestedCompletionDate": {
            "type": "string",
            "description": "Requested delivery date from the requestor perspective",
            "format": "date-time"
          },
          "requestedStartDate": {
            "type": "string",
            "description": "Order fulfillment start date wished by the requestor. This is used when, for any reason, requestor cannot allow seller to begin to operationally begin the fulfillment before a date. ",
            "format": "date-time"
          },
          "agreement": {
            "type": "array",
            "description": "A reference to an agreement defined in the context of the product order",
            "items": {
              "$ref": "#/components/schemas/AgreementRef"
            }
          },
          "billingAccount": {
            "$ref": "#/components/schemas/BillingAccountRef"
          },
          "channel": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedChannel"
            }
          },
          "note": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Note"
            }
          },
          "orderTotalPrice": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderPrice"
            }
          },
          "payment": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PaymentRef"
            }
          },
          "productOfferingQualification": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOfferingQualificationRef"
            }
          },
          "productOrderItem": {
            "minItems": 1,
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOrderItem"
            }
          },
          "quote": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/QuoteRef"
            }
          },
          "relatedParty": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedParty"
            }
          },
          "state": {
            "$ref": "#/components/schemas/ProductOrderStateType"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "A Product Order is a type of order which  can  be used to place an order between a customer and a service provider or between a service provider and a partner and vice versa,\nSkipped properties: id,href,orderDate"
      },
      "ProductOrderItem": {
        "required": [
          "action",
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Identifier of the line item (generally it is a sequence number 01, 02, 03, ...)"
          },
          "quantity": {
            "type": "integer",
            "description": "Quantity ordered"
          },
          "action": {
            "$ref": "#/components/schemas/OrderItemActionType"
          },
          "appointment": {
            "$ref": "#/components/schemas/AppointmentRef"
          },
          "billingAccount": {
            "$ref": "#/components/schemas/BillingAccountRef"
          },
          "agreement": {
            "type": "array",
            "description": "A reference to an agreement defined in the context of the product order",
            "items": {
              "$ref": "#/components/schemas/AgreementRef"
            }
          },
          "itemPrice": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderPrice"
            }
          },
          "itemTerm": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderTerm"
            }
          },
          "itemTotalPrice": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderPrice"
            }
          },
          "payment": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PaymentRef"
            }
          },
          "product": {
            "$ref": "#/components/schemas/ProductRefOrValue"
          },
          "productOffering": {
            "$ref": "#/components/schemas/ProductOfferingRef"
          },
          "productOfferingQualificationItem": {
            "$ref": "#/components/schemas/ProductOfferingQualificationItemRef"
          },
          "productOrderItem": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOrderItem"
            }
          },
          "productOrderItemRelationship": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderItemRelationship"
            }
          },
          "qualification": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductOfferingQualificationRef"
            }
          },
          "quoteItem": {
            "$ref": "#/components/schemas/QuoteItemRef"
          },
          "state": {
            "$ref": "#/components/schemas/ProductOrderItemStateType"
          },
          "subState": {
            "type": "string",
            "description": "Substatus value"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "readOnly": {
            "type": "boolean",
            "description": "TMF++::Indicates whether the order item can be reconfigured\n",
            "readOnly": true
          },
          "completionDate": {
            "type": "string",
            "description": "TMF++::Date on which the order item was completed\n",
            "format": "date-time",
            "readOnly": true
          },
          "requestedStartDate": {
            "type": "string",
            "description": "TMF++::Date on which the order item was requested to be started\n",
            "format": "date-time"
          },
          "requestedCompletionDate": {
            "type": "string",
            "description": "TMF++::Date on which the order item was requested to be completed\n",
            "format": "date-time"
          },
          "expectedCompletionDate": {
            "type": "string",
            "description": "TMF++::Date on which the order item is expected to be completed\n",
            "format": "date-time",
            "readOnly": true
          },
          "retroactiveChangeDate": {
            "type": "string",
            "description": "TMF++::Past date of a retroactive change performed on the order item\n",
            "format": "date-time"
          },
          "creationDate": {
            "type": "string",
            "description": "TMF++::Item creation date \n",
            "format": "date-time"
          },
          "itemPriceDate": {
            "type": "string",
            "description": "TMF++::Date according to which the product order item was quoted\n",
            "format": "date-time"
          },
          "productOfferingGroupOption": {
            "$ref": "#/components/schemas/ProductOfferingGroupOption"
          },
          "modifyReason": {
            "type": "array",
            "description": "TMF++::Modify Reason",
            "items": {
              "$ref": "#/components/schemas/ModifyReason"
            }
          },
          "nextAction": {
            "type": "array",
            "description": "TMF++::Next Action",
            "items": {
              "$ref": "#/components/schemas/NextAction"
            }
          },
          "relatedImmediatePromotion": {
            "type": "array",
            "description": "TMF++::List of immediate promotions related to the order item\n",
            "readOnly": true,
            "items": {
              "$ref": "#/components/schemas/RelatedImmediatePromotion"
            }
          },
          "characteristic": {
            "type": "array",
            "description": "TMF++::Characteristics of the product offering\n",
            "items": {
              "$ref": "#/components/schemas/Characteristic"
            }
          },
          "fulfillmentMethod": {
            "type": "string"
          },
          "extensions": {
            "$ref": "#/components/schemas/ProductOrderItem_Extensions"
          },
          "actionReason": {
            "items": {
              "description": "The action and complementary reason associated with a customer-owned product or a newly provided product offering\n",
              "properties": {
                "action": {
                  "description": "Name of the action performed on the instance of the product offering\n",
                  "type": "string"
                },
                "metadata": {
                  "description": "Metadata of the Modify Reason\n",
                  "items": {
                    "description": "Metadata\n",
                    "properties": {
                      "metadataType": {
                        "description": "Type of the metadata\n",
                        "type": "string"
                      },
                      "name": {
                        "description": "Name of the metadata\n",
                        "type": "string"
                      },
                      "value": {
                        "description": "Value of the metadata\n",
                        "type": "string"
                      }
                    },
                    "type": "object"
                  },
                  "type": "array"
                },
                "reason": {
                  "description": "Name of the modification reason\n",
                  "type": "string"
                },
                "reasonText": {
                  "description": "Text of the modification reason. This property is populated if the type of the modification reason requires an input of a free text\n",
                  "type": "string"
                }
              },
              "required": [
                "reason"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "description": "An identified part of the order. A product order is decomposed into one or more order items."
      },
      "ProductOfferingGroupOption": {
        "type": "object",
        "properties": {
          "groupOptionId": {
            "type": "string",
            "description": "Unique identifier of the product offering group option in the product catalog\n"
          }
        },
        "description": "TMF++::Reference to the product offering group option from the product catalog\n"
      },
      "NextAction": {
        "type": "object",
        "properties": {
          "nextActionType": {
            "type": "string",
            "description": "next action type can be catalog define limit duration product, catalog define limit duration promotion or customer defined temporary action\n"
          },
          "action": {
            "type": "string",
            "description": "Action applied to the order item (for example - add, suspend, resume, terminate, and so on). \n"
          },
          "durationPolicy": {
            "$ref": "#/components/schemas/DurationPolicy"
          },
          "modifyReason": {
            "$ref": "#/components/schemas/ModifyReason"
          },
          "calculateEffectiveDate": {
            "type": "string",
            "description": "the date that will be recalculated by the order handling for the next action\n",
            "format": "date-time"
          }
        },
        "description": "TMF++::Next action in the same order that can be complementary action (for example suspend will have next action resume)\n"
      },
      "RelatedImmediatePromotion": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the immediate promotion\n"
          },
          "itemQualificationType": {
            "type": "string",
            "description": "Type of the qualification result for an item - *trigger* or *benefit*\n"
          },
          "itemStatus": {
            "type": "string",
            "description": "Status of the item in the promotion:\n- *add* - A new item in the product promotion\n- *keep* - An existing item that remains as the result of reevaluation in the product promotion\n- *revoke* - An existing item that is revoked as the result of reevaluation in the product promotion\n"
          }
        },
        "description": "TMF++::Reference to the full immediate promotion\n"
      },
      "ProductOrderItemStateType": {
        "type": "string",
        "description": "Possible values for the state of the product order item",
        "enum": [
          "acknowledged",
          "Amended",
          "pending",
          "held",
          "inProgress",
          "cancelled",
          "Fallout",
          "Partial",
          "PendingAmend",
          "PendingCancel",
          "completed",
          "failed",
          "Draft",
          "Submitted",
          "Cloned"
        ]
      },
      "ProductOrderRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "ProductOrder (ProductOrder) .The product order which the recommendation is related with."
      },
      "ProductOrderStateType": {
        "type": "string",
        "description": "Possible values for the state of the order",
        "enum": [
          "acknowledged",
          "rejected",
          "pending",
          "held",
          "inProgress",
          "cancelled",
          "completed",
          "failed",
          "partial",
          "assessingCancellation",
          "pendingCancellation",
          "Draft",
          "Submitted"
        ]
      },
      "ProductPrice": {
        "required": [
          "price",
          "priceType"
        ],
        "type": "object",
        "properties": {
          "description": {
            "type": "string",
            "description": "A narrative that explains in detail the semantics of this product price."
          },
          "name": {
            "type": "string",
            "description": "A short descriptive name such as \"Subscription price\"."
          },
          "priceType": {
            "type": "string",
            "description": "A category that describes the price, such as recurring, discount, allowance, penalty, and so forth."
          },
          "recurringChargePeriod": {
            "type": "string",
            "description": "Could be month, week..."
          },
          "unitOfMeasure": {
            "type": "string",
            "description": "Could be minutes, GB..."
          },
          "billingAccount": {
            "$ref": "#/components/schemas/BillingAccountRef"
          },
          "price": {
            "$ref": "#/components/schemas/Price"
          },
          "productOfferingPrice": {
            "$ref": "#/components/schemas/ProductOfferingPriceRef"
          },
          "productPriceAlteration": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PriceAlteration"
            }
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "An amount, usually of money, that represents the actual price paid by a Customer for a purchase, a rent or a lease of a Product. The price is valid for a defined period of time."
      },
      "ProductRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        }
      },
      "ProductRefOrValue": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the product"
          },
          "referenceId": {
            "description": "TMF++::Reference ID of the product\n",
            "type": "string"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the product"
          },
          "description": {
            "type": "string",
            "description": "Is the description of the product. It could be copied from the description of the Product Offering."
          },
          "isBundle": {
            "type": "boolean",
            "description": "If true, the product is a ProductBundle which is an instantiation of a BundledProductOffering. If false, the product is a ProductComponent which is an instantiation of a SimpleProductOffering."
          },
          "isCustomerVisible": {
            "type": "boolean",
            "description": "If true, the product is visible by the customer."
          },
          "name": {
            "type": "string",
            "description": "Name of the product. It could be the same as the name of the product offering"
          },
          "orderDate": {
            "type": "string",
            "description": "Is the date when the product was ordered",
            "format": "date-time"
          },
          "productSerialNumber": {
            "type": "string",
            "description": "Is the serial number for the product. This is typically applicable to tangible products e.g. Broadband Router."
          },
          "startDate": {
            "type": "string",
            "description": "Is the date from which the product starts",
            "format": "date-time"
          },
          "terminationDate": {
            "type": "string",
            "description": "Is the date when the product was terminated",
            "format": "date-time"
          },
          "agreement": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AgreementItemRef"
            }
          },
          "billingAccount": {
            "$ref": "#/components/schemas/BillingAccountRef"
          },
          "place": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedPlaceRefOrValue"
            }
          },
          "product": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductRefOrValue"
            }
          },
          "productCharacteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Characteristic"
            }
          },
          "characteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Characteristic"
            }
          },
          "productOffering": {
            "$ref": "#/components/schemas/ProductOfferingRef"
          },
          "productOrderItem": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedProductOrderItem"
            }
          },
          "productPrice": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductPrice"
            }
          },
          "productRelationship": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductRelationship"
            }
          },
          "productSpecification": {
            "$ref": "#/components/schemas/ProductSpecificationRef"
          },
          "productTerm": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductTerm"
            }
          },
          "realizingResource": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ResourceRef"
            }
          },
          "realizingService": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ServiceRef"
            }
          },
          "relatedParty": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedParty"
            }
          },
          "status": {
            "$ref": "#/components/schemas/ProductStatusType"
          },
          "primaryProductId": {
            "type": "string",
            "description": "Unique identifier of the primary product. This property is populated only when the product is a product reference for the *Enable By* relation, and the referenced product is a product in the inventory and is not part of the order. In this case, the property contains the ID of the product ancestor that is marked as primary. This property and *productOrderRef* are mutually exclusive"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "A product to be created defined by value or existing defined by reference. The polymorphic attributes @type, @schemaLocation & @referredType are related to the product entity and not the RelatedProductRefOrValue class itself"
      },
      "ProductRelationship": {
        "required": [
          "relationshipType"
        ],
        "type": "object",
        "properties": {
          "relationshipType": {
            "type": "string",
            "description": "Type of the product relationship, such as [bundled] if the product is a bundle and you want to describe the bundled products inside this bundle; [reliesOn] if the product needs another already owned product to rely on (e.g. an option on an already owned mobile access product) [targets] or [isTargeted] (depending on the way of expressing the link) for any other kind of links that may be useful"
          },
          "relationshipSubtype": {
            "type": "string",
            "description": "Refers to relationship.id"
          },
          "product": {
            "$ref": "#/components/schemas/ProductRefOrValue"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "Linked products to the one instantiate, such as [bundled] if the product is a bundle and you want to describe the bundled products inside this bundle; [reliesOn] if the product needs another already owned product to rely on (e.g. an option on an already owned mobile access product) [targets] or [isTargeted] (depending on the way of expressing the link) for any other kind of links that may be useful"
      },
      "ProductSpecificationRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "version": {
            "type": "string",
            "description": "Version of the product specification"
          },
          "productSpecificationType": {
            "type": "string"
          },
          "productSpecificationTypeId": {
            "type": "string"
          },
          "targetProductSchema": {
            "$ref": "#/components/schemas/TargetProductSchema"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "Product specification reference: A ProductSpecification is a detailed description of a tangible or intangible object made available externally in the form of a ProductOffering to customers or other parties playing a party role."
      },
      "ProductStatusType": {
        "type": "string",
        "description": "Possible values for the status of the product",
        "enum": [
          "created",
          "pendingActive",
          "cancelled",
          "active",
          "pendingTerminate",
          "terminated",
          "suspended",
          "aborted "
        ]
      },
      "ProductTerm": {
        "type": "object",
        "properties": {
          "description": {
            "type": "string",
            "description": "Description of the productTerm"
          },
          "name": {
            "type": "string",
            "description": "Name of the productTerm"
          },
          "duration": {
            "$ref": "#/components/schemas/Quantity"
          },
          "validFor": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          }
        },
        "description": "Description of a productTerm linked to this product. This represent a commitment with a duration"
      },
      "Quantity": {
        "type": "object",
        "properties": {
          "amount": {
            "type": "integer",
            "description": "Numeric value in a given unit",
            "default": 1
          },
          "units": {
            "type": "string",
            "description": "Unit"
          }
        },
        "description": "An amount in a given unit"
      },
      "QuoteItemRef": {
        "required": [
          "id",
          "quoteId"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Id of an item of a quote"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "quoteHref": {
            "type": "string",
            "description": "Reference of the related entity."
          },
          "quoteId": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "quoteName": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "It's a Quote item that has been executed previously."
      },
      "QuoteRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "It's a Quote that has been executed previously"
      },
      "AppointmentInfo": {
        "x-amf-examples": {
          "valid": {
            "installationDayContact": {
              "id": "1cedc118-1205-49ae-9f53-52e4fd757de4",
              "givenName": "dev6",
              "familyName": "Newton",
              "individualIdentification": [
                {
                  "identificationType": "onlineId",
                  "identificationId": "555120289"
                }
              ],
              "contactMedium": [
                {
                  "mediumType": "email",
                  "characteristic": {
                    "contactType": "home",
                    "emailAddress": "qay_slid_aj0929MiFi@att.com"
                  }
                },
                {
                  "mediumType": "telephone",
                  "characteristic": {
                    "contactType": "home",
                    "phoneNumber": "3142127385"
                  }
                }
              ]
            },
            "selected": {
              "id": "wrkordid-2022-09-28-08-10",
              "@type": "realTime"
            }
          }
        },
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "installationDayContact": {
            "$ref": "#/components/schemas/installationDayContact"
          },
          "selected": {
            "description": "Refers an appointment, such as a Customer presentation or internal meeting or site visit",
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "@baseType": {
                "description": "When sub-classing, this defines the super-class",
                "type": "string"
              },
              "@referredType": {
                "description": "The actual type of the target instance when needed for disambiguation",
                "type": "string"
              },
              "@schemaLocation": {
                "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
                "type": "string",
                "format": "uri"
              },
              "@type": {
                "description": "When sub-classing, this defines the sub-class Extensible name",
                "type": "string"
              },
              "description": {
                "description": "An explanatory text regarding the appointment made with a party",
                "type": "string"
              },
              "href": {
                "description": "The reference of the appointment",
                "type": "string",
                "format": "uri"
              },
              "id": {
                "description": "The identifier of the referred appointment",
                "type": "string"
              }
            }
          }
        }
      },
      "RelatedChannel": {
        "required": [
          "name"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the channel."
          },
          "role": {
            "type": "string",
            "description": "Role playing by the channel."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          },
          "extensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          }
        },
        "description": "Related channel to another entity. May be online web, mobile app, social ,etc."
      },
      "AccountSecurity": {
        "type": "object",
        "properties": {
          "passcode": {
            "type": "string",
            "description": "Account 4-digit passcode"
          },
          "securityQuestion": {
            "type": "string",
            "description": "Security question."
          },
          "securityAnswer": {
            "type": "string",
            "description": "Answer to a security question"
          }
        }
      },
      "RelatedParty": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "role": {
            "type": "string",
            "description": "Role played by the related party"
          },
          "extensions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "Related Entity reference. A related party defines party or party role linked to a specific entity."
      },
      "RelatedPlaceRefOrValue": {
        "required": [
          "role"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the place"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Unique reference of the place"
          },
          "name": {
            "type": "string",
            "description": "A user-friendly name for the place, such as [Paris Store], [London Store], [Main Home]"
          },
          "role": {
            "type": "string"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          },
          "characteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/KeyValueObject"
            }
          }
        },
        "description": "Related Entity reference. A related place defines a place described by reference or by value linked to a specific entity. The polymorphic attributes @type, @schemaLocation & @referredType are related to the place entity and not the RelatedPlaceRefOrValue class itself"
      },
      "RelatedProductOrderItem": {
        "required": [
          "orderItemId",
          "productOrderId"
        ],
        "type": "object",
        "properties": {
          "orderItemAction": {
            "type": "string",
            "description": "Action of the order item for this product"
          },
          "orderItemId": {
            "type": "string",
            "description": "Identifier of the order item where the product was managed"
          },
          "productOrderHref": {
            "type": "string",
            "description": "Reference of the related entity."
          },
          "productOrderId": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "role": {
            "type": "string",
            "description": "role of the product order item for this product"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "RelatedProductOrderItem (ProductOrder item) .The product order item which triggered product creation/change/termination."
      },
      "ResourceRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the resource"
          },
          "value": {
            "type": "string",
            "description": "The resource value that can be used to identify a resource with a public key (e.g.: a tel nr, an msisdn)"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        }
      },
      "ServiceRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "Service reference, for when Service is used by other entities"
      },
      "TargetProductSchema": {
        "required": [
          "@schemaLocation",
          "@type"
        ],
        "type": "object",
        "properties": {
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "This field provides a link to the schema describing the target product"
          },
          "@type": {
            "type": "string",
            "description": "Class type of the target product"
          }
        },
        "description": "The reference object to the schema and type of target product which is described by product specification"
      },
      "TaskStateType": {
        "type": "string",
        "description": "Possible values for the state of a task",
        "enum": [
          "acknowledged",
          "terminatedWithError",
          "inProgress",
          "done"
        ]
      },
      "TimePeriod": {
        "type": "object",
        "properties": {
          "endDateTime": {
            "type": "string",
            "description": "End of the time period, using IETC-RFC-3339 format",
            "format": "date-time"
          },
          "startDateTime": {
            "type": "string",
            "description": "Start of the time period, using IETC-RFC-3339 format. If you define a start, you must also define an end",
            "format": "date-time"
          }
        },
        "description": "A period of time, either as a deadline (endDateTime only) a startDateTime only, or both"
      },
      "EventSubscription": {
        "required": [
          "callback",
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Id of the listener"
          },
          "callback": {
            "type": "string",
            "description": "The callback being registered."
          },
          "query": {
            "type": "string",
            "description": "additional data to be passed"
          }
        },
        "description": "Sets the communication endpoint address the service instance must use to deliver notification information"
      },
      "EventSubscriptionInput": {
        "required": [
          "callback"
        ],
        "type": "object",
        "properties": {
          "callback": {
            "type": "string",
            "description": "The callback being registered."
          },
          "query": {
            "type": "string",
            "description": "additional data to be passed"
          }
        },
        "description": "Sets the communication endpoint address the service instance must use to deliver notification information"
      },
      "ProductOrderCreateEvent": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Identifier of the Process flow"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the ProcessFlow"
          },
          "eventId": {
            "type": "string",
            "description": "The identifier of the notification."
          },
          "eventTime": {
            "type": "string",
            "description": "Time of the event occurrence.",
            "format": "date-time"
          },
          "eventType": {
            "type": "string",
            "description": "The type of the notification."
          },
          "correlationId": {
            "type": "string",
            "description": "The correlation id for this event."
          },
          "domain": {
            "type": "string",
            "description": "The domain of the event."
          },
          "title": {
            "type": "string",
            "description": "The title of the event."
          },
          "description": {
            "type": "string",
            "description": "An explnatory of the event."
          },
          "priority": {
            "type": "string",
            "description": "A priority."
          },
          "timeOcurred": {
            "type": "string",
            "description": "The time the event occured.",
            "format": "date-time"
          },
          "event": {
            "$ref": "#/components/schemas/ProductOrderCreateEventPayload"
          }
        },
        "description": "The notification data structure",
        "title": ""
      },
      "ProductOrderCreateEventPayload": {
        "type": "object",
        "properties": {
          "productOrder": {
            "$ref": "#/components/schemas/ProductOrder"
          }
        },
        "description": "The event data structure"
      },
      "ProductOrderAttributeValueChangeEvent": {
        "type": "object",
        "properties": {
          "eventId": {
            "type": "string",
            "description": "The identifier of the notification."
          },
          "eventTime": {
            "type": "string",
            "description": "Time of the event occurrence.",
            "format": "date-time"
          },
          "eventType": {
            "type": "string",
            "description": "The type of the notification."
          },
          "correlationId": {
            "type": "string",
            "description": "The correlation id for this event."
          },
          "domain": {
            "type": "string",
            "description": "The domain of the event."
          },
          "title": {
            "type": "string",
            "description": "The title of the event."
          },
          "description": {
            "type": "string",
            "description": "An explnatory of the event."
          },
          "priority": {
            "type": "string",
            "description": "A priority."
          },
          "timeOcurred": {
            "type": "string",
            "description": "The time the event occured.",
            "format": "date-time"
          },
          "fieldPath": {
            "type": "string",
            "description": "The path identifying the object field concerned by this notification."
          },
          "event": {
            "$ref": "#/components/schemas/ProductOrderAttributeValueChangeEventPayload"
          }
        },
        "description": "The notification data structure"
      },
      "ProductOrderAttributeValueChangeEventPayload": {
        "type": "object",
        "properties": {
          "productOrder": {
            "$ref": "#/components/schemas/ProductOrder"
          }
        },
        "description": "The event data structure"
      },
      "ProductOrderDeleteEvent": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Identifier of the Process flow"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the ProcessFlow"
          },
          "eventId": {
            "type": "string",
            "description": "The identifier of the notification."
          },
          "eventTime": {
            "type": "string",
            "description": "Time of the event occurrence.",
            "format": "date-time"
          },
          "eventType": {
            "type": "string",
            "description": "The type of the notification."
          },
          "correlationId": {
            "type": "string",
            "description": "The correlation id for this event."
          },
          "domain": {
            "type": "string",
            "description": "The domain of the event."
          },
          "title": {
            "type": "string",
            "description": "The title of the event."
          },
          "description": {
            "type": "string",
            "description": "An explnatory of the event."
          },
          "priority": {
            "type": "string",
            "description": "A priority."
          },
          "timeOcurred": {
            "type": "string",
            "description": "The time the event occured.",
            "format": "date-time"
          },
          "event": {
            "$ref": "#/components/schemas/ProductOrderDeleteEventPayload"
          }
        },
        "description": "The notification data structure"
      },
      "ProductOrderDeleteEventPayload": {
        "type": "object",
        "properties": {
          "productOrder": {
            "$ref": "#/components/schemas/ProductOrder"
          }
        },
        "description": "The event data structure"
      },
      "ProductOrderStateChangeEvent": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Identifier of the Process flow"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the ProcessFlow"
          },
          "eventId": {
            "type": "string",
            "description": "The identifier of the notification."
          },
          "eventTime": {
            "type": "string",
            "description": "Time of the event occurrence.",
            "format": "date-time"
          },
          "eventType": {
            "type": "string",
            "description": "The type of the notification."
          },
          "correlationId": {
            "type": "string",
            "description": "The correlation id for this event."
          },
          "domain": {
            "type": "string",
            "description": "The domain of the event."
          },
          "title": {
            "type": "string",
            "description": "The title of the event."
          },
          "description": {
            "type": "string",
            "description": "An explnatory of the event."
          },
          "priority": {
            "type": "string",
            "description": "A priority."
          },
          "timeOcurred": {
            "type": "string",
            "description": "The time the event occured.",
            "format": "date-time"
          },
          "event": {
            "$ref": "#/components/schemas/ProductOrderStateChangeEventPayload"
          }
        },
        "description": "The notification data structure"
      },
      "ProductOrderStateChangeEventPayload": {
        "type": "object",
        "properties": {
          "productOrder": {
            "$ref": "#/components/schemas/ProductOrder"
          }
        },
        "description": "The event data structure"
      },
      "ProductOrderInformationRequiredEvent": {
        "type": "object",
        "properties": {
          "eventId": {
            "type": "string",
            "description": "The identifier of the notification."
          },
          "eventTime": {
            "type": "string",
            "description": "Time of the event occurrence.",
            "format": "date-time"
          },
          "eventType": {
            "type": "string",
            "description": "The type of the notification."
          },
          "correlationId": {
            "type": "string",
            "description": "The correlation id for this event."
          },
          "domain": {
            "type": "string",
            "description": "The domain of the event."
          },
          "title": {
            "type": "string",
            "description": "The title of the event."
          },
          "description": {
            "type": "string",
            "description": "An explnatory of the event."
          },
          "priority": {
            "type": "string",
            "description": "A priority."
          },
          "timeOcurred": {
            "type": "string",
            "description": "The time the event occured.",
            "format": "date-time"
          },
          "fieldPath": {
            "type": "string",
            "description": "The path identifying the object field concerned by this notification."
          },
          "event": {
            "$ref": "#/components/schemas/ProductOrderInformationRequiredEventPayload"
          }
        },
        "description": "The notification data structure"
      },
      "ProductOrderInformationRequiredEventPayload": {
        "type": "object",
        "properties": {
          "productOrder": {
            "$ref": "#/components/schemas/ProductOrder"
          }
        },
        "description": "The event data structure"
      },
      "CancelProductOrderCreateEvent": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Identifier of the Process flow"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the ProcessFlow"
          },
          "eventId": {
            "type": "string",
            "description": "The identifier of the notification."
          },
          "eventTime": {
            "type": "string",
            "description": "Time of the event occurrence.",
            "format": "date-time"
          },
          "eventType": {
            "type": "string",
            "description": "The type of the notification."
          },
          "correlationId": {
            "type": "string",
            "description": "The correlation id for this event."
          },
          "domain": {
            "type": "string",
            "description": "The domain of the event."
          },
          "title": {
            "type": "string",
            "description": "The title of the event."
          },
          "description": {
            "type": "string",
            "description": "An explnatory of the event."
          },
          "priority": {
            "type": "string",
            "description": "A priority."
          },
          "timeOcurred": {
            "type": "string",
            "description": "The time the event occured.",
            "format": "date-time"
          },
          "event": {
            "$ref": "#/components/schemas/CancelProductOrderCreateEventPayload"
          }
        },
        "description": "The notification data structure"
      },
      "CancelProductOrderCreateEventPayload": {
        "type": "object",
        "properties": {
          "cancelProductOrder": {
            "$ref": "#/components/schemas/CancelProductOrder"
          }
        },
        "description": "The event data structure"
      },
      "CancelProductOrderStateChangeEvent": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Identifier of the Process flow"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the ProcessFlow"
          },
          "eventId": {
            "type": "string",
            "description": "The identifier of the notification."
          },
          "eventTime": {
            "type": "string",
            "description": "Time of the event occurrence.",
            "format": "date-time"
          },
          "eventType": {
            "type": "string",
            "description": "The type of the notification."
          },
          "correlationId": {
            "type": "string",
            "description": "The correlation id for this event."
          },
          "domain": {
            "type": "string",
            "description": "The domain of the event."
          },
          "title": {
            "type": "string",
            "description": "The title of the event."
          },
          "description": {
            "type": "string",
            "description": "An explnatory of the event."
          },
          "priority": {
            "type": "string",
            "description": "A priority."
          },
          "timeOcurred": {
            "type": "string",
            "description": "The time the event occured.",
            "format": "date-time"
          },
          "event": {
            "$ref": "#/components/schemas/CancelProductOrderStateChangeEventPayload"
          }
        },
        "description": "The notification data structure"
      },
      "CancelProductOrderStateChangeEventPayload": {
        "type": "object",
        "properties": {
          "cancelProductOrder": {
            "$ref": "#/components/schemas/CancelProductOrder"
          }
        },
        "description": "The event data structure"
      },
      "CancelProductOrderInformationRequiredEvent": {
        "type": "object",
        "properties": {
          "eventId": {
            "type": "string",
            "description": "The identifier of the notification."
          },
          "eventTime": {
            "type": "string",
            "description": "Time of the event occurrence.",
            "format": "date-time"
          },
          "eventType": {
            "type": "string",
            "description": "The type of the notification."
          },
          "correlationId": {
            "type": "string",
            "description": "The correlation id for this event."
          },
          "domain": {
            "type": "string",
            "description": "The domain of the event."
          },
          "title": {
            "type": "string",
            "description": "The title of the event."
          },
          "description": {
            "type": "string",
            "description": "An explnatory of the event."
          },
          "priority": {
            "type": "string",
            "description": "A priority."
          },
          "timeOcurred": {
            "type": "string",
            "description": "The time the event occured.",
            "format": "date-time"
          },
          "fieldPath": {
            "type": "string",
            "description": "The path identifying the object field concerned by this notification."
          },
          "event": {
            "$ref": "#/components/schemas/CancelProductOrderInformationRequiredEventPayload"
          }
        },
        "description": "The notification data structure"
      },
      "CancelProductOrderInformationRequiredEventPayload": {
        "type": "object",
        "properties": {
          "cancelProductOrder": {
            "$ref": "#/components/schemas/CancelProductOrder"
          }
        },
        "description": "The event data structure"
      },
      "Error": {
        "required": [
          "code",
          "reason"
        ],
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "description": "Application relevant detail, defined in the API or a common list."
          },
          "reason": {
            "type": "string",
            "description": "Explanation of the reason for the error which can be shown to a client user."
          },
          "message": {
            "type": "string",
            "description": "More details and corrective actions related to the error which can be shown to a client user."
          },
          "status": {
            "type": "string",
            "description": "HTTP Error code extension"
          },
          "referenceError": {
            "type": "string",
            "description": "URI of documentation describing the error.",
            "format": "uri"
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class."
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name."
          }
        },
        "description": "Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)"
      },
      "PaymentProductOrder": {
        "description": "Representation of a payment method",
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique id of the payment method in the server"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "URI where to perform actions on the payment method"
          },
          "role": {
            "type": "string",
            "description": "URI where to perform actions on the payment method"
          },
          "name": {
            "type": "string",
            "description": "Screen name of the payment method"
          },
          "description": {
            "type": "string",
            "description": "Description of the payment method"
          },
          "amount": {
            "$ref": "#/components/schemas/Money"
          },
          "taxAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "totalAmount": {
            "$ref": "#/components/schemas/Money"
          },
          "validFor": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "account": {
            "type": "array",
            "description": "Account that owns or can use the payment method",
            "items": {
              "$ref": "#/components/schemas/BillingAccountRef"
            }
          },
          "preferred": {
            "type": "boolean",
            "description": "Defines whether this particular method is the preferred one"
          },
          "relatedParty": {
            "type": "array",
            "description": "Account that owns the payment method",
            "items": {
              "$ref": "#/components/schemas/RelatedParty"
            }
          },
          "paymentItem": {
            "type": "array",
            "description": "Payment order item reference id",
            "items": {
              "$ref": "#/components/schemas/PaymentItemRef"
            }
          },
          "@type": {
            "type": "string",
            "enum": [
              "cash",
              "digitalWallet",
              "tokenizedCard",
              "bankAccountTransfer",
              "bankAccountDebit",
              "bankCard",
              "account",
              "bucket",
              "voucher",
              "check",
              "loyaltyAccount"
            ],
            "description": "Payment method type. The content of the details field depends on the value of this one"
          },
          "authorizationCode": {
            "type": "string",
            "description": "Authorization code provided by a financial institution. Typically this would be populated for recurring payments using the method, as payments have an authorization code of their own."
          },
          "status": {
            "type": "string",
            "description": "Current status of the payment method"
          },
          "statusDate": {
            "format": "date-time",
            "type": "string",
            "description": "Last time the status changed"
          },
          "details": {
            "$ref": "#/components/schemas/ProductOrderPaymentDetails"
          },
          "characteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Characteristic"
            }
          }
        },
        "required": [
          "id",
          "href",
          "@type",
          "details"
        ]
      },
      "ProductOrderPaymentDetails": {
        "title": "details",
        "type": "object",
        "properties": {
          "token": {
            "type": "string",
            "description": "Payment Details token"
          },
          "tokenType": {
            "type": "string",
            "description": "Payment Details tokenType"
          },
          "type": {
            "type": "string",
            "description": "Payment Details type"
          },
          "issuer": {
            "type": "string",
            "description": "Payment Details issuer"
          },
          "brand": {
            "type": "string",
            "description": "Payment Details brand"
          },
          "lastFourDigits": {
            "type": "number",
            "description": "Payment Details lastFourDigits"
          }
        }
      },
      "BankCardType": {
        "description": "Details of a bank card",
        "properties": {
          "brand": {
            "type": "string",
            "description": "Credit card brand. E.g.: Visa, MasterCard, AmericanExpress..."
          },
          "type": {
            "type": "string",
            "enum": [
              "Debit",
              "Credit"
            ],
            "description": "Debit or credit"
          },
          "cardNumber": {
            "type": "string",
            "description": "Credit card number"
          },
          "expirationDate": {
            "type": "string",
            "format": "date-time",
            "description": "the card's expiration date"
          },
          "cvv": {
            "type": "string",
            "description": "the CVV or CVV2 code of the card"
          },
          "lastFourDigits": {
            "type": "string",
            "description": "Last four digits of the card"
          },
          "nameOnCard": {
            "type": "string",
            "description": "Name writen on the card"
          },
          "bank": {
            "type": "string",
            "description": "Bank that issued the card"
          }
        },
        "required": [
          "brand",
          "cardNumber",
          "expirationDate"
        ]
      },
      "TokenizedCardType": {
        "description": "Details of a tokenized bank card",
        "properties": {
          "brand": {
            "type": "string",
            "description": "Credit card brand. E.g.: Visa, MasterCard, AmericanExpress... Might be used for display purposes"
          },
          "type": {
            "type": "string",
            "enum": [
              "Debit",
              "Credit"
            ],
            "description": "Card type. Might be used for display purposes"
          },
          "lastFourDigits": {
            "type": "string",
            "description": "Last four digits of the credit card. Might be used for display purposes"
          },
          "tokenType": {
            "type": "string",
            "description": "Token type (e.g.: emv)"
          },
          "token": {
            "type": "string",
            "description": "The token itself"
          },
          "issuer": {
            "type": "string",
            "description": "Whoever issued the token"
          }
        },
        "required": [
          "tokenType",
          "token"
        ],
        "title": ""
      },
      "BankAccountTransferType": {
        "description": "Details of a bank account",
        "properties": {
          "accountNumber": {
            "type": "string",
            "description": "Bank Account Number (this could refer to the IBAN or SWIFT number)"
          },
          "accountNumberType": {
            "type": "string",
            "description": "Type of account number (e.g.: IBAN, SWIFT, ...)"
          },
          "BIC": {
            "type": "string",
            "description": "Business Identifier Code/Swift code of the financial institution where the account is located"
          },
          "owner": {
            "type": "string",
            "description": "Owner of the bank account"
          },
          "bank": {
            "type": "string",
            "description": "Screen name of the bank"
          }
        },
        "required": [
          "accountNumber",
          "accountNumberType"
        ]
      },
      "BankAccountDebitType": {
        "description": "Details of a bank account",
        "properties": {
          "accountNumber": {
            "type": "string",
            "description": "Bank Account Number (this could refer to the IBAN or SWIFT number)"
          },
          "accountNumberType": {
            "type": "string",
            "description": "Type of account number (e.g.: IBAN, SWIFT, ...)"
          },
          "BIC": {
            "type": "string",
            "description": "Business Identifier Code/Swift code of the financial institution where the account is located"
          },
          "owner": {
            "type": "string",
            "description": "Owner of the bank account"
          },
          "bank": {
            "type": "string",
            "description": "Screen name of the bank"
          }
        },
        "required": [
          "accountNumber",
          "accountNumberType"
        ]
      },
      "CashType": {
        "description": "Details of cash payer"
      },
      "CheckType": {
        "description": "Details of a check",
        "properties": {
          "checkId": {
            "description": "Unique identifier of the check in the bank that issues them. Typically writen on them and comprises bank, account and serial number.",
            "type": "string"
          },
          "drawer": {
            "description": "Person or entity writing the check",
            "type": "string"
          },
          "payee": {
            "description": "Person or entity the check is addressed to",
            "type": "string"
          },
          "bank": {
            "description": "Entity, typically a bank, performing the payment of the check",
            "type": "string"
          },
          "date": {
            "description": "Date when the check was signed",
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "drawer",
          "payee",
          "bank"
        ]
      },
      "DigitalWalletType": {
        "description": "Details of a digital wallet",
        "properties": {
          "service": {
            "type": "string",
            "description": "Wallet service (e.g.: PayPal)"
          },
          "walletId": {
            "type": "string",
            "description": "Unique Id of the account in the service"
          },
          "walletUrl": {
            "type": "string",
            "description": "URI pointing at the digital wallet (e.g.: https://paypal.me/johndoe)"
          }
        },
        "required": [
          "service",
          "walletId"
        ]
      },
      "AccountRefType": {
        "description": "Reference to an external entity that can be tipically queried with another API such as a customer account, a ticket, etc.",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the entity"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "URI where to query or perform actions on the entity"
          },
          "name": {
            "type": "string",
            "description": "Screen name of the entity"
          },
          "description": {
            "type": "string",
            "description": "Description of the entity"
          },
          "@referredType": {
            "type": "string",
            "description": "Type of the referred account (s.g.: financialAccount)"
          }
        },
        "required": [
          "id",
          "href"
        ]
      },
      "VoucherType": {
        "description": "Details of a voucher",
        "properties": {
          "code": {
            "type": "string",
            "description": "Code that identifies the voucher or provides the discount"
          },
          "description": {
            "type": "string",
            "description": "Description of the voucher (e.g.: get one and receive one free)"
          },
          "value": {
            "description": "Discount that the voucher applies when it's a discount voucher",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Quantity"
            }
          },
          "expirationDate": {
            "type": "string",
            "format": "date-time",
            "description": "the voucher's expiration date"
          },
          "campaign": {
            "type": "string",
            "description": "Campaign this voucher belongs to"
          }
        },
        "required": [
          "code"
        ]
      },
      "PaymentItemRef": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of a related entity."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Reference of the related entity."
          },
          "name": {
            "type": "string",
            "description": "Name of the related entity."
          },
          "@baseType": {
            "type": "string",
            "description": "When sub-classing, this defines the super-class"
          },
          "@schemaLocation": {
            "type": "string",
            "description": "A URI to a JSON-Schema file that defines additional attributes and relationships",
            "format": "uri"
          },
          "@type": {
            "type": "string",
            "description": "When sub-classing, this defines the sub-class entity name"
          },
          "@referredType": {
            "type": "string",
            "description": "The actual type of the target instance when needed for disambiguation."
          }
        },
        "description": "ProductOrder (ProductOrder) .The product order which the recommendation is related with."
      },
      "Validation": {
        "type": "object",
        "description": "TMF++::Validation result that is associated with the product order\n",
        "properties": {
          "status": {
            "type": "string",
            "description": "Validation status\n"
          },
          "readyToCheckout": {
            "type": "boolean",
            "description": "Ready To Checkout\n"
          },
          "readyToSubmit": {
            "type": "boolean",
            "description": "Ready to Submit\n"
          },
          "error": {
            "$ref": "#/components/schemas/Error"
          },
          "validationMessage": {
            "type": "array",
            "description": "Validation message\n",
            "items": {
              "$ref": "#/components/schemas/ValidationMessage"
            }
          },
          "configurationChange": {
            "type": "array",
            "description": "Configuration change\n",
            "items": {
              "$ref": "#/components/schemas/ConfigurationChange"
            }
          },
          "configuration": {
            "type": "array",
            "description": "Configuration Components\n",
            "items": {
              "$ref": "#/components/schemas/Configuration"
            }
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "x-examples": {}
      },
      "ValidationMessage": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Non-localized name identifier of the validation message\n"
          },
          "text": {
            "type": "string",
            "description": "Localized descriptive validation message\n"
          },
          "type": {
            "type": "string",
            "description": "Type of the validation message\n"
          },
          "subtype": {
            "type": "string",
            "description": "Distinct code which represents the issue\n"
          },
          "parameter": {
            "type": "array",
            "description": "Name/value pair of the validation message\n",
            "items": {
              "$ref": "#/components/schemas/ValidationMessageParameter"
            }
          },
          "severity": {
            "type": "string",
            "description": "Severity of the validation message\n"
          },
          "path": {
            "type": "string",
            "description": "Path to the resource part to which the validation message is related\n"
          },
          "resource": {
            "type": "array",
            "description": "Resource that is associated with the message\n",
            "items": {
              "$ref": "#/components/schemas/RelatedResource"
            }
          }
        },
        "description": "TMF++::Message associated with the validation failure\n"
      },
      "ValidationMessageParameter": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of the parameter\n"
          },
          "value": {
            "type": "array",
            "description": "Value of the parameter\n",
            "items": {
              "type": "string"
            }
          }
        },
        "description": "TMF++::Name/value pair of the validation message parameter\n"
      },
      "RelatedResource": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Type of the resource\n"
          },
          "id": {
            "type": "string",
            "description": "Unique identifier of the resource\n"
          },
          "variable": {
            "type": "array",
            "description": "Variables related to the resource\n",
            "items": {
              "$ref": "#/components/schemas/Variable"
            }
          },
          "containedResource": {
            "type": "array",
            "description": "Other resources, specs, or offers that are linked to the message but did not trigger the validation message\n",
            "items": {
              "$ref": "#/components/schemas/ContainedResource"
            }
          }
        },
        "description": "TMF++::Resource that is associated with the validation message (that is, triggered the validation failure)\n"
      },
      "Variable": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Type of the variable\n"
          },
          "id": {
            "type": "string",
            "description": "Unique identifier of the variable\n"
          },
          "value": {
            "type": "array",
            "description": "Value(s) of the variable\n",
            "items": {
              "type": "string"
            }
          }
        },
        "description": "Variable that is associated with a resource\n"
      },
      "ContainedResource": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Type of the resource\n"
          },
          "id": {
            "type": "string",
            "description": "Unique identifier of the resource\n"
          },
          "variable": {
            "type": "array",
            "description": "Variables that are related to the resource\n",
            "items": {
              "$ref": "#/components/schemas/Variable"
            }
          }
        },
        "description": "TMF++::Resources that are contained in the validation message\n"
      },
      "ConfigurationChange": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the configuration change\n"
          },
          "text": {
            "type": "string",
            "description": "Localized descriptive configuration change message\n"
          },
          "type": {
            "type": "string",
            "description": "Implementation discriminator of the configuration change\n"
          },
          "parameter": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ConfigurationChangeParameter"
            }
          },
          "severity": {
            "type": "string",
            "description": "Severity of the configuration change\n"
          },
          "path": {
            "type": "string",
            "description": "Path to the configuration change in the resource model\n"
          },
          "skipRevalidation": {
            "type": "boolean",
            "description": "Indicates whether revalidation of the configuration change is required\n"
          },
          "patchElement": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PatchElement"
            }
          },
          "configurationChangeSource": {
            "type": "array",
            "description": "Holds a list of the impacting components that are involved in action rule\n- enablmentRelation - The action rule has impacting enablment relation functionality or was created by this functionality.\n- commertialRelation - The action rule has impacting commertial relation functionality or was created by this functionality.\n- subscriptionRelation - The action rule has impacting subscription relation or was created by this functionality. functionality\n- catalog - The action rule was created by catalog.\n",
            "items": {
              "type": "string"
            }
          }
        },
        "description": "TMF++::Configuration change recommended for a validated resource\n"
      },
      "ConfigurationChangeParameter": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of the parameter\n"
          },
          "value": {
            "type": "array",
            "description": "Value(s) of the parameter\n",
            "items": {
              "type": "string"
            }
          },
          "valueType": {
            "type": "string",
            "description": "Types of each Value in the parameter array\nAs a default - when empty - the type is string.\nAlso will be supported-\n** HashMap - a jason format representation of key value <string,string> map.\n"
          }
        },
        "description": "TMF++::Name/value pair of the configuration change parameters\n"
      },
      "PatchElement": {
        "type": "object",
        "description": "TMF++::Patched resource part\n",
        "properties": {
          "op": {
            "type": "string",
            "description": "Operation that is associated with the patched resource part. Valid values are *add*, *remove*, or *replace*.\n"
          },
          "path": {
            "type": "string",
            "description": "Path of this resource part within the patched resource, for example, */note*, */name*, or */orderItem/quantity*\n"
          },
          "value": {
            "type": "object",
            "description": "Value of the patched resource part\n"
          }
        }
      },
      "ImmediatePromotion": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the immediate promotion\n"
          },
          "status": {
            "type": "string",
            "description": "Status of the instance of the immediate promotion\n"
          },
          "state": {
            "type": "string",
            "description": "The apply state of the qualified promotion. The state can have the following values:\n- 'applied' - For an immediate promotion that all of it's benefits are applied\n- 'notApplied' - For an immediate promotion that none of it's benefits are applied - future\n- 'partiallyApplied' - For an immediate promotion that part of it's benefits are applied - future\n- 'pendingApply' - Received in the request for an immediate promotion for which certain benefits, which are selected externally by a consuming application, should be applied\n"
          },
          "promotion": {
            "$ref": "#/components/schemas/PromotionRef"
          },
          "productPromotion": {
            "$ref": "#/components/schemas/ProductPromotionRef"
          },
          "triggerItem": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TriggerItem"
            }
          },
          "benefitItem": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BenefitItem"
            }
          },
          "immediatePromotionCharacteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ContextCharacteristic"
            }
          },
          "reason": {
            "$ref": "#/components/schemas/ModifyReason"
          },
          "relatedParty": {
            "$ref": "#/components/schemas/RelatedParty"
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "TMF++::Immediate promotion\n"
      },
      "ModifyReason": {
        "required": [
          "action",
          "name"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of the modification reason\n"
          },
          "reasonText": {
            "type": "string",
            "description": "Text of the modification reason. This property is populated if the type of the modification reason requires an input of a free text.\n"
          },
          "action": {
            "type": "string",
            "description": "Action performed on the instance of the product offering\n"
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "TMF++::Modification reason associated with the action performed on the product offering that is related to the order item\n"
      },
      "PromotionRef": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the promotion\n"
          },
          "name": {
            "type": "string",
            "description": "Name of the promotion\n"
          },
          "description": {
            "type": "string",
            "description": "Promotion description for a business user\n"
          },
          "validFor": {
            "$ref": "#/components/schemas/TimePeriod"
          },
          "type": {
            "type": "string",
            "description": "The type of the promotion\n"
          },
          "priority": {
            "type": "integer",
            "description": "The priority of the promotion\n"
          },
          "applyPolicy": {
            "type": "string",
            "description": "Defines the policy to apply the promotion - can be manual or automatic \n"
          },
          "href": {
            "type": "string",
            "description": "Hypertext reference to the promotion\n",
            "format": "url",
            "readOnly": true
          }
        },
        "description": "TMF++::Reference to the promotion\n"
      },
      "ProductPromotionRef": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the product promotion\n"
          },
          "href": {
            "type": "string",
            "description": "Hypertext reference to the product promotion\n",
            "format": "url",
            "readOnly": true
          }
        },
        "description": "TMF++::Reference to the product promotion.\n"
      },
      "TriggerItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the trigger item\n"
          },
          "href": {
            "type": "string",
            "description": "Hypertext reference to the trigger item\n",
            "format": "url"
          },
          "itemType": {
            "type": "string",
            "description": "Type of the trigger item\n"
          },
          "promotionCriteriaGroupId": {
            "type": "string",
            "description": "Unique identifier of the promotion criteria group (root or nested) as part of which this item is qualified as trigger item\n"
          },
          "itemStatus": {
            "type": "string",
            "description": "Status of the trigger item in the promotion&#58;\n- *add* - A new trigger item in the product promotion\n- *keep* - An existing trigger item that remains as the result of reevaluation in the product promotion\n- *revoke* - An existing trigger item that is revoked as the result of reevaluation in the product promotion\n"
          },
          "pathToRoot": {
            "type": "string",
            "description": "Path from the current item in the product offering structure to the root. Populated if the trigger item is a nested item.\n"
          },
          "triggerItemCharacteristic": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ContextCharacteristic"
            }
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "TMF++::Item that participated in the promotion qualification\n"
      },
      "ContextCharacteristic": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "The name of the characteristic\n"
          },
          "contextType": {
            "type": "string",
            "description": "The context type of the characteristic\n"
          },
          "valueType": {
            "type": "string",
            "description": "The value type of the characteristic \n"
          },
          "value": {
            "type": "array",
            "description": "The value of the characteristic\n",
            "items": {
              "type": "string"
            }
          }
        },
        "description": "TMF++::The list of dynamic characteristics related to a specific context\n"
      },
      "BenefitItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the benefit item \n"
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Hypertext reference to the benefit item\n"
          },
          "itemType": {
            "type": "string",
            "description": "Type of the benefit item\n"
          },
          "promotionCriteriaGroupId": {
            "type": "string",
            "description": "Unique identifier of the promotion criteria group (root or nested) as part of which this item is qualified as a benefit item\n"
          },
          "itemStatus": {
            "type": "string",
            "description": "Status of the benefit item in the promotion&#58;\n- *add* - A new benefit item in the product promotion\n- *keep* - An existing benefit item that remains as the result of reevaluation in the product promotion\n- *revoke* - An existing benefit item that is revoked as the result of reevaluation in the product promotion\n"
          },
          "itemState": {
            "type": "string",
            "description": "The apply state of the benefit on a benefit item. The state can have the following values&#58;\n- 'applied' - For a benefit that is applied\n- 'notApplied' - For a benefit that is not applied\n- 'pendingApply' - Received in the request for a benefit, for which the relevant benefit item is selected and should be applied\n"
          },
          "pathToRoot": {
            "type": "string",
            "description": "Path from the current item in the product offering structure to the root. Populated if the benefit item is a nested item.\n"
          },
          "action": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PromotionAction"
            }
          },
          "extensions": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {}
            }
          }
        },
        "description": "TMF++::Item that received the promotion benefit, which is a benefit granted through the promotion - can be discount, allowance, free services\n"
      }
    },
    "securitySchemes": {
      "basic": {
        "type": "http",
        "description": "This API supports Basic Authentication.\n",
        "scheme": "basic"
      }
    }
  }
}