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