{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Results", "title": "Results", "additionalProperties": false, "properties": { "total_count": { "title": "Total Count", "type": "number" }, "values": { "items": { "$ref": "#/components/schemas/BreakdownValue" }, "title": "Values", "type": "array" } }, "required": [ "total_count", "values" ], "type": "object" }