Apache Pinot · JSON Structure

Apache Pinot Data Schema Structure

DataSchema schema from Apache Pinot

Type: object Properties: 2
AnalyticsDatabaseLow LatencyOLAPReal-TimeApacheOpen Source

DataSchema is a JSON Structure definition published by Apache Pinot, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

columnNames columnDataTypes

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-pinot/refs/heads/main/json-structure/apache-pinot-data-schema-structure.json",
  "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"
      ]
    }
  },
  "name": "DataSchema"
}