{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Conversation", "title": "Conversation", "type": "object", "properties": { "type": { "type": "string" }, "id": { "type": "string" }, "title": { "type": "string" }, "created_at": { "type": "integer" }, "updated_at": { "type": "integer" }, "state": { "type": "string" }, "open": { "type": "boolean" }, "priority": { "type": "string" } } }