OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "namespace": "tester", | 3 "namespace": "tester", |
| 4 "description": "a test api", |
| 5 "availability": "eventually", |
4 "types": [ | 6 "types": [ |
5 { | 7 { |
6 "id": "TypeA", | 8 "id": "TypeA", |
7 "type": "object", | 9 "type": "object", |
8 "description": "A cool thing.", | 10 "description": "A cool thing.", |
9 "properties": { | 11 "properties": { |
10 "a": {"nodoc": true, "type": "string", "minimum": 0}, | 12 "a": {"nodoc": true, "type": "string", "minimum": 0}, |
11 "b": {"type": "array", "optional": true, "items": {"$ref": "TypeA"}, "
description": "List of TypeA."} | 13 "b": {"type": "array", "optional": true, "items": {"$ref": "TypeA"}, "
description": "List of TypeA."} |
12 } | 14 } |
13 } | 15 } |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 {"type": "string", "name": "id"}, | 47 {"type": "string", "name": "id"}, |
46 { | 48 { |
47 "$ref": "TypeA", | 49 "$ref": "TypeA", |
48 "name": "bookmark" | 50 "name": "bookmark" |
49 } | 51 } |
50 ] | 52 ] |
51 } | 53 } |
52 ] | 54 ] |
53 } | 55 } |
54 ] | 56 ] |
OLD | NEW |