Neynar · Schema

ConversationSummary

Neynar Farcaster API schema for ConversationSummary

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
summary object
View JSON Schema on GitHub

JSON Schema

conversationsummary.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/ConversationSummary",
  "title": "ConversationSummary",
  "description": "Neynar Farcaster API schema for ConversationSummary",
  "properties": {
    "summary": {
      "properties": {
        "mentioned_profiles": {
          "description": "Users who were mentioned in a conversation thread",
          "items": {
            "$ref": "#/components/schemas/User"
          },
          "type": "array"
        },
        "participants": {
          "description": "Users who casted in a conversation thread",
          "items": {
            "$ref": "#/components/schemas/User"
          },
          "type": "array"
        },
        "text": {
          "description": "Summary generated by an LLM",
          "type": "string"
        }
      },
      "required": [
        "text",
        "participants",
        "mentioned_profiles"
      ],
      "type": "object"
    }
  },
  "required": [
    "summary"
  ],
  "type": "object"
}