Atlassian · Schema

pipeline_ssh_public_key

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

atlassian-pipeline-ssh-public-key-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/pipeline_ssh_public_key",
  "title": "pipeline_ssh_public_key",
  "allOf": [
    {
      "$ref": "#/components/schemas/object"
    },
    {
      "additionalProperties": true,
      "type": "object",
      "title": "Pipeline SSH Public Key",
      "description": "A Pipelines known host public key.",
      "properties": {
        "key_type": {
          "type": "string",
          "description": "The type of the public key."
        },
        "key": {
          "type": "string",
          "description": "The base64 encoded public key."
        },
        "md5_fingerprint": {
          "type": "string",
          "description": "The MD5 fingerprint of the public key."
        },
        "sha256_fingerprint": {
          "type": "string",
          "description": "The SHA-256 fingerprint of the public key."
        }
      }
    }
  ]
}