linode · Schema
ObjectStorageBucket
Properties
| Name | Type | Description |
|---|---|---|
| label | string | The name of this bucket. |
| region | string | The region where this bucket is located. |
| created | string | When this bucket was created. |
| hostname | string | The hostname for accessing this bucket. |
| objects | integer | The number of objects in this bucket. |
| size | integer | The total size of objects in bytes. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ObjectStorageBucket",
"title": "ObjectStorageBucket",
"type": "object",
"properties": {
"label": {
"type": "string",
"description": "The name of this bucket."
},
"region": {
"type": "string",
"description": "The region where this bucket is located."
},
"created": {
"type": "string",
"format": "date-time",
"description": "When this bucket was created."
},
"hostname": {
"type": "string",
"description": "The hostname for accessing this bucket."
},
"objects": {
"type": "integer",
"description": "The number of objects in this bucket."
},
"size": {
"type": "integer",
"description": "The total size of objects in bytes."
}
}
}