Azure DevOps · Schema

AttachmentReference

Reference to an uploaded attachment

AgileCI/CDDevOpsProject ManagementVersion Control

Properties

Name Type Description
id string GUID identifier of the attachment
url string URL to download or reference the attachment
View JSON Schema on GitHub

JSON Schema

microsoft-azure-devops-attachmentreference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AttachmentReference",
  "title": "AttachmentReference",
  "type": "object",
  "description": "Reference to an uploaded attachment",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "GUID identifier of the attachment"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL to download or reference the attachment"
    }
  }
}