A validator for CityJSON files, it validates against the CityJSON schemas and additional functions have been implemented (because these can't be expressed with JSON Schema).
Schema validation means: is the syntax of the file OK?
The following is performed by cjval
:
children
, this ensures that the child exists. And that the child has the parent in its parents
It also verifies the following, these are not errors since the file is still considered valid and usable, but they can make the file larger and some parsers might not understand all the properties:
vertices
are allowed, but they take up spaces and decreases the topological relationships explicitly in the file. If there are any, cjio has the operator clean
to fix this automatically.clean
to fix this automatically.cargo install cjval --features build-binary
git clone https://github.com/cityjson/cjval.git
cargo build --release --features build-binary
./target/release/cjval myfile.json
The code is use at https://validator.cityjson.org, that is it is compiled as WebAssembly (WASM code here).
The CityJSON schemas are built-in the binary, so it suffices to:
$ cjval myfile.city.json
(the latest schemas of a X.Y version will be automatically fetched)
If the file contains one or more Extensions, eg:
json
{
"type": "CityJSON",
"version": "1.1",
"extensions":
{
"Generic":
{
"url": "https://www.cityjson.org/extensions/generic.ext.json",
"version": "1.0"
}
}
...
then cjval
will fetch/download automatically the schema(s).
If instead you want to use your own local Extension schema(s), you can pass them as argument with the argument -e
:
$ cjval myfile.city.json -e ./myextensions/generic.ext.json