Azure DevOps · Schema

ConfigurationVariableValue

A variable value in a release definition or release

AgileCI/CDDevOpsProject ManagementVersion Control

Properties

Name Type Description
value string The variable value
isSecret boolean Whether the value is treated as a secret
allowOverride boolean Whether the value can be overridden when creating a release
View JSON Schema on GitHub

JSON Schema

microsoft-azure-devops-configurationvariablevalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConfigurationVariableValue",
  "title": "ConfigurationVariableValue",
  "type": "object",
  "description": "A variable value in a release definition or release",
  "properties": {
    "value": {
      "type": "string",
      "description": "The variable value"
    },
    "isSecret": {
      "type": "boolean",
      "description": "Whether the value is treated as a secret"
    },
    "allowOverride": {
      "type": "boolean",
      "description": "Whether the value can be overridden when creating a release"
    }
  }
}