Skip to content

Commit 7f7aa98

Browse files
committed
Fix schema key sort order
1 parent 7742c64 commit 7f7aa98

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

schemas/data.schema.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,22 @@
160160
"required": ["name"],
161161
"additionalProperties": false
162162
},
163+
"Release": {
164+
"description": "Browser release information",
165+
"type": "object",
166+
"properties": {
167+
"version": {
168+
"description": "The version string, as in \"10\" or \"17.1\"",
169+
"type": "string"
170+
},
171+
"date": {
172+
"description": " The release date, as in \"2023-12-11\"",
173+
"type": "string"
174+
}
175+
},
176+
"required": ["version", "date"],
177+
"additionalProperties": false
178+
},
163179
"Status": {
164180
"type": "object",
165181
"properties": {
@@ -224,22 +240,6 @@
224240
}
225241
]
226242
},
227-
"Release": {
228-
"description": "Browser release information",
229-
"type": "object",
230-
"properties": {
231-
"version": {
232-
"description": "The version string, as in \"10\" or \"17.1\"",
233-
"type": "string"
234-
},
235-
"date": {
236-
"description": " The release date, as in \"2023-12-11\"",
237-
"type": "string"
238-
}
239-
},
240-
"required": ["version", "date"],
241-
"additionalProperties": false
242-
},
243243
"SnapshotData": {
244244
"type": "object",
245245
"properties": {

0 commit comments

Comments
 (0)