{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "pages.edit", "title": "pages.edit", "description": "Schema for pages.edit", "type": "object", "additionalProperties": false, "properties": { "pages": { "type": "array", "minItems": 1, "maxItems": 1, "items": { "type": "object", "allOf": [{ "$ref": "pages#/definitions/page" }], "required": ["updated_at"] } } }, "required": ["pages"] }