Neynar Hub API schema for Verification
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://neynar.com/schemas/hub/Verification", "title": "Hub Verification", "description": "Neynar Hub API schema for Verification", "allOf": [ { "$ref": "#/components/schemas/MessageCommon" }, { "type": "object", "properties": { "data": { "allOf": [ { "$ref": "#/components/schemas/MessageDataVerificationAdd" }, { "type": "object", "properties": { "type": { "$ref": "#/components/schemas/MessageType" } }, "required": [ "type" ] } ] } }, "required": [ "data" ] } ] }