binctr/vendor/github.com/opencontainers/runtime-spec/schema
Jess Frazelle 94d1cfbfbf
update vendor
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-09-25 12:27:46 -04:00
..
test update vendor 2018-09-25 12:27:46 -04:00
config-linux.json update vendor 2018-09-25 12:27:46 -04:00
config-schema.json update vendor 2018-09-25 12:27:46 -04:00
config-solaris.json update vendor 2018-09-25 12:27:46 -04:00
config-windows.json update vendor 2018-09-25 12:27:46 -04:00
defs-linux.json update vendor 2018-09-25 12:27:46 -04:00
defs.json update vendor 2018-09-25 12:27:46 -04:00
Makefile update vendor 2018-09-25 12:27:46 -04:00
README.md update vendor 2018-09-25 12:27:46 -04:00
state-schema.json update vendor 2018-09-25 12:27:46 -04:00
validate.go update vendor 2018-09-25 12:27:46 -04:00

JSON schema

Overview

This directory contains the JSON Schema for validating JSON covered by this specification.

The layout of the files is as follows:

Utility

There is also included a simple utility for facilitating validation. To build it:

export GOPATH=`mktemp -d`
go get -d ./...
go build ./validate.go
rm -rf $GOPATH

Or you can just use make command to create the utility:

make validate

Then use it like:

./validate config-schema.json <yourpath>/config.json

Or like:

./validate https://raw.githubusercontent.com/opencontainers/runtime-spec/v1.0.0/schema/schema.json <yourpath>/config.json