A library to validate the syntax of CityJSON objects (CityJSON + CityJSONFeatures).
It validates against the CityJSON schemas and additional functions have been implemented (because these can't be expressed with JSON Schema).
The following is error checks are performed:
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.cjval
is a library and has 3 different binaries:
cjval
to validate a CityJSON file (it downloads automatically Extensions)cjfval
to validate a CityJSON Lines file, that is a stream of CityJSONFeature (from stdin)cjvalext
to validate a CityJSON Extension filecargo install cjval --features build-binary
git clone https://github.com/cityjson/cjval.git
cargo build --release --features build-binary
(this will ensure the binaries are compiled too)./target/release/cjval myfile.json
The code is uses at https://validator.cityjson.org, it is compiled as a WebAssembly (WASM code here) and a simple GUI was built.
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": "2.0",
"extensions":
{
"Potato":
{
"url": "https://www.cityjson.org/extensions/potato.ext.json",
"version": "1.0"
}
}
...
then cjval
will fetch/download automatically the Extension schema files.
If instead you want to use your own local Extension schema(s), you can pass them as argument with the argument -e
and this will overwrite the automatic download:
$ cjval myfile.city.json -e ./myextensions/generic.ext.json
To validate a stream of CityJSONFeature (this uses cjio to generate a stream from a CityJSON file):
$ cjio --suppress_msg myfile.city.json export jsonl stdout | cjfval --verbose
and you'll get a short report per line (which is one CityJSON
or CityJSONFeature
).