{ "$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" ] }