{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Stardate Log", "description": "Dated log entries on a numeric stardate rail.", "type": "object", "properties": { "eyebrow": { "type": "string", "title": "Eyebrow", "x-editor": "text" }, "heading": { "type": "string", "title": "Heading", "x-editor": "text" }, "entries": { "type": "array", "title": "Log entries", "x-editor": "collection", "items": { "type": "object", "properties": { "stardate": { "type": "string", "title": "Stardate", "x-editor": "text" }, "title": { "type": "string", "title": "Entry title", "x-editor": "text" }, "text": { "type": "string", "title": "Entry", "x-editor": "textarea" } } } } } }