DataSchema 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-data-schema-schema.json", "title": "DataSchema", "description": "DataSchema schema from Apache Pinot", "type": "object", "properties": { "columnNames": { "type": "array", "items": { "type": "string" }, "example": [ "count(*)" ] }, "columnDataTypes": { "type": "array", "items": { "type": "string" }, "example": [ "LONG" ] } } }