summaryrefslogtreecommitdiffstats
path: root/contacts_validation/scripts/validate-schema.sh
blob: 2aad40b56cef43060356d2742ccf9c283c77eee4 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
set -eux
mkdir -p tmp
cp ../contacts_schema.yaml tmp/myschema.yaml
convert-yaml2json tmp/myschema.yaml
#python3 -m jsonschema -i tmp/myschema.yaml.json draft4_strict.json
python3 -m jsonschema -i tmp/myschema.yaml.json draft4.json
rm -r tmp