Azure DevOps · Schema

ReleaseDefinitionShallowReference

A minimal reference to a release definition

AgileCI/CDDevOpsProject ManagementVersion Control

Properties

Name Type Description
id integer
name string
path string
url string
_links object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-devops-releasedefinitionshallowreference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReleaseDefinitionShallowReference",
  "title": "ReleaseDefinitionShallowReference",
  "type": "object",
  "description": "A minimal reference to a release definition",
  "properties": {
    "id": {
      "type": "integer"
    },
    "name": {
      "type": "string"
    },
    "path": {
      "type": "string"
    },
    "url": {
      "type": "string",
      "format": "uri"
    },
    "_links": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "href": {
            "type": "string",
            "format": "uri"
          }
        }
      }
    }
  }
}