Skip to content

Commit dbcddfd

Browse files
committed
fixup! fixup! [feature] building up the schema again from scratch acording the section 11,4,1 in the bitag report
1 parent a444685 commit dbcddfd

3 files changed

Lines changed: 19 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
2-
2025-01-15,FCC,1
3-
2025-11-02,,1
4-
2025-06-06,FCC,99
5-
2025-06-06,FCC,
1+
date_published,regulator_name,regulator_version_number,connection_type
2+
2025-01-15,FCC,1,fixed
3+
2025-11-02,,1,mobile
4+
2025-06-06,FCC,99,satellite
5+
2025-06-06,FCC,,satellite
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
version 1.1
2-
@totalColumns 3
2+
@totalColumns 4
33
date_published: xDate
44
regulator_name: empty or upperCase
5-
regulator_version_number: empty or range(1, 99)
5+
regulator_version_number: empty or range(1, 99)
6+
connection_type: any("fixed", "mobile", "satellite")

src/main/resources/schemas/schema_specs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,14 @@ to be published.
4040
Field: regulator_version_number
4141
Type/Format: numeric, range(1, 99)
4242
Examples: 1, 02, 55, 77
43+
44+
4. Access Network Connection Type
45+
Indicates the access network technology used.
46+
This field MUST be in the file and MUST be populated.
47+
Field: connection_type
48+
Type/Format: string
49+
Examples: fixed, mobile, satellite
50+
51+
```
52+
connection_type: any("fixed", "mobile", "satellite")
53+
```

0 commit comments

Comments
 (0)