Neynar · Schema

Hub ValidateMessageResponse

Neynar Hub API schema for ValidateMessageResponse

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
valid boolean
message object
View JSON Schema on GitHub

JSON Schema

hub-validatemessageresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/hub/ValidateMessageResponse",
  "title": "Hub ValidateMessageResponse",
  "description": "Neynar Hub API schema for ValidateMessageResponse",
  "type": "object",
  "properties": {
    "valid": {
      "type": "boolean"
    },
    "message": {
      "$ref": "#/components/schemas/Message"
    }
  },
  "required": [
    "valid",
    "message"
  ]
}