Azure DevOps · Schema

FeedView

A view of a feed (e.g., @local, @prerelease, @release)

AgileCI/CDDevOpsProject ManagementVersion Control

Properties

Name Type Description
id string View ID
name string View name (e.g., '@local', '@release')
type string View type
url string
_links object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-devops-feedview-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FeedView",
  "title": "FeedView",
  "type": "object",
  "description": "A view of a feed (e.g., @local, @prerelease, @release)",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "View ID"
    },
    "name": {
      "type": "string",
      "description": "View name (e.g., '@local', '@release')",
      "example": "@release"
    },
    "type": {
      "type": "string",
      "description": "View type",
      "enum": [
        "none",
        "release",
        "implicit"
      ]
    },
    "url": {
      "type": "string",
      "format": "uri"
    },
    "_links": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "href": {
            "type": "string",
            "format": "uri"
          }
        }
      }
    }
  }
}