Cribl · Schema

DatabaseConnection

ConfigurationData LakeData PipelinesData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry

Properties

Name Type Description
id string Unique identifier for the database connection
connectionString string The database connection string
driver string The database driver type
description string A human-readable description
View JSON Schema on GitHub

JSON Schema

cribl-databaseconnection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatabaseConnection",
  "title": "DatabaseConnection",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the database connection"
    },
    "connectionString": {
      "type": "string",
      "description": "The database connection string"
    },
    "driver": {
      "type": "string",
      "description": "The database driver type"
    },
    "description": {
      "type": "string",
      "description": "A human-readable description"
    }
  }
}