view test.sh @ 37:0f7b1f4c52ad

Simple general request type
author Chris Cannam
date Wed, 16 Mar 2016 16:58:25 +0000
parents 26f7e0bb39d6
children a5eb5ef2e92d
line wrap: on
line source
#!/bin/bash

set -eu

for ex in examples/*.json ; do
    echo "Checking $ex..." 1>&2
    jsonschema -i "$ex" schema/$(basename "$ex")
done