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": "string"
},
"disasters": {
"type": "string"
}
},
"required": [
"vehicleType",
"licensePlate",
"origin",
"callSignature",
"capacity",
"disasters"
]
}