{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BlobEnumerationResults", "title": "BlobEnumerationResults", "type": "object", "description": "An enumeration of blobs.", "properties": { "ServiceEndpoint": { "type": "string", "description": "The service endpoint URL.", "example": "example_value" }, "ContainerName": { "type": "string", "description": "The name of the container.", "example": "example_value" }, "Prefix": { "type": "string", "description": "The prefix used to filter results.", "example": "example_value" }, "Marker": { "type": "string", "description": "The marker used for pagination.", "example": "example_value" }, "MaxResults": { "type": "integer", "description": "The maximum number of results.", "example": 10 }, "Blobs": { "type": "object", "properties": { "Blob": { "type": "array", "items": { "$ref": "#/components/schemas/BlobItem" } }, "BlobPrefix": { "type": "array", "items": { "type": "object", "properties": { "Name": { "type": "string" } } } } }, "example": "example_value" }, "NextMarker": { "type": "string", "description": "The next marker for pagination.", "example": "example_value" } } }