Schema schema from Apache Pinot
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/apache-pinot/refs/heads/main/json-schema/apache-pinot-schema-schema.json", "title": "Schema", "description": "Schema schema from Apache Pinot", "type": "object", "properties": { "schemaName": { "type": "string", "example": "airlineStats" }, "dimensionFieldSpecs": { "type": "array", "items": { "$ref": "#/components/schemas/FieldSpec" } }, "metricFieldSpecs": { "type": "array", "items": { "$ref": "#/components/schemas/FieldSpec" } }, "dateTimeFieldSpecs": { "type": "array", "items": { "$ref": "#/components/schemas/FieldSpec" } } } }