cf935a321532a6bd7e801437f765bd9ce88a390b
[c11concurrency-benchmarks.git] / gdax-orderbook-hpp / demo / dependencies / rapidjson-1.1.0 / bin / jsonschema / tests / draft4 / definitions.json
1 [
2     {
3         "description": "valid definition",
4         "schema": {"$ref": "http://json-schema.org/draft-04/schema#"},
5         "tests": [
6             {
7                 "description": "valid definition schema",
8                 "data": {
9                     "definitions": {
10                         "foo": {"type": "integer"}
11                     }
12                 },
13                 "valid": true
14             }
15         ]
16     },
17     {
18         "description": "invalid definition",
19         "schema": {"$ref": "http://json-schema.org/draft-04/schema#"},
20         "tests": [
21             {
22                 "description": "invalid definition schema",
23                 "data": {
24                     "definitions": {
25                         "foo": {"type": 1}
26                     }
27                 },
28                 "valid": false
29             }
30         ]
31     }
32 ]