{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.firstmilelabs.com/schemas/webhooks/case.decision.made.v1.json",
  "title": "FirstMileLabs Outbound Webhook — case.decision.made (v1)",
  "description": "Emitted when an analyst approves or declines a case.",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "event",
    "eventId",
    "eventVersion",
    "timestamp",
    "orgId",
    "caseId",
    "outcome",
    "decidedAt"
  ],
  "properties": {
    "event": { "type": "string", "const": "case.decision.made" },
    "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" },
    "outcome": { "type": "string", "enum": ["approved", "declined"] },
    "notes": { "type": ["string", "null"], "description": "Free-text decision notes from the analyst panel." },
    "analystEmail": { "type": ["string", "null"] },
    "decidedAt": { "type": "string", "format": "date-time" },
    "companyName": { "type": ["string", "null"] }
  }
}
