Skip to content
This repository was archived by the owner on Nov 2, 2023. It is now read-only.

Commit 6920f2b

Browse files
fgenickl-
authored andcommitted
draft-04/schema: cosmetic: fix whitespaces
1 parent 2ea7552 commit 6920f2b

File tree

1 file changed

+32
-32
lines changed

1 file changed

+32
-32
lines changed

draft-04/schema

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema" : "http://json-schema.org/draft-04/schema#",
33
"id" : "http://json-schema.org/draft-04/schema#",
44
"type" : "object",
5-
5+
66
"properties" : {
77
"type" : {
88
"type" : ["string", "array"],
@@ -12,15 +12,15 @@
1212
"uniqueItems" : true,
1313
"default" : "any"
1414
},
15-
15+
1616
"disallow" : {
1717
"type" : ["string", "array"],
1818
"items" : {
1919
"type" : ["string", {"$ref" : "#"}]
2020
},
2121
"uniqueItems" : true
2222
},
23-
23+
2424
"extends" : {
2525
"type" : [{"$ref" : "#"}, "array"],
2626
"items" : {"$ref" : "#"},
@@ -32,108 +32,108 @@
3232
"minItems" : 1,
3333
"uniqueItems" : true
3434
},
35-
35+
3636
"minimum" : {
3737
"type" : "number"
3838
},
39-
39+
4040
"maximum" : {
4141
"type" : "number"
4242
},
43-
43+
4444
"exclusiveMinimum" : {
4545
"type" : "boolean",
4646
"default" : false
4747
},
48-
48+
4949
"exclusiveMaximum" : {
5050
"type" : "boolean",
5151
"default" : false
5252
},
53-
53+
5454
"divisibleBy" : {
5555
"type" : "number",
5656
"minimum" : 0,
5757
"exclusiveMinimum" : true,
5858
"default" : 1
5959
},
60-
60+
6161
"minLength" : {
6262
"type" : "integer",
6363
"minimum" : 0,
6464
"default" : 0
6565
},
66-
66+
6767
"maxLength" : {
6868
"type" : "integer"
6969
},
70-
70+
7171
"pattern" : {
7272
"type" : "string"
7373
},
74-
74+
7575
"items" : {
7676
"type" : [{"$ref" : "#"}, "array"],
7777
"items" : {"$ref" : "#"},
7878
"default" : {}
7979
},
80-
80+
8181
"additionalItems" : {
8282
"type" : [{"$ref" : "#"}, "boolean"],
8383
"default" : {}
8484
},
85-
85+
8686
"minItems" : {
8787
"type" : "integer",
8888
"minimum" : 0,
8989
"default" : 0
9090
},
91-
91+
9292
"maxItems" : {
9393
"type" : "integer",
9494
"minimum" : 0
9595
},
96-
96+
9797
"uniqueItems" : {
9898
"type" : "boolean",
9999
"default" : false
100100
},
101-
101+
102102
"properties" : {
103103
"type" : "object",
104104
"additionalProperties" : {"$ref" : "#"},
105105
"default" : {}
106106
},
107-
107+
108108
"patternProperties" : {
109109
"type" : "object",
110110
"additionalProperties" : {"$ref" : "#"},
111111
"default" : {}
112112
},
113-
113+
114114
"additionalProperties" : {
115115
"type" : [{"$ref" : "#"}, "boolean"],
116116
"default" : {}
117117
},
118-
118+
119119
"minProperties" : {
120120
"type" : "integer",
121121
"minimum" : 0,
122122
"default" : 0
123123
},
124-
124+
125125
"maxProperties" : {
126126
"type" : "integer",
127127
"minimum" : 0
128128
},
129-
129+
130130
"required" : {
131131
"type" : "array",
132132
"items" : {
133133
"type" : "string"
134134
}
135135
},
136-
136+
137137
"dependencies" : {
138138
"type" : "object",
139139
"additionalProperties" : {
@@ -144,36 +144,36 @@
144144
},
145145
"default" : {}
146146
},
147-
147+
148148
"id" : {
149149
"type" : "string"
150150
},
151-
151+
152152
"$ref" : {
153153
"type" : "string"
154154
},
155-
155+
156156
"$schema" : {
157157
"type" : "string"
158158
},
159-
159+
160160
"title" : {
161161
"type" : "string"
162162
},
163-
163+
164164
"description" : {
165165
"type" : "string"
166166
},
167-
167+
168168
"default" : {
169169
"type" : "any"
170170
}
171171
},
172-
172+
173173
"dependencies" : {
174174
"exclusiveMinimum" : "minimum",
175175
"exclusiveMaximum" : "maximum"
176176
},
177-
177+
178178
"default" : {}
179-
}
179+
}

0 commit comments

Comments
 (0)