BackupItemCollection

Collection of backup items.

AzureComputeFaaSFunctionsServerless

Properties

Name Type Description
nextLink string Link to next page of resources.
value array Collection of resources.
View JSON Schema on GitHub

JSON Schema

azure-function-apps-backup-item-collection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-function-apps/refs/heads/main/json-schema/azure-function-apps-backup-item-collection-schema.json",
  "title": "BackupItemCollection",
  "description": "Collection of backup items.",
  "type": "object",
  "properties": {
    "nextLink": {
      "description": "Link to next page of resources.",
      "readOnly": true,
      "type": "string"
    },
    "value": {
      "description": "Collection of resources.",
      "items": {
        "$ref": "#/definitions/BackupItem"
      },
      "type": "array"
    }
  },
  "required": [
    "value"
  ]
}