The current pattern "^(\\d\\.)(\\d)$" for the version of extensions in cityjson.schema.json seems to be too restrictive as it only allows one digit for the major and minor version. Thus, something like 1.10 or 10.1 is not allowed. I suggest changing the pattern to "^(\\d+\\.)(\\d+)$".
The current pattern
"^(\\d\\.)(\\d)$"
for the version of extensions incityjson.schema.json
seems to be too restrictive as it only allows one digit for the major and minor version. Thus, something like1.10
or10.1
is not allowed. I suggest changing the pattern to"^(\\d+\\.)(\\d+)$"
.