Neynar · Schema

WebhookSecret

Neynar Farcaster API schema for WebhookSecret

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
created_at string
deleted_at string
expires_at string
uid string
updated_at string
value string
View JSON Schema on GitHub

JSON Schema

webhooksecret.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/WebhookSecret",
  "title": "WebhookSecret",
  "description": "Neynar Farcaster API schema for WebhookSecret",
  "properties": {
    "created_at": {
      "type": "string"
    },
    "deleted_at": {
      "nullable": true,
      "type": "string"
    },
    "expires_at": {
      "type": "string"
    },
    "uid": {
      "type": "string"
    },
    "updated_at": {
      "type": "string"
    },
    "value": {
      "type": "string"
    }
  },
  "required": [
    "uid",
    "value",
    "expires_at",
    "created_at",
    "updated_at",
    "deleted_at"
  ],
  "type": "object"
}