blob: d772fde3ec581d7b98ec1862e5e14af13e14262b [file] [log] [blame]
[
{
"description": "validate definition against metaschema",
"schema": {"$ref": "http://json-schema.org/draft-06/schema#"},
"tests": [
{
"description": "valid definition schema",
"data": {
"definitions": {
"foo": {"type": "integer"}
}
},
"valid": true
},
{
"description": "invalid definition schema",
"data": {
"definitions": {
"foo": {"type": 1}
}
},
"valid": false
}
]
}
]