Azure DevOps · Schema

InputValue

Representation of a pipeline template input parameter value.

AzureCI/CDDevOpsProject ManagementVersion Control

Properties

Name Type Description
displayValue string Description of the input parameter value.
value string Value of an input parameter.
View JSON Schema on GitHub

JSON Schema

azure-dev-ops-input-value-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-dev-ops/refs/heads/main/json-schema/azure-dev-ops-input-value-schema.json",
  "title": "InputValue",
  "description": "Representation of a pipeline template input parameter value.",
  "type": "object",
  "properties": {
    "displayValue": {
      "description": "Description of the input parameter value.",
      "type": "string"
    },
    "value": {
      "description": "Value of an input parameter.",
      "type": "string"
    }
  }
}