{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/submission", "title": "submission", "type": "object", "properties": { "id": { "type": "string" }, "number": { "type": "integer", "format": "int32" }, "email": { "type": "string" }, "name": { "type": "string" }, "first_name": { "type": "string" }, "last_name": { "type": "string" }, "company": { "type": "string" }, "summary": { "type": "string" }, "body": { "type": "string" }, "data": { "type": "object", "properties": {} }, "created_at": { "type": "string", "format": "dateTime" }, "site_url": { "type": "string" } } }