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