Azure Databricks · Schema

JobCluster

AnalyticsApache SparkBig DataData EngineeringMachine Learning

Properties

Name Type Description
job_cluster_key string Unique key identifying this cluster specification
new_cluster object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-databricks-jobcluster-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JobCluster",
  "title": "JobCluster",
  "type": "object",
  "required": [
    "job_cluster_key",
    "new_cluster"
  ],
  "properties": {
    "job_cluster_key": {
      "type": "string",
      "description": "Unique key identifying this cluster specification",
      "example": "example_value"
    },
    "new_cluster": {
      "$ref": "#/components/schemas/CreateClusterRequest"
    }
  }
}