fix(Manifest): capitalize root property names

This commit is contained in:
Rodweil, Theodor 2023-08-07 00:20:15 +02:00
parent 956186c654
commit 2019f8c959
No known key found for this signature in database
GPG key ID: F8BC1B0EB1F9CCF5

View file

@ -5,13 +5,13 @@
],
"type": "object",
"properties": {
"pages": {
"Pages": {
"type": "array",
"item": {
"$ref": "#/definitions/page"
}
},
"attachments": {
"Attachments": {
"type": "array",
"item": {
"$ref": "#/definitions/attachment"
@ -19,8 +19,8 @@
}
},
"required": [
"pages",
"attachments"
"Pages",
"Attachments"
],
"definitions": {
"page": {