Cribl · Schema

Function

ConfigurationData LakeData PipelinesData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry

Properties

Name Type Description
id string Unique identifier for the function type
category string The function category
description string A human-readable description of the function
conf object The configuration schema for the function
View JSON Schema on GitHub

JSON Schema

cribl-function-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Function",
  "title": "Function",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the function type"
    },
    "category": {
      "type": "string",
      "description": "The function category"
    },
    "description": {
      "type": "string",
      "description": "A human-readable description of the function"
    },
    "conf": {
      "type": "object",
      "description": "The configuration schema for the function"
    }
  }
}