| 1 | { |
| 2 | "$schema" "https://json-schema.org/draft/2020-12/schema", |
| 3 | "$id" "https://cascade.dev/intercom-wire/v1/payloads/message-edited.schema.json", |
| 4 | "title" "IntercomMessageEditedPayload", |
| 5 | "type" "object", |
| 6 | "required" ["message_id", "new_content", "reason"], |
| 7 | "properties" { |
| 8 | "message_id" { "type": "string" }, |
| 9 | "new_content" { "type": "string" }, |
| 10 | "reason" { "type": "string" } |
| 11 | }, |
| 12 | "additionalProperties" true |
| 13 | } |
| 14 |