rittenhop-dev/versions/5.94.2/node_modules/@tryghost/admin-api-schema/lib/schemas/pages-add.json

22 lines
472 B
JSON
Raw Normal View History

2024-09-23 19:40:12 -04:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "pages.add",
"title": "pages.add",
"description": "Schema for pages.add",
"type": "object",
"additionalProperties": false,
"properties": {
"pages": {
"type": "array",
"minItems": 1,
"maxItems": 1,
"items": {
"type": "object",
"allOf": [{ "$ref": "pages#/definitions/page" }],
"required": ["title"]
}
}
},
"required": ["pages"]
}