division_area.py uses @radio_group("is_land", "is_territorial") which requires exactly one of these fields to be True. But the YAML schema uses anyOf, meaning both can be True, which is correct since a landlocked country has the same geometry for both.
It doesn't look like an existing decorator matches this so a new decorator would be required (@require_any_true?). Then division_area.py would need to be updated.
division_area.py uses
@radio_group("is_land", "is_territorial")which requires exactly one of these fields to beTrue. But the YAML schema uses anyOf, meaning both can beTrue, which is correct since a landlocked country has the same geometry for both.It doesn't look like an existing decorator matches this so a new decorator would be required (
@require_any_true?). Then division_area.py would need to be updated.