All Downloads are FREE. Search and download functionalities are using the official Maven repository.

json.schema.security.credentials.bitbucketCredentials.json Maven / Gradle / Ivy

There is a newer version: 1.6.0-rc1
Show newest version
{
  "$id": "https://open-metadata.org/schema/security/credentials/bitbucketCredentials.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BitBucketCredentials",
  "description": "Credentials for a BitBucket repository",
  "type": "object",
  "javaType": "org.openmetadata.schema.security.credentials.BitBucketCredentials",
  "definitions": {
    "bitbucketType": {
      "description": "BitBucket Credentials type",
      "type": "string",
      "enum": ["BitBucket"],
      "default": "BitBucket"
    }
  },
  "properties": {
    "type": {
      "title": "Credentials Type",
      "description": "Credentials Type",
      "$ref": "#/definitions/bitbucketType",
      "default": "BitBucket"
    },
    "repositoryOwner": {
      "$ref": "gitCredentials.json#/definitions/repositoryOwner"
    },
    "repositoryName": {
      "$ref": "gitCredentials.json#/definitions/repositoryName"
    },
    "token": {
      "$ref": "gitCredentials.json#/definitions/token"
    },
    "branch": {
      "title": "Main Branch",
      "description": "Main production branch of the repository. E.g., `main`",
      "type": "string"
    }
  },
  "additionalProperties": false,
  "required": ["repositoryOwner", "repositoryName", "branch"]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy