{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaginatedNodeBalancerConfigList", "title": "PaginatedNodeBalancerConfigList", "allOf": [ { "$ref": "#/components/schemas/Pagination" }, { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer" }, "port": { "type": "integer" }, "protocol": { "type": "string" }, "algorithm": { "type": "string" }, "stickiness": { "type": "string" }, "check": { "type": "string" } } } } } } ] }