Microsoft Azure · Schema

BlobItem

A blob item in the enumeration results.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
Name string The name of the blob.
Deleted boolean Whether the blob is deleted.
Snapshot string The snapshot DateTime.
VersionId string The version ID of the blob.
IsCurrentVersion boolean Whether this is the current version.
Metadata object The blob metadata.
Tags object Blob tags.
View JSON Schema on GitHub

JSON Schema

azure-blob-storage-blob-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "BlobItem",
  "type": "object",
  "description": "A blob item in the enumeration results.",
  "properties": {
    "Name": {
      "type": "string",
      "description": "The name of the blob."
    },
    "Deleted": {
      "type": "boolean",
      "description": "Whether the blob is deleted."
    },
    "Snapshot": {
      "type": "string",
      "description": "The snapshot DateTime."
    },
    "VersionId": {
      "type": "string",
      "description": "The version ID of the blob."
    },
    "IsCurrentVersion": {
      "type": "boolean",
      "description": "Whether this is the current version."
    },
    "Metadata": {
      "type": "object",
      "description": "The blob metadata."
    },
    "Tags": {
      "type": "object",
      "description": "Blob tags."
    }
  }
}