linode · Schema
BackupResponse
Properties
| Name | Type | Description |
|---|---|---|
| automatic | array | Automatic backups. |
| snapshot | object | Snapshot backups. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BackupResponse",
"title": "BackupResponse",
"type": "object",
"properties": {
"automatic": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Backup"
},
"description": "Automatic backups."
},
"snapshot": {
"type": "object",
"properties": {
"current": {
"$ref": "#/components/schemas/Backup"
},
"in_progress": {
"$ref": "#/components/schemas/Backup"
}
},
"description": "Snapshot backups."
}
}
}