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