updateassignment

UpdateRescueVehicleAssignmentInfo Schema

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "vehicleId": {
      "type": "string"
    },
    "disasterId": {
      "type": "string"
    },
    "patientName": {
      "type": "string"
    },
    "vehicleCallsign": {
      "type": "string"
    },
    "patientId": {
      "type": "string"
    },
    "currentOccupancy": {
      "type": "number"
    },
    "destination": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "arrivalTime": {
      "type": "object"
    },
    "departureTime": {
      "type": "object"
    },
    "order": {
      "type": "number"
    }
  },
  "required": [
    "vehicleId",
    "disasterId",
    "patientName",
    "vehicleCallsign",
    "patientId",
    "currentOccupancy",
    "destination",
    "status",
    "arrivalTime",
    "departureTime",
    "order"
  ]
}