{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Breakdown", "title": "Breakdown", "additionalProperties": false, "properties": { "group_type_index": { "default": null, "title": "Group Type Index", "type": "integer", "nullable": true }, "histogram_bin_count": { "default": null, "title": "Histogram Bin Count", "type": "integer", "nullable": true }, "normalize_url": { "default": null, "title": "Normalize Url", "type": "boolean", "nullable": true }, "property": { "anyOf": [ { "type": "string" }, { "type": "integer" } ], "title": "Property" }, "type": { "default": null, "allOf": [ { "$ref": "#/components/schemas/MultipleBreakdownType" } ], "nullable": true } }, "required": [ "property" ], "type": "object" }