Azure DevOps · Schema

OperationDisplayValue

Display information of an operation.

AzureCI/CDDevOpsProject ManagementVersion Control

Properties

Name Type Description
description string Friendly description of the operation.
operation string Friendly name of the operation.
provider string Friendly name of the resource provider.
resource string Friendly name of the resource type the operation applies to.
View JSON Schema on GitHub

JSON Schema

azure-dev-ops-operation-display-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-operation-display-value-schema.json",
  "title": "OperationDisplayValue",
  "description": "Display information of an operation.",
  "properties": {
    "description": {
      "description": "Friendly description of the operation.",
      "readOnly": true,
      "type": "string"
    },
    "operation": {
      "description": "Friendly name of the operation.",
      "readOnly": true,
      "type": "string"
    },
    "provider": {
      "description": "Friendly name of the resource provider.",
      "readOnly": true,
      "type": "string"
    },
    "resource": {
      "description": "Friendly name of the resource type the operation applies to.",
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object"
}