{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProxyRecordListResponse", "title": "ProxyRecordListResponse", "type": "object", "properties": { "results": { "type": "array", "items": { "$ref": "#/components/schemas/ProxyRecord" } }, "max_proxy_records": { "type": "integer", "description": "Maximum number of proxy records allowed for this organization's current plan." } }, "required": [ "max_proxy_records", "results" ] }