Apache Pinot · Schema

Schema

Schema schema from Apache Pinot

AnalyticsDatabaseLow LatencyOLAPReal-TimeApacheOpen Source

Properties

Name Type Description
schemaName string
dimensionFieldSpecs array
metricFieldSpecs array
dateTimeFieldSpecs array
View JSON Schema on GitHub

JSON Schema

apache-pinot-schema-schema.json Raw ↑
{
  "$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"
      }
    }
  }
}