{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormSummary", "title": "FormSummary", "type": "object", "additionalProperties": false, "required": [ "id", "name", "created_at", "updated_at" ], "properties": { "id": { "type": "string", "maxLength": 30, "format": "form-id" }, "name": { "type": "string", "minLength": 1, "maxLength": 150 }, "created_at": { "type": "string", "format": "date-time" }, "updated_at": { "type": "string", "format": "date-time" }, "embedded_at": { "type": "string", "format": "date" }, "submitted_at": { "type": "string", "format": "date" } } }