Skip to content

Commit 733073d

Browse files
committed
fixup! fixup! fixup! fixup! fixup! fixup! [feature] Introduce the bitag bbl schema
1 parent 00ead60 commit 733073d

3 files changed

Lines changed: 23 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,bandwidth_download_units,bandwidth_download_marketed_low
2-
2025-01-15,FCC,1,fixed,0005937974,F0005937974TIER1,50,Xfinity Internet,Extreme 500,Mbps,2
3-
2025-11-02,,1,mobile,0003768165,F0005937974ABCD12341234,500,T-Mobile,Turbo 5G Plus,Mbps,75
4-
2025-06-06,FCC,99,satellite,0005937974,F0005937974ABCDEFGHIJ12345,500,Google Fiber,Fiber 2G,Gbps,500
5-
2025-06-06,FCC,,something,,,0,randomeValue,,kbps,
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,bandwidth_download_marketed_low,bandwidth_download_marketed_high
2+
2025-01-15,FCC,1,fixed,0005937974,F0005937974TIER1,50,Xfinity Internet,Extreme 500,Mbps,2,2
3+
2025-11-02,,1,mobile,0003768165,F0005937974ABCD12341234,500,T-Mobile,Turbo 5G Plus,Mbps,75,75
4+
2025-06-06,FCC,99,satellite,0005937974,F0005937974ABCDEFGHIJ12345,500,Google Fiber,Fiber 2G,Gbps,500,500
5+
2025-06-06,FCC,,something,,,0,randomeValue,,kbps,1,1

src/main/resources/schemas/schema.csvs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version 1.1
2-
@totalColumns 11
2+
@totalColumns 12
33
date_published: xDate
44
regulator_name: empty or upperCase
55
regulator_version_number: empty or range(1, 99)
@@ -10,4 +10,5 @@ network_technology_type: range(0, 999)
1010
provider_name: length(1,100)
1111
service_plan_name: length(0,100)
1212
bandwidth_download_units: length(4)
13-
bandwidth_download_marketed_low: empty or range(1,999)
13+
bandwidth_download_marketed_low: empty or range(1,999)
14+
bandwidth_download_marketed_high: empty or range(1,999)

src/main/resources/schemas/schema_specs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,3 +152,18 @@ Examples: 2, 75, 500
152152
bandwidth_download_marketed_low: empty or range(1,999)
153153
```
154154

155+
12. Download Bandwidth, Marketed, High.
156+
What the customer is being or has been sold. Depending on the type of service offered, this MAY be an
157+
absolute number or MAY be a range. If it is an absolute number, then it should generally be one to three
158+
digits, because after 999 then a new bandwidth unit is used. If there is only one number, then the value for
159+
the respective “low” and “high” fields MUST be the same. When a range is appropriate, then the “low” and
160+
“high” numbers will differ. Some providers do not market speed per se and only disclose some TYPICAL
161+
speed range, in which case thuis field can be left blank.
162+
This field MUST be in the file and MAY be populated.
163+
Name: bandwidth_download_marketed_high
164+
Type/Format: numeric, length(1,3)
165+
Examples: 2, 75, 500
166+
167+
```
168+
bandwidth_download_marketed_high: empty or range(1,999)
169+
```

0 commit comments

Comments
 (0)