Properties
| Name | Type | Description |
|---|---|---|
| bscl | integer | Business class (0=ILEC, 1=CLEC, etc.) |
| svcl | integer | Service class (0=Primary Local, 1=Primary Long Distance) |
| fclt | boolean | Facilities-based indicator |
| frch | boolean | Franchise indicator |
| reg | boolean | Regulated indicator |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-schema/communications-company-data-schema.json",
"title": "CompanyData",
"description": "CompanyData schema from Avalara API",
"type": "object",
"properties": {
"bscl": {
"type": "integer",
"description": "Business class (0=ILEC, 1=CLEC, etc.)"
},
"svcl": {
"type": "integer",
"description": "Service class (0=Primary Local, 1=Primary Long Distance)"
},
"fclt": {
"type": "boolean",
"description": "Facilities-based indicator"
},
"frch": {
"type": "boolean",
"description": "Franchise indicator"
},
"reg": {
"type": "boolean",
"description": "Regulated indicator"
}
}
}