80 lines
1.4 KiB
JSON
80 lines
1.4 KiB
JSON
{
|
|
"name": "Backup",
|
|
"type": "object",
|
|
"properties": {
|
|
"vm_id": {
|
|
"type": "string",
|
|
"title": "VM ID"
|
|
},
|
|
"vm_name": {
|
|
"type": "string",
|
|
"title": "VM Name"
|
|
},
|
|
"node": {
|
|
"type": "string",
|
|
"title": "Node"
|
|
},
|
|
"status": {
|
|
"type": "string",
|
|
"enum": [
|
|
"pending",
|
|
"running",
|
|
"completed",
|
|
"failed",
|
|
"expired"
|
|
],
|
|
"title": "Status"
|
|
},
|
|
"type": {
|
|
"type": "string",
|
|
"enum": [
|
|
"full",
|
|
"incremental",
|
|
"snapshot"
|
|
],
|
|
"title": "Backup Type"
|
|
},
|
|
"size_mb": {
|
|
"type": "number",
|
|
"title": "Size (MB)"
|
|
},
|
|
"storage": {
|
|
"type": "string",
|
|
"title": "Storage Location"
|
|
},
|
|
"schedule": {
|
|
"type": "string",
|
|
"enum": [
|
|
"manual",
|
|
"daily",
|
|
"weekly",
|
|
"monthly"
|
|
],
|
|
"title": "Schedule"
|
|
},
|
|
"retention_days": {
|
|
"type": "number",
|
|
"title": "Retention Days"
|
|
},
|
|
"started_at": {
|
|
"type": "string",
|
|
"format": "date-time",
|
|
"title": "Started At"
|
|
},
|
|
"completed_at": {
|
|
"type": "string",
|
|
"format": "date-time",
|
|
"title": "Completed At"
|
|
},
|
|
"notes": {
|
|
"type": "string",
|
|
"title": "Notes"
|
|
}
|
|
},
|
|
"required": [
|
|
"vm_id",
|
|
"vm_name",
|
|
"status",
|
|
"type"
|
|
]
|
|
} |