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