Azure Databricks · Schema

Job

AnalyticsApache SparkBig DataData EngineeringMachine Learning

Properties

Name Type Description
job_id integer Canonical identifier of the job
creator_user_name string Username of the job creator
run_as_user_name string User the job runs as
created_time integer Time the job was created (epoch milliseconds)
View JSON Schema on GitHub

JSON Schema

azure-databricks-job-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Job",
  "type": "object",
  "properties": {
    "job_id": {
      "type": "integer",
      "description": "Canonical identifier of the job"
    },
    "creator_user_name": {
      "type": "string",
      "description": "Username of the job creator"
    },
    "run_as_user_name": {
      "type": "string",
      "description": "User the job runs as"
    },
    "created_time": {
      "type": "integer",
      "description": "Time the job was created (epoch milliseconds)"
    }
  }
}