{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SeriesResponse", "title": "SeriesResponse", "type": "object", "required": [ "status", "data" ], "properties": { "status": { "type": "string", "enum": [ "success" ] }, "data": { "type": "array", "items": { "type": "object", "additionalProperties": { "type": "string" } }, "description": "Array of label sets" }, "warnings": { "type": "array", "items": { "type": "string" } } } }