{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Applicant",
  "type": "object",
  "required": ["applicant_id", "created_at", "updated_at"],
  "properties": {
    "applicant_id": {"type": "string"},
    "full_name": {"type": "string"},
    "sponsor_name": {"type": "string"},
    "nominated_occupation": {"type": "string"},
    "visa_support_focus": {"type": "array", "items": {"type": "string"}},
    "created_at": {"type": "string"},
    "updated_at": {"type": "string"}
  }
}
