Neynar Farcaster API schema for FeedResponse
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://neynar.com/schemas/FeedResponse", "title": "FeedResponse", "description": "Neynar Farcaster API schema for FeedResponse", "properties": { "casts": { "items": { "$ref": "#/components/schemas/Cast" }, "type": "array" }, "next": { "$ref": "#/components/schemas/NextCursor" } }, "required": [ "casts", "next" ], "type": "object" }