{
  "schemaVersion": "1.0",
  "syntheticOnly": true,
  "cases": [
    {
      "id": "valid-intake",
      "input": {
        "requestId": "REQ-1001",
        "contact": "alex@example.test",
        "service": "workflow-review",
        "consent": true,
        "priority": "normal"
      },
      "expectedPath": "accepted"
    },
    {
      "id": "missing-consent",
      "input": {
        "requestId": "REQ-1002",
        "contact": "sam@example.test",
        "service": "workflow-review",
        "consent": false,
        "priority": "normal"
      },
      "expectedPath": "rejected"
    },
    {
      "id": "duplicate-request",
      "input": {
        "requestId": "REQ-1001",
        "contact": "alex@example.test",
        "service": "workflow-review",
        "consent": true,
        "priority": "normal"
      },
      "expectedPath": "duplicate"
    },
    {
      "id": "temporary-destination-failure",
      "input": {
        "requestId": "REQ-1003",
        "contact": "lee@example.test",
        "service": "workflow-review",
        "consent": true,
        "priority": "normal",
        "simulateStatus": 503
      },
      "expectedPath": "recoverable-error"
    },
    {
      "id": "malformed-input",
      "input": {
        "requestId": "",
        "contact": "not-an-address",
        "service": "",
        "consent": true,
        "priority": "unknown"
      },
      "expectedPath": "validation-error"
    }
  ]
}
