{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventTaxonomyItem", "title": "EventTaxonomyItem", "additionalProperties": false, "properties": { "property": { "title": "Property", "type": "string" }, "sample_count": { "title": "Sample Count", "type": "integer" }, "sample_values": { "items": { "type": "string" }, "title": "Sample Values", "type": "array" } }, "required": [ "property", "sample_count", "sample_values" ], "type": "object" }