{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://example.com/schemas/file-map.schema.json",
  "title": "File Map",
  "type": "object",
  "required": ["description", "files", "source_retention_model"],
  "properties": {
    "description": { "type": "string", "minLength": 1 },
    "files": {
      "type": "array",
      "minItems": 1,
      "items": {
        "type": "object",
        "required": ["group", "files"],
        "properties": {
          "group": { "type": "string", "minLength": 1 },
          "files": {
            "type": "array",
            "minItems": 1,
            "items": {
              "type": "object",
              "required": ["path", "purpose"],
              "properties": {
                "path": { "type": "string", "minLength": 1 },
                "purpose": { "type": "string", "minLength": 1 }
              }
            }
          }
        }
      }
    },
    "source_retention_model": {
      "type": "array",
      "minItems": 1
    }
  }
}
