{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-api_key_list-schema.json", "title": "API Key List Schema", "type": "object", "properties": { "count": { "type": "integer" }, "limit": { "type": "integer", "default": 10 }, "offset": { "type": "integer", "default": 0 }, "api_key": { "type": "array", "items": { "$ref": "#/components/schemas/api_key" } } }, "required": [ "count", "limit", "offset", "api_key" ] }