Response schema for active breakpoints endpoint
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ActiveBreakpointsResponse", "title": "ActiveBreakpointsResponse", "type": "object", "description": "Response schema for active breakpoints endpoint", "properties": { "breakpoints": { "type": "array", "items": { "$ref": "#/components/schemas/ActiveBreakpoint" }, "description": "List of active breakpoints" } }, "required": [ "breakpoints" ] }