Cribl · Schema

Lookup

ConfigurationData LakeData PipelinesData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry

Properties

Name Type Description
id string Unique identifier for the lookup
type string The lookup type such as file or database
fileInfo object File-based lookup metadata
description string A human-readable description of the lookup
View JSON Schema on GitHub

JSON Schema

cribl-lookup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Lookup",
  "title": "Lookup",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the lookup"
    },
    "type": {
      "type": "string",
      "description": "The lookup type such as file or database"
    },
    "fileInfo": {
      "type": "object",
      "description": "File-based lookup metadata",
      "properties": {
        "filename": {
          "type": "string",
          "description": "The lookup filename"
        },
        "size": {
          "type": "integer",
          "description": "The file size in bytes"
        }
      }
    },
    "description": {
      "type": "string",
      "description": "A human-readable description of the lookup"
    }
  }
}