updatevehicle

PutVehiclesRequest Schema

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "vehicleType": {
      "type": "string"
    },
    "licensePlate": {
      "type": "string"
    },
    "origin": {
      "type": "string"
    },
    "callSignature": {
      "type": "string"
    },
    "capacity": {
      "type": "number"
    },
    "isDummy": {
      "type": "boolean"
    },
    "disasters": {
      "type": "string"
    },
    "status": {
      "type": "number"
    },
    "disasterLocation": {
      "type": "string"
    }
  },
  "required": [
    "vehicleType",
    "licensePlate",
    "origin",
    "callSignature",
    "capacity",
    "isDummy",
    "disasters",
    "status",
    "disasterLocation"
  ]
}