{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.commonroom.io/schemas/v2/prospectorcontactlist", "title": "ProspectorContactList", "type": "object", "required": [ "success", "data", "meta" ], "properties": { "success": { "type": "boolean", "enum": [ true ] }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/ApiProspectorContact" } }, "meta": { "type": "object", "properties": { "nextCursor": { "type": "string", "nullable": true, "description": "Cursor for pagination; pass as the `cursor` query parameter to fetch the next page." }, "recordCount": { "type": "integer", "description": "Total number of records matching the query. Only returned when `cols=recordCount` is requested." } } } } }