Skip to content

Commit 44644d6

Browse files
committed
fixup! fixup! fixup! fixup! [feature] Introduce the bitag bbl schema
1 parent 7cea1ec commit 44644d6

3 files changed

Lines changed: 24 additions & 8 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
2-
2025-01-15,FCC,1,fixed,0005937974,F0005937974TIER1,50
3-
2025-11-02,,1,mobile,0003768165,F0005937974ABCD12341234,500
4-
2025-06-06,FCC,99,satellite,0005937974,F0005937974ABCDEFGHIJ12345,500
5-
2025-06-06,FCC,,something,,,0
1+
date_published,regulator_name,regulator_version_number,connection_type,fcc_registration_number,unique_plan_identifier,network_technology_type,provider_name
2+
2025-01-15,FCC,1,fixed,0005937974,F0005937974TIER1,50,Xfinity Internet
3+
2025-11-02,,1,mobile,0003768165,F0005937974ABCD12341234,500,T-Mobile
4+
2025-06-06,FCC,99,satellite,0005937974,F0005937974ABCDEFGHIJ12345,500,Google Fiber
5+
2025-06-06,FCC,,something,,,0,randomeValue
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
version 1.1
2-
@totalColumns 7
2+
@totalColumns 8
33
date_published: xDate
44
regulator_name: empty or upperCase
55
regulator_version_number: empty or range(1, 99)
66
connection_type: notEmpty
77
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}$")
9-
network_technology_type: range(0, 999)
9+
network_technology_type: range(0, 999)
10+
provider_name: length(1,100)

src/main/resources/schemas/schema_specs

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,19 @@ should be listed, because that is the current version/type of network.
9898
This field MUST be in the file and MUST be populated.
9999
Name: network_technology_type
100100
Type/Format: numeric, range (0, 999)
101-
Examples: 40, 50, 500
101+
Examples: 40, 50, 500
102+
103+
```
104+
network_technology_type: range(0, 999)
105+
```
106+
107+
8. Provider Name.
108+
Name of the BIAS provider delivering a specific service.
109+
This field MUST be in the file and MUST be populated.
110+
Name: provider_name
111+
Type/Format: string, limited to 100 characters
112+
Examples: Xfinity Internet, Comcast Business Class, T-Mobile, Google Fiber
113+
114+
```
115+
provider_name: notEmpty and length(1,100)
116+
```

0 commit comments

Comments
 (0)