Neynar · Schema

Hub Verification

Neynar Hub API schema for Verification

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain
View JSON Schema on GitHub

JSON Schema

hub-verification.json Raw ↑
{
  "$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"
      ]
    }
  ]
}