{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://neynar.com/schemas/hub/HubEventMergeMessage", "title": "Hub HubEventMergeMessage", "description": "Neynar Hub API schema for HubEventMergeMessage", "type": "object", "properties": { "type": { "type": "string", "example": "HUB_EVENT_TYPE_MERGE_MESSAGE" }, "id": { "type": "integer", "format": "uint64" }, "mergeMessageBody": { "$ref": "#/components/schemas/MergeMessageBody" } }, "required": [ "type", "id", "mergeMessageBody" ] }