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