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