Neynar · Schema

WebhookPostReqBody

Neynar Farcaster API schema for WebhookPostReqBody

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
name string
subscription object
url string
View JSON Schema on GitHub

JSON Schema

webhookpostreqbody.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/WebhookPostReqBody",
  "title": "WebhookPostReqBody",
  "description": "Neynar Farcaster API schema for WebhookPostReqBody",
  "properties": {
    "name": {
      "type": "string"
    },
    "subscription": {
      "$ref": "#/components/schemas/WebhookSubscriptionFilters"
    },
    "url": {
      "type": "string"
    }
  },
  "required": [
    "name",
    "url"
  ],
  "type": "object"
}