linode · Schema

BackupResponse

Properties

Name Type Description
automatic array Automatic backups.
snapshot object Snapshot backups.
View JSON Schema on GitHub

JSON Schema

linode-backupresponse-schema.json Raw ↑
{
  "$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."
    }
  }
}