Neynar · Schema

ZodError

Neynar Farcaster API schema for ZodError

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
code string
errors array
message string
View JSON Schema on GitHub

JSON Schema

zoderror.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/ZodError",
  "title": "ZodError",
  "description": "Neynar Farcaster API schema for ZodError",
  "properties": {
    "code": {
      "example": "InvalidField",
      "type": "string"
    },
    "errors": {
      "items": {
        "properties": {
          "code": {
            "type": "string"
          },
          "expected": {
            "type": "string"
          },
          "message": {
            "type": "string"
          },
          "path": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "received": {
            "type": "string"
          }
        },
        "required": [
          "code",
          "expected",
          "received",
          "path",
          "message"
        ],
        "type": "object"
      },
      "type": "array"
    },
    "message": {
      "example": "Invalid query parameters",
      "type": "string"
    }
  },
  "required": [
    "message",
    "code",
    "errors"
  ],
  "type": "object"
}