Atlassian · Schema

pipeline_variable

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

atlassian-pipeline-variable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/pipeline_variable",
  "title": "pipeline_variable",
  "allOf": [
    {
      "$ref": "#/components/schemas/object"
    },
    {
      "additionalProperties": true,
      "type": "object",
      "title": "Pipeline Variable",
      "description": "A Pipelines variable.",
      "properties": {
        "uuid": {
          "type": "string",
          "description": "The UUID identifying the variable."
        },
        "key": {
          "type": "string",
          "description": "The unique name of the variable."
        },
        "value": {
          "type": "string",
          "description": "The value of the variable. If the variable is secured, this will be empty."
        },
        "secured": {
          "type": "boolean",
          "description": "If true, this variable will be treated as secured. The value will never be exposed in the logs or the REST API."
        }
      }
    }
  ]
}