{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/KmsComment", "title": "KmsComment", "properties": { "content": { "type": "string" }, "content_type": { "enum": [ "HTML", "MARKDOWN", "TEXT", "OTHER" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "created_at": { "format": "date-time", "type": "string" }, "id": { "type": "string" }, "page_id": { "type": "string" }, "parent_id": { "type": "string" }, "raw": { "additionalProperties": true, "type": "object" }, "type": { "enum": [ "PAGE_INLINE", "PAGE" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "updated_at": { "format": "date-time", "type": "string" }, "user_id": { "type": "string" } }, "required": [ "content" ], "type": "object" }