{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.firstmilelabs.com/schemas/webhooks/case.submitted.v1.json",
  "title": "FirstMileLabs Outbound Webhook — case.submitted (v1)",
  "description": "Emitted when the customer has finished their part — application form submitted or customer review confirmed.",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "event",
    "eventId",
    "eventVersion",
    "timestamp",
    "orgId",
    "caseId",
    "source"
  ],
  "properties": {
    "event": { "type": "string", "const": "case.submitted" },
    "eventId": { "type": "string", "format": "uuid" },
    "eventVersion": { "type": "integer", "const": 1 },
    "timestamp": { "type": "string", "format": "date-time" },
    "orgId": { "type": "string" },
    "crmRecordId": { "type": ["string", "null"] },
    "caseId": { "type": "string" },
    "companyName": { "type": ["string", "null"] },
    "country": { "type": ["string", "null"] },
    "customerEmail": { "type": ["string", "null"] },
    "source": { "type": "string", "enum": ["application_form", "doc_upload"] }
  }
}
