Cribl · Schema

GitSettings

ConfigurationData LakeData PipelinesData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry

Properties

Name Type Description
enabled boolean Whether Git integration is enabled
repoUrl string The Git repository URL
branch string The Git branch to use
authType string The authentication method for Git
autoSync boolean Whether to automatically sync with Git
View JSON Schema on GitHub

JSON Schema

cribl-gitsettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GitSettings",
  "title": "GitSettings",
  "type": "object",
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Whether Git integration is enabled"
    },
    "repoUrl": {
      "type": "string",
      "description": "The Git repository URL"
    },
    "branch": {
      "type": "string",
      "description": "The Git branch to use"
    },
    "authType": {
      "type": "string",
      "description": "The authentication method for Git",
      "enum": [
        "none",
        "token",
        "ssh"
      ]
    },
    "autoSync": {
      "type": "boolean",
      "description": "Whether to automatically sync with Git"
    }
  }
}