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