Newer
Older
gnexus-book / schemas / backup.schema.json
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "backup.schema.json",
  "type": "array",
  "items": {
    "type": "object",
    "required": ["id", "target", "method", "frequency", "retention", "storage", "restore_runbook", "last_reviewed"],
    "properties": {
      "id": { "type": "string" },
      "target": { "type": "string" },
      "method": { "type": "string" },
      "frequency": { "type": "string" },
      "retention": { "type": "string" },
      "storage": { "type": "string" },
      "restore_runbook": { "type": "string" },
      "last_tested": { "type": "string" },
      "last_reviewed": { "type": "string" },
      "source_of_truth": { "type": "string" }
    },
    "additionalProperties": true
  }
}