Properties
| Name | Type | Description |
|---|---|---|
| tablespace_name | string | |
| status | string | |
| contents | string | |
| block_size | integer | |
| allocated_bytes | integer | |
| used_bytes | integer | |
| free_bytes | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Tablespace",
"title": "Tablespace",
"type": "object",
"properties": {
"tablespace_name": {
"type": "string"
},
"status": {
"type": "string"
},
"contents": {
"type": "string"
},
"block_size": {
"type": "integer"
},
"allocated_bytes": {
"type": "integer",
"format": "int64"
},
"used_bytes": {
"type": "integer",
"format": "int64"
},
"free_bytes": {
"type": "integer",
"format": "int64"
}
}
}