{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BreakdownValue", "title": "BreakdownValue", "additionalProperties": false, "properties": { "count": { "title": "Count", "type": "number" }, "value": { "title": "Value", "type": "string" } }, "required": [ "count", "value" ], "type": "object" }