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", "type": "object",
"properties": { "properties": {
"pages": { "Pages": {
"type": "array", "type": "array",
"item": { "item": {
"$ref": "#/definitions/page" "$ref": "#/definitions/page"
} }
}, },
"attachments": { "Attachments": {
"type": "array", "type": "array",
"item": { "item": {
"$ref": "#/definitions/attachment" "$ref": "#/definitions/attachment"
@ -19,8 +19,8 @@
} }
}, },
"required": [ "required": [
"pages", "Pages",
"attachments" "Attachments"
], ],
"definitions": { "definitions": {
"page": { "page": {