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