Databricks · Schema

GitSource

AIAnalyticsApache SparkBig DataClean RoomsCloud ComputingDataData AnalyticsData EngineeringData GovernanceDelta LakeDelta SharingETLIdentity ManagementLakehouseMachine LearningMLflowModel ServingSecuritySQLUnity CatalogVector SearchVisualize

Properties

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

JSON Schema

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",
        "gitLab",
        "azureDevOpsServices",
        "gitHubEnterprise",
        "bitbucketServer",
        "gitLabEnterpriseEdition",
        "awsCodeCommit"
      ],
      "description": "The Git provider.",
      "example": "gitHub"
    },
    "git_branch": {
      "type": "string",
      "description": "Branch to use.",
      "example": "example_value"
    },
    "git_tag": {
      "type": "string",
      "description": "Tag to use.",
      "example": "example_value"
    },
    "git_commit": {
      "type": "string",
      "description": "Commit hash to use.",
      "example": "example_value"
    }
  }
}