Cribl · Schema

ApiCredential

ConfigurationData LakeData PipelinesData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry

Properties

Name Type Description
id string Unique identifier for the API credential
clientId string The OAuth 2.0 client ID
description string A human-readable description of the credential
organizationId string The parent organization identifier
createdAt string Credential creation timestamp
updatedAt string Credential last update timestamp
View JSON Schema on GitHub

JSON Schema

cribl-apicredential-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiCredential",
  "title": "ApiCredential",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the API credential"
    },
    "clientId": {
      "type": "string",
      "description": "The OAuth 2.0 client ID"
    },
    "description": {
      "type": "string",
      "description": "A human-readable description of the credential"
    },
    "organizationId": {
      "type": "string",
      "description": "The parent organization identifier"
    },
    "createdAt": {
      "type": "string",
      "description": "Credential creation timestamp",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "description": "Credential last update timestamp",
      "format": "date-time"
    }
  }
}