Apache Pinot · Schema

SegmentList

SegmentList schema from Apache Pinot

AnalyticsDatabaseLow LatencyOLAPReal-TimeApacheOpen Source

Properties

Name Type Description
OFFLINE array
REALTIME array
View JSON Schema on GitHub

JSON Schema

apache-pinot-segment-list-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-segment-list-schema.json",
  "title": "SegmentList",
  "description": "SegmentList schema from Apache Pinot",
  "type": "object",
  "properties": {
    "OFFLINE": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "REALTIME": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}