{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/agave/refs/heads/main/json-structure/unified-api-vendor-list-structure.json", "name": "VendorList", "description": "Paginated list of vendors.", "type": "object", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/Vendor" }, "example": [ "example_value" ] }, "next_cursor": { "type": "string", "example": "eyJpZCI6MTIzfQ==" }, "count": { "type": "int32", "example": 50 } } }