Skip to content

Commit cf19e7f

Browse files
committed
fixup! fixup! fixup! fixup! fixup! [feature] Introduce the bitag bbl schema
1 parent 770b941 commit cf19e7f

3 files changed

Lines changed: 18 additions & 7 deletions

File tree

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
date_published,regulator_name,regulator_version_number,connection_type,fcc_registration_number,unique_plan_identifier,network_technology_type,provider_name,service_plan_name
2-
2025-01-15,FCC,1,fixed,0005937974,F0005937974TIER1,50,Xfinity Internet,Extreme 500
3-
2025-11-02,,1,mobile,0003768165,F0005937974ABCD12341234,500,T-Mobile,Turbo 5G Plus
4-
2025-06-06,FCC,99,satellite,0005937974,F0005937974ABCDEFGHIJ12345,500,Google Fiber,Fiber 2G
5-
2025-06-06,FCC,,something,,,0,randomeValue,
1+
date_published,regulator_name,regulator_version_number,connection_type,fcc_registration_number,unique_plan_identifier,network_technology_type,provider_name,service_plan_name,bandwidth_download_units
2+
2025-01-15,FCC,1,fixed,0005937974,F0005937974TIER1,50,Xfinity Internet,Extreme 500,Mbps
3+
2025-11-02,,1,mobile,0003768165,F0005937974ABCD12341234,500,T-Mobile,Turbo 5G Plus,Mbps
4+
2025-06-06,FCC,99,satellite,0005937974,F0005937974ABCDEFGHIJ12345,500,Google Fiber,Fiber 2G,Gbps
5+
2025-06-06,FCC,,something,,,0,randomeValue,,kbps
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version 1.1
2-
@totalColumns 9
2+
@totalColumns 10
33
date_published: xDate
44
regulator_name: empty or upperCase
55
regulator_version_number: empty or range(1, 99)
@@ -8,4 +8,5 @@ fcc_registration_number: empty or range(0000000000, 9999999999)
88
unique_plan_identifier: empty or regex("^[FM][0-9]{1,10}[A-Z0-9]{1,15}$")
99
network_technology_type: range(0, 999)
1010
provider_name: length(1,100)
11-
service_plan_name: length(0,100)
11+
service_plan_name: length(0,100)
12+
bandwidth_download_units: length(4)

src/main/resources/schemas/schema_specs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,3 +125,13 @@ Examples: Extreme 500, Fiber 2G, Turbo 5G Plus
125125
```
126126
service_plan_name: empty or length(1,100)
127127
```
128+
10. Download Bandwidth Units.
129+
The applicable bits per second of bandwidth.
130+
This field MUST be in the file and MUST be populated.
131+
Name: bandwidth_download_units
132+
Type/Format: string, length(4)
133+
Examples: kbps, Mbps, Gbps, Tbps, Pbps
134+
135+
```
136+
bandwidth_download_units: length(4)
137+
```

0 commit comments

Comments
 (0)