Atlassian · Schema

pipeline_ssh_key_pair

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

atlassian-pipeline-ssh-key-pair-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/pipeline_ssh_key_pair",
  "title": "pipeline_ssh_key_pair",
  "allOf": [
    {
      "$ref": "#/components/schemas/object"
    },
    {
      "additionalProperties": true,
      "type": "object",
      "title": "Pipeline SSH Key Pair",
      "description": "A Pipelines SSH key pair.",
      "properties": {
        "private_key": {
          "type": "string",
          "description": "The SSH private key. This value will be empty when retrieving the SSH key pair."
        },
        "public_key": {
          "type": "string",
          "description": "The SSH public key."
        }
      }
    }
  ]
}