Azure DevOps · Schema
FeedUpdateRequest
Parameters for updating a feed
AgileCI/CDDevOpsProject ManagementVersion Control
Properties
| Name | Type | Description |
|---|---|---|
| name | string | New name for the feed |
| description | string | Updated description |
| upstreamEnabled | boolean | Whether to enable/disable upstream sources |
| upstreamSources | array | Updated list of upstream sources |
| hideDeletedPackageVersions | boolean | Whether to hide deleted versions |
| badgesEnabled | boolean | Whether to enable package badges |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FeedUpdateRequest",
"title": "FeedUpdateRequest",
"type": "object",
"description": "Parameters for updating a feed",
"properties": {
"name": {
"type": "string",
"description": "New name for the feed"
},
"description": {
"type": "string",
"description": "Updated description"
},
"upstreamEnabled": {
"type": "boolean",
"description": "Whether to enable/disable upstream sources"
},
"upstreamSources": {
"type": "array",
"description": "Updated list of upstream sources",
"items": {
"$ref": "#/components/schemas/UpstreamSource"
}
},
"hideDeletedPackageVersions": {
"type": "boolean",
"description": "Whether to hide deleted versions"
},
"badgesEnabled": {
"type": "boolean",
"description": "Whether to enable package badges"
}
}
}