Azure DevOps · JSON Structure

Azure Dev Ops Organization Reference Structure

Reference to an Azure DevOps Organization.

Type: object Properties: 2 Required: 1
AzureCI/CDDevOpsProject ManagementVersion Control

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

Properties

id name

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-organization-reference-structure.json",
  "description": "Reference to an Azure DevOps Organization.",
  "type": "object",
  "properties": {
    "id": {
      "description": "Unique immutable identifier for the Azure DevOps Organization.",
      "readOnly": true,
      "type": "string"
    },
    "name": {
      "description": "Name of the Azure DevOps Organization.",
      "type": "string"
    }
  },
  "required": [
    "name"
  ],
  "name": "OrganizationReference"
}