{ "$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"] }