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