Skip to content

Commit 045d5c0

Browse files
committed
Fix missing schemas issue for AT converter
1 parent 4c8e485 commit 045d5c0

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2727

2828
- Provide more details in data validation messages
2929
- Fix issue with `get_pyarrow_type_for_geopandas`
30+
- Fix missing schemas issue for AT converter
3031

3132
## [v0.3.2] - 2024-04-12
3233

fiboa_cli/datasets/at.py

+13-11
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,19 @@
3434
}
3535
EXTENSIONS = ["https://fiboa.github.io/inspire-extension/v0.2.0/schema.yaml"]
3636
MISSING_SCHEMAS = {
37-
'ref_art': {
38-
'type': 'string'
39-
},
40-
'ref_art_bezeichnung': {
41-
'type': 'string'
42-
},
43-
'referenz_kennung': {
44-
'type': 'uint64'
45-
},
46-
'fart_id': {
47-
'type': 'uint32'
37+
'properties': {
38+
'ref_art': {
39+
'type': 'string'
40+
},
41+
'ref_art_bezeichnung': {
42+
'type': 'string'
43+
},
44+
'referenz_kennung': {
45+
'type': 'uint64'
46+
},
47+
'fart_id': {
48+
'type': 'uint32'
49+
}
4850
}
4951
}
5052

0 commit comments

Comments
 (0)