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. |
| Properties | object | |
| Metadata | object | The blob metadata. |
| Tags | object | Blob tags. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BlobItem",
"title": "BlobItem",
"type": "object",
"description": "A blob item in the enumeration results.",
"properties": {
"Name": {
"type": "string",
"description": "The name of the blob.",
"example": "Example Title"
},
"Deleted": {
"type": "boolean",
"description": "Whether the blob is deleted.",
"example": true
},
"Snapshot": {
"type": "string",
"description": "The snapshot DateTime.",
"example": "example_value"
},
"VersionId": {
"type": "string",
"description": "The version ID of the blob.",
"example": "500123"
},
"IsCurrentVersion": {
"type": "boolean",
"description": "Whether this is the current version.",
"example": true
},
"Properties": {
"$ref": "#/components/schemas/BlobProperties"
},
"Metadata": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "The blob metadata.",
"example": "example_value"
},
"Tags": {
"type": "object",
"description": "Blob tags.",
"properties": {
"TagSet": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Key": {
"type": "string"
},
"Value": {
"type": "string"
}
}
}
}
},
"example": "example_value"
}
},
"required": [
"Name",
"Properties"
]
}