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