Sybase · Schema
Device
Represents a database device (disk resource) on the SAP ASE server.
DatabaseEnterpriseSAPSQL
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The logical name of the device. |
| physicalName | string | The physical file path of the device. |
| sizeMB | number | Total size of the device in megabytes. |
| usedMB | number | Space currently used on the device in megabytes. |
| status | string | Current status of the device. |
| deviceNumber | integer | The numeric device identifier assigned by the server. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Device",
"title": "Device",
"type": "object",
"description": "Represents a database device (disk resource) on the SAP ASE server.",
"properties": {
"name": {
"type": "string",
"description": "The logical name of the device."
},
"physicalName": {
"type": "string",
"description": "The physical file path of the device."
},
"sizeMB": {
"type": "number",
"format": "double",
"description": "Total size of the device in megabytes."
},
"usedMB": {
"type": "number",
"format": "double",
"description": "Space currently used on the device in megabytes."
},
"status": {
"type": "string",
"description": "Current status of the device.",
"enum": [
"online",
"offline"
]
},
"deviceNumber": {
"type": "integer",
"description": "The numeric device identifier assigned by the server."
}
}
}