Cribl · Schema

WorkspaceCreate

ConfigurationData LakeData PipelinesData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry

Properties

Name Type Description
name string Display name for the new workspace
description string A human-readable description
region string The cloud region for the workspace
View JSON Schema on GitHub

JSON Schema

cribl-workspacecreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkspaceCreate",
  "title": "WorkspaceCreate",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for the new workspace",
      "minLength": 1,
      "maxLength": 64
    },
    "description": {
      "type": "string",
      "description": "A human-readable description",
      "maxLength": 256
    },
    "region": {
      "type": "string",
      "description": "The cloud region for the workspace"
    }
  }
}