Skip to content

Commit 48cec8f

Browse files
committed
Clean up some spacing
1 parent 62c4851 commit 48cec8f

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

test-schema.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -5,44 +5,44 @@
55
"outputItem": {
66
"type": "object",
77
"properties": {
8-
"valid": {"type": "boolean"},
9-
"keywordLocation": {"type": "string"},
8+
"valid": { "type": "boolean" },
9+
"keywordLocation": { "type": "string" },
1010
"absoluteKeywordLocation": {
1111
"type": "string",
1212
"format": "uri"
1313
},
14-
"instanceLocation": {"type": "string"},
14+
"instanceLocation": { "type": "string" },
1515
"annotations": {
1616
"type": "array",
17-
"items": {"$ref": "#/definitions/outputItem"}
17+
"items": { "$ref": "#/definitions/outputItem" }
1818
},
1919
"errors": {
2020
"type": "array",
21-
"items": {"$ref": "#/definitions/outputItem"}
21+
"items": { "$ref": "#/definitions/outputItem" }
2222
}
2323
}
2424
},
2525
"test": {
2626
"description": "A single test",
2727
"type": "object",
28-
"required": ["description", "data", "valid"],
28+
"required": [ "description", "data", "valid" ],
2929
"properties": {
3030
"id": {
3131
"description": "Uniquely identifies a single test",
3232
"type": "string",
3333
"format": "uri"
3434
},
35-
"description": {"type": "string"},
35+
"description": { "type": "string" },
3636
"data": {},
37-
"valid": {"type": "boolean"},
37+
"valid": { "type": "boolean" },
3838
"output": {
3939
"type": "object",
40+
"required": [ "basic", "detailed", "verbose" ],
4041
"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+
}
4646
}
4747
},
4848
"additionalProperties": false
@@ -51,14 +51,14 @@
5151
"type": "array",
5252
"items": {
5353
"type": "object",
54-
"required": ["description", "schema", "tests"],
54+
"required": [ "description", "schema", "tests" ],
5555
"properties": {
5656
"id": {
5757
"description": "Uniquely identifies a set of tests",
5858
"type": "string",
5959
"format": "uri"
6060
},
61-
"description": {"type": "string"},
61+
"description": { "type": "string" },
6262
"schema": {},
6363
"tests": {
6464
"description": "A set of related tests all using the same schema",

0 commit comments

Comments
 (0)