AT&T Alliance APIs

Version v1 (latest)

Product Catalog

Version v1

Enables the retrieval of the product catalog, both with and without a Product ID. In cases where the Product ID of the desired product is unknown, this API can be invoked without a Product ID to obtain comprehensive catalog details, facilitating the selection of a product.

GET
Contact DL-APS_API_Services@att.com to get Endpoint details /product-catalog
Download API Specification
arrowRequest

Query Parameters

    Header Parameters

              Body Parameters

              Responses

              arrowBody

              application/json

              Example Request

              1
              2
              3
              4
              5
              6
              7
              8
              curl --request GET \
                   --url 'https://Contact%20DL-APS_API_Services@att.com/%20to%20get%20Endpoint%20details/product-catalog?productId=string' \
                   --header 'accept: application/json' \
                   --header 'client_id: string' \
                   --header 'client_secret: string' \
                   --header 'source: string' \
                   --header 'x-trace-id: string' \
                   --header 'x-transaction-id: string'

              Example Response

              1
              2
              3
              4
              5
              6
              7
              8
              9
              10
              11
              12
              13
              14
              15
              16
              17
              18
              19
              20
              21
              22
              23
              24
              25
              26
              27
              28
              29
              30
              31
              32
              33
              34
              35
              36
              37
              38
              39
              40
              41
              42
              43
              44
              45
              46
              47
              48
              49
              50
              51
              52
              53
              54
              55
              56
              57
              58
              59
              60
              61
              62
              63
              64
              65
              66
              67
              68
              69
              70
              71
              72
              73
              74
              75
              76
              77
              78
              79
              80
              81
              82
              83
              84
              85
              86
              87
              88
              89
              90
              91
              92
              93
              94
              95
              96
              97
              98
              99
              100
              101
              102
              103
              104
              105
              106
              107
              108
              109
              110
              111
              112
              113
              114
              115
              116
              117
              118
              119
              120
              121
              122
              123
              124
              125
              126
              127
              128
              129
              130
              131
              132
              133
              134
              135
              136
              137
              138
              139
              140
              141
              142
              143
              144
              145
              146
              147
              148
              149
              150
              151
              152
              153
              154
              155
              156
              157
              158
              159
              160
              161
              162
              163
              164
              165
              166
              167
              168
              169
              170
              171
              172
              173
              174
              175
              176
              177
              178
              179
              180
              181
              182
              183
              184
              185
              186
              187
              188
              189
              190
              191
              192
              193
              194
              195
              196
              197
              198
              199
              200
              201
              202
              203
              204
              205
              206
              207
              208
              209
              210
              211
              212
              213
              214
              215
              216
              217
              218
              219
              220
              221
              222
              223
              224
              225
              226
              227
              228
              229
              230
              231
              232
              233
              234
              235
              236
              237
              238
              239
              240
              241
              242
              243
              244
              245
              246
              247
              248
              249
              250
              251
              252
              253
              254
              255
              256
              257
              258
              259
              260
              261
              262
              263
              264
              265
              266
              267
              268
              269
              270
              271
              272
              273
              274
              275
              276
              277
              278
              279
              280
              281
              282
              283
              284
              285
              286
              287
              288
              289
              290
              291
              292
              293
              294
              295
              296
              297
              298
              299
              300
              301
              302
              303
              304
              305
              306
              307
              308
              309
              310
              311
              312
              313
              314
              315
              316
              317
              318
              319
              320
              321
              322
              323
              324
              325
              326
              327
              328
              329
              330
              331
              332
              333
              334
              335
              336
              337
              338
              339
              340
              341
              342
              343
              344
              345
              346
              347
              348
              349
              350
              351
              352
              353
              354
              355
              356
              357
              358
              359
              360
              361
              362
              363
              364
              365
              366
              367
              368
              369
              370
              371
              372
              373
              374
              375
              376
              377
              378
              379
              380
              381
              382
              383
              384
              385
              386
              387
              388
              389
              390
              391
              392
              393
              394
              395
              396
              397
              398
              399
              400
              401
              402
              403
              404
              405
              406
              407
              408
              409
              410
              411
              412
              413
              414
              415
              416
              417
              418
              419
              420
              421
              422
              423
              424
              425
              426
              427
              428
              429
              430
              431
              432
              433
              434
              435
              436
              437
              438
              439
              440
              441
              442
              443
              444
              445
              446
              447
              448
              449
              450
              451
              452
              453
              454
              455
              456
              457
              458
              459
              460
              461
              462
              463
              464
              465
              466
              467
              468
              469
              470
              471
              472
              473
              474
              475
              476
              477
              478
              479
              480
              481
              482
              483
              484
              485
              486
              487
              488
              489
              490
              491
              492
              493
              494
              495
              496
              497
              498
              499
              500
              501
              502
              503
              504
              505
              506
              507
              508
              509
              510
              511
              512
              513
              514
              515
              516
              517
              518
              519
              520
              521
              522
              523
              524
              525
              526
              527
              528
              529
              530
              531
              532
              533
              534
              535
              536
              537
              538
              539
              540
              541
              542
              543
              544
              545
              546
              547
              548
              549
              550
              551
              552
              553
              554
              555
              556
              557
              558
              559
              560
              561
              562
              563
              564
              565
              566
              567
              568
              569
              570
              571
              572
              573
              574
              575
              576
              577
              578
              579
              580
              581
              582
              583
              584
              585
              586
              587
              588
              589
              590
              591
              592
              593
              594
              595
              596
              597
              598
              599
              600
              601
              602
              603
              604
              605
              606
              607
              608
              609
              610
              611
              612
              613
              614
              615
              616
              617
              618
              619
              620
              621
              622
              623
              624
              625
              626
              627
              628
              629
              630
              631
              632
              633
              634
              635
              636
              637
              638
              639
              640
              641
              642
              643
              644
              645
              646
              647
              648
              649
              650
              651
              652
              653
              654
              655
              656
              657
              658
              659
              660
              661
              662
              663
              664
              665
              666
              667
              668
              669
              670
              671
              672
              673
              674
              675
              676
              677
              678
              679
              680
              681
              682
              683
              684
              685
              686
              687
              688
              689
              690
              691
              692
              693
              694
              695
              696
              697
              698
              699
              700
              701
              702
              703
              704
              705
              706
              707
              708
              709
              710
              711
              712
              713
              714
              715
              716
              717
              718
              719
              720
              721
              722
              723
              724
              725
              726
              727
              728
              729
              730
              731
              732
              733
              734
              735
              736
              737
              738
              739
              740
              741
              742
              743
              744
              745
              746
              747
              748
              749
              750
              751
              752
              753
              754
              755
              756
              757
              758
              759
              760
              761
              762
              763
              764
              765
              766
              767
              768
              769
              770
              771
              772
              773
              774
              775
              776
              777
              778
              779
              780
              781
              782
              783
              784
              785
              786
              787
              788
              789
              790
              791
              792
              793
              794
              795
              796
              797
              798
              799
              800
              801
              802
              803
              804
              805
              806
              807
              808
              809
              810
              811
              812
              813
              814
              815
              816
              817
              818
              819
              820
              821
              822
              823
              824
              825
              826
              827
              828
              829
              830
              831
              832
              833
              834
              835
              836
              837
              838
              839
              840
              841
              {
                "productGroups": [
                  {
                    "groupName": "Ethernet",
                    "group": [
                      {
                        "product": "ADI",
                        "productID": "OFF_ADI_MID_MARKET"
                      },
                      {
                        "product": "ADIE",
                        "productID": "OFF_ADI_EXPRESS"
                      },
                      {
                        "product": "AVPN-Express",
                        "productID": "AVPNE"
                      },
                      {
                        "product": "AVPN",
                        "productID": "T-35"
                      },
                      {
                        "product": "ASE",
                        "productID": "T-520"
                      }
                    ]
                  },
                  {
                    "groupName": "BroadBand (BB)",
                    "group": [
                      {
                        "product": "IPBB",
                        "productID": "OFF_ATT_IPBB_Combo"
                      },
                      {
                        "product": "HSIAE",
                        "productID": "OFF_HSIA_ATT"
                      },
                      {
                        "product": "AIA-B",
                        "productID": "AIA-B"
                      }
                    ]
                  },
                  {
                    "groupName": "Voice",
                    "group": [
                      {
                        "product": "ATTPhone",
                        "productID": "OFF_ATT_PHONE"
                      }
                    ]
                  }
                ],
                "requestNumber": {
                  "maxAddressRequests": 20,
                  "maxPricingRequests": 5
                },
                "configurations": [
                  {
                    "productId": "OFF_ADI_MID_MARKET",
                    "product": "ADI",
                    "onlyDefaultConfig": false,
                    "convertToQuote": false,
                    "apiFunction": {
                      "addressQualification": [
                        "address",
                        "service"
                      ],
                      "pricing": [
                        "pricingIgloo",
                        "pricingASF"
                      ]
                    }
                  },
                  {
                    "productId": "OFF_ATT_IPBB_Combo",
                    "product": "IPBB",
                    "onlyDefaultConfig": false,
                    "convertToQuote": true,
                    "apiFunction": {
                      "addressQualification": [
                        "address",
                        "service"
                      ],
                      "pricing": [
                        "pricingASF"
                      ]
                    }
                  }
                ],
                "productFeatures": [
                  {
                    "defaultConfig": [
                      {
                        "configName": "IPBB-50M/50M",
                        "characteristic": [
                          {
                            "value": "Dynamic",
                            "name": "IP Type"
                          },
                          {
                            "value": "50M",
                            "name": "Upload Speed"
                          },
                          {
                            "value": "50M",
                            "name": "Download Speed"
                          },
                          {
                            "value": "Full Tech Install",
                            "name": "Install Type"
                          }
                        ]
                      },
                      {
                        "configName": "IPBB-1G/1G",
                        "characteristic": [
                          {
                            "value": "Dynamic",
                            "name": "IP Type"
                          },
                          {
                            "value": "1000M",
                            "name": "Upload Speed"
                          },
                          {
                            "value": "1000M",
                            "name": "Download Speed"
                          },
                          {
                            "value": "Full Tech Install",
                            "name": "Install Type"
                          }
                        ]
                      }
                    ],
                    "productId": "OFF_ATT_IPBB_Combo",
                    "product": "IPBB",
                    "features": [
                      {
                        "defaulted": "Full Tech Install",
                        "description": "Installation",
                        "length": 10,
                        "name": "Install Type",
                        "order": 1,
                        "required": "Mandatory",
                        "type": "List",
                        "value": [
                          "Full Tech Install"
                        ]
                      },
                      {
                        "description": "This is your upload speed. Your download speed may be different",
                        "length": 10,
                        "name": "Upload Speed",
                        "order": 4,
                        "required": "Mandatory",
                        "type": "List",
                        "value": [
                          "200M",
                          "512K",
                          "768K",
                          "10M",
                          "1.5M",
                          "300M",
                          "2G",
                          "3M",
                          "75M",
                          "50M",
                          "5M",
                          "1G",
                          "20M",
                          "25M",
                          "2M",
                          "1000M",
                          "8M",
                          "40M",
                          "384K",
                          "5G",
                          "1M",
                          "500M",
                          "6M",
                          "100M"
                        ]
                      },
                      {
                        "description": "This is your download speed. Your upload speed may be different",
                        "length": 10,
                        "name": "Download Speed",
                        "order": 5,
                        "required": "Mandatory",
                        "type": "List",
                        "value": [
                          "25M",
                          "500M",
                          "24M",
                          "3M",
                          "200M",
                          "768K",
                          "10M",
                          "5G",
                          "18M",
                          "1000M",
                          "300M",
                          "12M",
                          "2G",
                          "100M",
                          "6M",
                          "45M",
                          "1.5M",
                          "75M",
                          "50M",
                          "5M",
                          "1G"
                        ]
                      },
                      {
                        "description": "interfaceType",
                        "length": 10,
                        "order": 6,
                        "required": "Mandatory",
                        "type": "List",
                        "dependencies": [
                          {
                            "value": [
                              "64 IPs (61 useable)",
                              "16 IPs (13 useable)",
                              "8 IPs (5 useable)",
                              "32 IPs (29 useable)"
                            ],
                            "name": "IP Block Size",
                            "valueOption": "Static"
                          },
                          {
                            "name": "IP Block Size",
                            "valueOption": "Dynamic",
                            "enabled": "No"
                          }
                        ],
                        "name": "IP Type",
                        "value": [
                          "Dynamic",
                          "Static"
                        ]
                      },
                      {
                        "description": "The number of IPs the user can select for any given site",
                        "length": 10,
                        "order": 7,
                        "required": "Conditional",
                        "type": "List",
                        "name": "IP Block Size",
                        "value": [
                          "64 IPs (61 useable)",
                          "16 IPs (13 useable)",
                          "8 IPs (5 useable)",
                          "32 IPs (29 useable)"
                        ]
                      },
                      {
                        "description": "The type of technology used to provide the service",
                        "length": 10,
                        "order": 8,
                        "required": "Mandatory",
                        "type": "List",
                        "name": "Transport Type",
                        "value": [
                          "IP-RT",
                          "FTTP-GPON",
                          "FTTN-BP",
                          "FTTB-F",
                          "FTTN",
                          "IP-CO-BP",
                          "IP-RT-BP",
                          "IP-CO",
                          "FTTB-C"
                        ]
                      }
                    ]
                  },
                  {
                    "productId": "OFF_ADI_MID_MARKET",
                    "features": [
                      {
                        "name": "Management Option",
                        "value": [
                          "Customer Managed",
                          "AT&T Managed"
                        ],
                        "required": "Mandatory",
                        "order": 1,
                        "description": "This is the Management of Product",
                        "type": "List",
                        "length": 20,
                        "dependencies": [
                          {
                            "name": "AT&T Default Router",
                            "value": [
                              "Yes",
                              "No"
                            ],
                            "comparison": [
                              "equal"
                            ],
                            "valueOption": "AT&T Managed"
                          },
                          {
                            "name": "AT&T Default Router",
                            "enabled": "No",
                            "comparison": [
                              "equal"
                            ],
                            "valueOption": "Customer Managed"
                          }
                        ]
                      },
                      {
                        "name": "Term",
                        "value": [
                          "24",
                          "36"
                        ],
                        "required": "Mandatory",
                        "order": 2,
                        "description": "Contract Term",
                        "type": "List",
                        "length": 10
                      },
                      {
                        "name": "Access Speed",
                        "value": [
                          "10G",
                          "500M",
                          "100M",
                          "100G",
                          "1000M",
                          "20M",
                          "400M",
                          "10M",
                          "250M",
                          "150M",
                          "50M",
                          "600M"
                        ],
                        "required": "Mandatory",
                        "order": 3,
                        "description": "This is the Access Speed",
                        "type": "List",
                        "length": 10,
                        "dependencies": [
                          {
                            "valueOption": "1000M",
                            "comparison": [
                              "morethan"
                            ],
                            "value": [
                              "10G baseLR SMF"
                            ],
                            "name": "Interface"
                          },
                          {
                            "valueOption": "100M",
                            "comparison": [
                              "equal",
                              "lessthan"
                            ],
                            "value": [
                              "100Base-TXElectrical",
                              "1000Base-LX Optical SMF",
                              "1000Base-SX Optical MMF"
                            ],
                            "name": "Interface",
                            "defaulted": "100Base-TXElectrical"
                          },
                          {
                            "valueOption": "1000M",
                            "comparison": [
                              "morethan"
                            ],
                            "value": "Dedicated",
                            "name": "Architecture",
                            "enabled": "No"
                          },
                          {
                            "valueOption": "1000M",
                            "comparison": [
                              "equal",
                              "lessthan"
                            ],
                            "value": [
                              "1000Base-LX Optical SMF",
                              "1000Base-SX Optical MMF"
                            ],
                            "name": "Interface",
                            "defaulted": "1000Base-LX Optical SMF"
                          },
                          {
                            "valueOption": "1000M",
                            "comparison": [
                              "equal",
                              "lessthan"
                            ],
                            "value": "Switched",
                            "name": "Architecture",
                            "enabled": "Yes"
                          }
                        ]
                      },
                      {
                        "name": "Port Speed",
                        "value": [
                          "2G",
                          "10M",
                          "1G",
                          "50M",
                          "500M",
                          "150M",
                          "5G",
                          "100M",
                          "20M",
                          "250M",
                          "10G"
                        ],
                        "required": "Mandatory",
                        "order": 4,
                        "description": "This is the Port Speed",
                        "type": "List",
                        "length": 10
                      },
                      {
                        "name": "Interface",
                        "value": [
                          "1000Base-SX Optical MMF",
                          "10G baseLR SMF",
                          "1000Base-LX Optical SMF",
                          "100Base-TXElectrical"
                        ],
                        "required": "Mandatory",
                        "order": 5,
                        "description": "Transport Option for the Product",
                        "type": "List",
                        "length": 30
                      },
                      {
                        "name": "Billing Option",
                        "value": [
                          "Flat Rate",
                          "Usage"
                        ],
                        "required": "Mandatory",
                        "defaulted": "Flat Rate",
                        "order": 7,
                        "description": "Select Billing Option",
                        "type": "List",
                        "length": 20,
                        "dependencies": [
                          {
                            "name": "Port Speed",
                            "value": [
                              "2G",
                              "10M",
                              "1G",
                              "50M",
                              "500M",
                              "150M",
                              "5G",
                              "100M",
                              "20M",
                              "250M",
                              "10G"
                            ],
                            "comparison": [
                              "equal"
                            ],
                            "valueOption": "Usage"
                          },
                          {
                            "name": "Port Speed",
                            "enabled": "No",
                            "comparison": [
                              "equal"
                            ],
                            "valueOption": "Flat Rate"
                          }
                        ]
                      },
                      {
                        "name": "AT&T Default Router",
                        "defaulted": "Yes",
                        "required": "Conditional",
                        "order": 8,
                        "description": "AT&T Default Router",
                        "type": "List",
                        "length": 20,
                        "value": [
                          "Yes",
                          "No"
                        ]
                      },
                      {
                        "name": "Class of Service?",
                        "defaulted": "No",
                        "required": "Optional",
                        "order": 9,
                        "description": "Class of Service",
                        "type": "List",
                        "length": 10,
                        "value": [
                          "Yes",
                          "No"
                        ],
                        "dependencies": [
                          {
                            "name": "COS Profile",
                            "value": [
                              "107-60% Real Time-40/30/30 Data",
                              "120-0% Real Time-60/30/10 Data",
                              "106-60% Real Time-60/30/10 Data",
                              "122-One CoS-CoS3",
                              "111-40% Real Time-40/30/30 Data",
                              "109-40% Real Time-80/10/10 Data",
                              "124-0% Real Time-0/50/50 Data",
                              "108-50% Real Time-0/0/100 Data",
                              "103-80% Real Time-60/30/10 Data",
                              "112-20% Real Time-80/10/10 Data",
                              "121-0% Real Time-40/30/30 Data",
                              "104-80% Real Time-40/30/30 Data",
                              "125-No Cos",
                              "101-90% Real Time-0/0/100 Data",
                              "123-0% Real Time-0/90/10 Data",
                              "114-20% Real Time-40/30/30 Data",
                              "118-One CoS-CoS2",
                              "113-20% Real Time-60/30/10 Data",
                              "117-10% Real Time-40/30/30 Data",
                              "102-80% Real Time-80/10/10 Data",
                              "115-10% Real Time-80/10/10 Data",
                              "116-10% Real Time-60/30/10 Data",
                              "119-0% Real Time-80/10/10 Data",
                              "105-60% Real Time-80/10/10 Data",
                              "110-40% Real Time-60/30/10 Data"
                            ],
                            "comparison": [
                              "equal"
                            ],
                            "valueOption": "Yes"
                          },
                          {
                            "name": "COS Profile",
                            "enabled": "No",
                            "comparison": [
                              "equal"
                            ],
                            "valueOption": "No"
                          }
                        ]
                      },
                      {
                        "name": "Additional WAN IPv4 Addresses needed",
                        "defaulted": "No",
                        "required": "Optional",
                        "order": 10,
                        "description": "Additional WAN IPv4 Addresses needed?",
                        "type": "List",
                        "length": 10,
                        "value": [
                          "Yes",
                          "No"
                        ],
                        "dependencies": [
                          {
                            "name": "WAN IPv4 Address Block size",
                            "value": [
                              "5",
                              "13",
                              "29"
                            ],
                            "comparison": [
                              "equal"
                            ],
                            "valueOption": "Yes"
                          },
                          {
                            "name": "WAN IPv4 Address Block size",
                            "enabled": "No",
                            "comparison": [
                              "equal"
                            ],
                            "valueOption": "No"
                          },
                          {
                            "name": "Additional WAN IPv4 Address Type",
                            "value": [
                              "Static"
                            ],
                            "comparison": [
                              "equal"
                            ],
                            "valueOption": "Yes"
                          },
                          {
                            "name": "Additional WAN IPv4 Address Type",
                            "enabled": "No",
                            "comparison": [
                              "equal"
                            ],
                            "valueOption": "No"
                          }
                        ]
                      },
                      {
                        "name": "COS Profile",
                        "value": [
                          "107-60% Real Time-40/30/30 Data",
                          "120-0% Real Time-60/30/10 Data",
                          "106-60% Real Time-60/30/10 Data",
                          "122-One CoS-CoS3",
                          "111-40% Real Time-40/30/30 Data",
                          "109-40% Real Time-80/10/10 Data",
                          "124-0% Real Time-0/50/50 Data",
                          "108-50% Real Time-0/0/100 Data",
                          "103-80% Real Time-60/30/10 Data",
                          "112-20% Real Time-80/10/10 Data",
                          "121-0% Real Time-40/30/30 Data",
                          "104-80% Real Time-40/30/30 Data",
                          "125-No Cos",
                          "101-90% Real Time-0/0/100 Data",
                          "123-0% Real Time-0/90/10 Data",
                          "114-20% Real Time-40/30/30 Data",
                          "118-One CoS-CoS2",
                          "113-20% Real Time-60/30/10 Data",
                          "117-10% Real Time-40/30/30 Data",
                          "102-80% Real Time-80/10/10 Data",
                          "115-10% Real Time-80/10/10 Data",
                          "116-10% Real Time-60/30/10 Data",
                          "119-0% Real Time-80/10/10 Data",
                          "105-60% Real Time-80/10/10 Data",
                          "110-40% Real Time-60/30/10 Data"
                        ],
                        "required": "Conditional",
                        "defaulted": "101-90% Real Time-0/0/100 Data",
                        "order": 11,
                        "description": "The Class of Service Profile determines network media type prioritzation (i.e.: voice vs. data).",
                        "type": "List",
                        "length": 40
                      },
                      {
                        "name": "WAN IPv4 Address Block size",
                        "defaulted": "5",
                        "required": "Conditional",
                        "order": 12,
                        "description": "WAN IPv4 Address Block size",
                        "type": "List",
                        "length": 10,
                        "value": [
                          "5",
                          "13",
                          "29"
                        ]
                      },
                      {
                        "name": "Additional WAN IPv4 Address Type",
                        "defaulted": "Static",
                        "required": "Conditional",
                        "order": 13,
                        "description": "Additional WAN IPv4 Address Type",
                        "type": "List",
                        "length": 10,
                        "value": [
                          "Static"
                        ]
                      },
                      {
                        "name": "MBC Speed",
                        "value": [
                          "2G",
                          "10M",
                          "1000M",
                          "50M",
                          "500M",
                          "150M",
                          "5G",
                          "100M",
                          "20M",
                          "250M",
                          "10G"
                        ],
                        "required": "Conditional",
                        "order": 14,
                        "description": "The Access Speed must be greater than or equal to the Port speed. Port speed options must be equal to or less than the selected Access Speed while Minimum Bandwidth Commitment must be less than the port speed",
                        "type": "List",
                        "length": 10
                      },
                      {
                        "name": "Additional LAN IP Addresses",
                        "defaulted": "No",
                        "required": "Optional",
                        "order": 16,
                        "description": "Additional WAN IPv4 Address Type",
                        "type": "List",
                        "length": 10,
                        "value": [
                          "Yes",
                          "No"
                        ],
                        "dependencies": [
                          {
                            "name": "Block Size",
                            "value": [
                              "/23 (usable IP 510)",
                              "/22 (usable IP 1022)",
                              "/26 (usable IP 62)",
                              "/19 (usable IP 8190)",
                              "/20 (usable IP 4094)",
                              "/25 (usable IP 126)",
                              "/27 (usable IP 30)",
                              "/21 (usable IP 2046)",
                              "/24 (usable IP 254)",
                              "/28 (usable IP 14)"
                            ],
                            "comparison": [
                              "equal"
                            ],
                            "valueOption": "Yes"
                          },
                          {
                            "name": "Block Size",
                            "enabled": "No",
                            "comparison": [
                              "equal"
                            ],
                            "valueOption": "No"
                          }
                        ]
                      },
                      {
                        "name": "Block Size",
                        "value": [
                          "/23 (usable IP 510)",
                          "/22 (usable IP 1022)",
                          "/26 (usable IP 62)",
                          "/19 (usable IP 8190)",
                          "/20 (usable IP 4094)",
                          "/25 (usable IP 126)",
                          "/27 (usable IP 30)",
                          "/21 (usable IP 2046)",
                          "/24 (usable IP 254)",
                          "/28 (usable IP 14)"
                        ],
                        "required": "Conditional",
                        "defaulted": "/28 (usable IP 14)",
                        "order": 17,
                        "description": "Additional LAN IP Addresses Block size",
                        "type": "List",
                        "length": 20
                      },
                      {
                        "value": [
                          "Dedicated",
                          "Switched"
                        ],
                        "type": "List",
                        "required": "Conditional",
                        "order": 15,
                        "name": "Architecture",
                        "length": 10,
                        "description": "Network Architecture"
                      }
                    ],
                    "defaultConfig": [
                      {
                        "configName": "ADI-100M",
                        "characteristic": [
                          {
                            "value": "100M",
                            "name": "Port Speed"
                          },
                          {
                            "value": "100M",
                            "name": "Access Speed"
                          },
                          {
                            "value": "100Base-TXElectrical",
                            "name": "Interface"
                          },
                          {
                            "value": "AT&T Managed",
                            "name": "Management Option"
                          },
                          {
                            "value": "Yes",
                            "name": "AT&T Default Router"
                          },
                          {
                            "value": "36",
                            "name": "Term"
                          },
                          {
                            "value": "Flat Rate",
                            "name": "Billing Option"
                          }
                        ]
                      },
                      {
                        "configName": "ADI-1000M",
                        "characteristic": [
                          {
                            "value": "1000M",
                            "name": "Port Speed"
                          },
                          {
                            "value": "1000M",
                            "name": "Access Speed"
                          },
                          {
                            "value": "1000Base-LX Optical SMF",
                            "name": "Interface"
                          },
                          {
                            "value": "AT&T Managed",
                            "name": "Management Option"
                          },
                          {
                            "value": "Yes",
                            "name": "AT&T Default Router"
                          },
                          {
                            "value": "36",
                            "name": "Term"
                          },
                          {
                            "value": "Flat Rate",
                            "name": "Billing Option"
                          }
                        ]
                      }
                    ],
                    "product": "ADI"
                  }
                ]
              }