Apache Pinot · JSON Structure

Apache Pinot Schema Structure

Schema schema from Apache Pinot

Type: object Properties: 4
AnalyticsDatabaseLow LatencyOLAPReal-TimeApacheOpen Source

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

Properties

schemaName dimensionFieldSpecs metricFieldSpecs dateTimeFieldSpecs

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-schema-structure.json",
  "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"
      }
    }
  },
  "name": "Schema"
}