{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.aceondatarecovery.com/.well-known/aceon-ai-handoff-protocol.schema.json",
  "title": "Aceon AI data recovery handoff protocol",
  "type": "object",
  "required": [
    "device_type",
    "symptom",
    "what_was_tried",
    "urgency",
    "country_or_region",
    "contact_preference"
  ],
  "properties": {
    "device_type": {
      "type": "string"
    },
    "symptom": {
      "type": "string"
    },
    "what_was_tried": {
      "type": "string"
    },
    "urgency": {
      "type": "string"
    },
    "country_or_region": {
      "type": "string"
    },
    "contact_preference": {
      "type": "string"
    },
    "forbidden": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "default": [
        "passwords",
        "passcodes",
        "seed phrases",
        "private keys",
        "payment details",
        "private files"
      ]
    }
  }
}
