Azure DevOps · Schema

Feed

An Azure Artifacts package feed

AgileCI/CDDevOpsProject ManagementVersion Control

Properties

Name Type Description
id string Unique GUID identifier of the feed
name string Display name of the feed
description string Description of the feed and its contents
url string URL to access this feed via the REST API
upstreamEnabled boolean Whether upstream sources are enabled for this feed
upstreamSources array Upstream package sources configured for this feed
hideDeletedPackageVersions boolean Whether to hide deleted package versions from package listings
defaultViewId string ID of the default view for this feed
views array Views defined for this feed (e.g., @local, @prerelease, @release)
isReadOnly boolean Whether the feed is read-only
deletedDate string Date the feed was deleted (null if active)
project object Project this feed belongs to
_links object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-devops-feed-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Feed",
  "title": "Feed",
  "type": "object",
  "description": "An Azure Artifacts package feed",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Unique GUID identifier of the feed"
    },
    "name": {
      "type": "string",
      "description": "Display name of the feed",
      "example": "my-packages"
    },
    "description": {
      "type": "string",
      "description": "Description of the feed and its contents"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL to access this feed via the REST API"
    },
    "upstreamEnabled": {
      "type": "boolean",
      "description": "Whether upstream sources are enabled for this feed"
    },
    "upstreamSources": {
      "type": "array",
      "description": "Upstream package sources configured for this feed",
      "items": {
        "$ref": "#/components/schemas/UpstreamSource"
      }
    },
    "hideDeletedPackageVersions": {
      "type": "boolean",
      "description": "Whether to hide deleted package versions from package listings"
    },
    "defaultViewId": {
      "type": "string",
      "format": "uuid",
      "description": "ID of the default view for this feed"
    },
    "views": {
      "type": "array",
      "description": "Views defined for this feed (e.g., @local, @prerelease, @release)",
      "items": {
        "$ref": "#/components/schemas/FeedView"
      }
    },
    "isReadOnly": {
      "type": "boolean",
      "description": "Whether the feed is read-only"
    },
    "deletedDate": {
      "type": "string",
      "format": "date-time",
      "nullable": true,
      "description": "Date the feed was deleted (null if active)"
    },
    "project": {
      "type": "object",
      "description": "Project this feed belongs to",
      "properties": {
        "id": {
          "type": "string",
          "format": "uuid"
        },
        "name": {
          "type": "string"
        }
      }
    },
    "_links": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "href": {
            "type": "string",
            "format": "uri"
          }
        }
      }
    }
  }
}