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