{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://raw.githubusercontent.com/amplience/dc-sample-blog-nextjs/master/schemas/text.json", "title": "Text", "description": "Text schema", "allOf": [ { "$ref": "http://bigcontent.io/cms/schema/v1/core#/definitions/content" } ], "type": "object", "properties": { "text": { "type": "string", "format": "markdown", "title": "Text", "description": "", "minLength": 1, "maxLength": 30000 } }, "propertyOrder": ["text"], "required": ["text"] }