Azure Function Apps · JSON Structure

Azure Function Apps Backup Item Collection Structure

Collection of backup items.

Type: object Properties: 2 Required: 1
AzureComputeFaaSFunctionsServerless

BackupItemCollection is a JSON Structure definition published by Azure Function Apps, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

nextLink value

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-function-apps/refs/heads/main/json-structure/azure-function-apps-backup-item-collection-structure.json",
  "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"
  ],
  "name": "BackupItemCollection"
}