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

microsoft-azure-databricks-gitsource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GitSource",
  "title": "GitSource",
  "type": "object",
  "required": [
    "git_url",
    "git_provider"
  ],
  "properties": {
    "git_url": {
      "type": "string",
      "description": "URL of the Git repository",
      "example": "https://www.example.com"
    },
    "git_provider": {
      "type": "string",
      "enum": [
        "gitHub",
        "bitbucketCloud",
        "azureDevOpsServices",
        "gitHubEnterprise",
        "bitbucketServer",
        "gitLab",
        "gitLabEnterpriseEdition",
        "awsCodeCommit"
      ],
      "description": "Git provider type",
      "example": "gitHub"
    },
    "git_branch": {
      "type": "string",
      "description": "Branch to check out",
      "example": "example_value"
    },
    "git_tag": {
      "type": "string",
      "description": "Tag to check out",
      "example": "example_value"
    },
    "git_commit": {
      "type": "string",
      "description": "Commit hash to check out",
      "example": "example_value"
    }
  }
}