Azure DevOps · JSON Structure

Azure Dev Ops Pipeline List Result Structure

Result of a request to list all Azure Pipelines under a given scope.

Type: object Properties: 2
AzureCI/CDDevOpsProject ManagementVersion Control

PipelineListResult is a JSON Structure definition published by Azure DevOps, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

nextLink value

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-dev-ops/refs/heads/main/json-structure/azure-dev-ops-pipeline-list-result-structure.json",
  "description": "Result of a request to list all Azure Pipelines under a given scope.",
  "properties": {
    "nextLink": {
      "description": "URL to get the next set of Pipelines, if there are any.",
      "type": "string"
    },
    "value": {
      "description": "List of pipelines.",
      "items": {
        "$ref": "#/definitions/Pipeline"
      },
      "type": "array"
    }
  },
  "type": "object",
  "name": "PipelineListResult"
}