{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SpendBreakdownResponse", "title": "SpendBreakdownResponse", "properties": { "models": { "items": { "$ref": "#/components/schemas/ModelSpend" }, "type": "array" }, "totalCost": { "type": "number", "format": "double" }, "timeRange": { "properties": { "end": { "type": "string" }, "start": { "type": "string" } }, "required": [ "end", "start" ], "type": "object" } }, "required": [ "models", "totalCost", "timeRange" ], "type": "object", "additionalProperties": false }