Lines Matching refs:validate

5 It comes with a schema-driven script tool that can validate your data, or even generate code.
9 It can for example validate a YAML file against a schema and convert it into CBOR.
28 - Decode and validate incoming CBOR data into human-readable YAML/JSON.
111 The zcbor.py script can directly read CBOR, YAML, or JSON data and validate it against a CDDL descr…
122 See `zcbor validate --help` and `zcbor convert --help` for more information.
125 zcbor validate -c <CDDL description file> -t <which CDDL type to expect> -i <input data file>
132 python3 <zcbor base>/zcbor/zcbor.py validate -c <CDDL description file> -t <which CDDL type to expe…
154 This is controlled with the `--yaml-compatibility` option to `convert` and `validate`.
192 The generated code will validate the input, which means that it will check all the restriction set …
252 python3 <zcbor base>/zcbor/zcbor.py validate -c pet.cddl -t Pet --yaml-compatibility -i mypet.json
254 zcbor validate -c pet.cddl -t Pet --yaml-compatibility -i mypet.json
420 usage: zcbor [-h] [--version] {code,validate,convert} ...
422 Parse a CDDL file and validate/convert between YAML, JSON, and CBOR. Can also
426 {code,validate,convert}
549 zcbor validate --help
553 usage: zcbor validate [-h] -c CDDL [--no-prelude] [-v] -i INPUT
558 Read CBOR, YAML, or JSON data from file or stdin and validate it against a
609 Parse a CDDL file and validate/convert between CBOR and YAML/JSON. The script
612 conform. 'zcbor validate' can be used if only validate is needed.