Cribl · Schema

LakeDataset

ConfigurationData LakeData PipelinesData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry

Properties

Name Type Description
id string Unique identifier for the Lake dataset
name string Display name of the dataset
description string A human-readable description of the dataset
retentionDays integer Number of days to retain data
format string The storage format for the dataset
View JSON Schema on GitHub

JSON Schema

cribl-lakedataset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LakeDataset",
  "title": "LakeDataset",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the Lake dataset"
    },
    "name": {
      "type": "string",
      "description": "Display name of the dataset"
    },
    "description": {
      "type": "string",
      "description": "A human-readable description of the dataset"
    },
    "retentionDays": {
      "type": "integer",
      "description": "Number of days to retain data"
    },
    "format": {
      "type": "string",
      "description": "The storage format for the dataset"
    }
  }
}