|
5 | 5 | "outputItem": {
|
6 | 6 | "type": "object",
|
7 | 7 | "properties": {
|
8 |
| - "valid": {"type": "boolean"}, |
9 |
| - "keywordLocation": {"type": "string"}, |
| 8 | + "valid": { "type": "boolean" }, |
| 9 | + "keywordLocation": { "type": "string" }, |
10 | 10 | "absoluteKeywordLocation": {
|
11 | 11 | "type": "string",
|
12 | 12 | "format": "uri"
|
13 | 13 | },
|
14 |
| - "instanceLocation": {"type": "string"}, |
| 14 | + "instanceLocation": { "type": "string" }, |
15 | 15 | "annotations": {
|
16 | 16 | "type": "array",
|
17 |
| - "items": {"$ref": "#/definitions/outputItem"} |
| 17 | + "items": { "$ref": "#/definitions/outputItem" } |
18 | 18 | },
|
19 | 19 | "errors": {
|
20 | 20 | "type": "array",
|
21 |
| - "items": {"$ref": "#/definitions/outputItem"} |
| 21 | + "items": { "$ref": "#/definitions/outputItem" } |
22 | 22 | }
|
23 | 23 | }
|
24 | 24 | },
|
25 | 25 | "test": {
|
26 | 26 | "description": "A single test",
|
27 | 27 | "type": "object",
|
28 |
| - "required": ["description", "data", "valid"], |
| 28 | + "required": [ "description", "data", "valid" ], |
29 | 29 | "properties": {
|
30 | 30 | "id": {
|
31 | 31 | "description": "Uniquely identifies a single test",
|
32 | 32 | "type": "string",
|
33 | 33 | "format": "uri"
|
34 | 34 | },
|
35 |
| - "description": {"type": "string"}, |
| 35 | + "description": { "type": "string" }, |
36 | 36 | "data": {},
|
37 |
| - "valid": {"type": "boolean"}, |
| 37 | + "valid": { "type": "boolean" }, |
38 | 38 | "output": {
|
39 | 39 | "type": "object",
|
| 40 | + "required": [ "basic", "detailed", "verbose" ], |
40 | 41 | "properties": {
|
41 |
| - "basic": {"$ref": "#/definitions/outputItem"}, |
42 |
| - "detailed": {"$ref": "#/definitions/outputItem"}, |
43 |
| - "verbose": {"$ref": "#/definitions/outputItem"} |
44 |
| - }, |
45 |
| - "required": ["basic", "detailed", "verbose"] |
| 42 | + "basic": { "$ref": "#/definitions/outputItem" }, |
| 43 | + "detailed": { "$ref": "#/definitions/outputItem" }, |
| 44 | + "verbose": { "$ref": "#/definitions/outputItem" } |
| 45 | + } |
46 | 46 | }
|
47 | 47 | },
|
48 | 48 | "additionalProperties": false
|
|
51 | 51 | "type": "array",
|
52 | 52 | "items": {
|
53 | 53 | "type": "object",
|
54 |
| - "required": ["description", "schema", "tests"], |
| 54 | + "required": [ "description", "schema", "tests" ], |
55 | 55 | "properties": {
|
56 | 56 | "id": {
|
57 | 57 | "description": "Uniquely identifies a set of tests",
|
58 | 58 | "type": "string",
|
59 | 59 | "format": "uri"
|
60 | 60 | },
|
61 |
| - "description": {"type": "string"}, |
| 61 | + "description": { "type": "string" }, |
62 | 62 | "schema": {},
|
63 | 63 | "tests": {
|
64 | 64 | "description": "A set of related tests all using the same schema",
|
|
0 commit comments