Azure Databricks · Schema

GitSource

AnalyticsApache SparkBig DataData EngineeringMachine Learning

Properties

Name Type Description
git_url string URL of the Git repository
git_provider string Git provider type
git_branch string Branch to check out
git_tag string Tag to check out
git_commit string Commit hash to check out
View JSON Schema on GitHub

JSON Schema

azure-databricks-git-source-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "GitSource",
  "type": "object",
  "properties": {
    "git_url": {
      "type": "string",
      "description": "URL of the Git repository"
    },
    "git_provider": {
      "type": "string",
      "description": "Git provider type"
    },
    "git_branch": {
      "type": "string",
      "description": "Branch to check out"
    },
    "git_tag": {
      "type": "string",
      "description": "Tag to check out"
    },
    "git_commit": {
      "type": "string",
      "description": "Commit hash to check out"
    }
  }
}