AssociateVehicleFleetRequest schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-fleetwise/refs/heads/main/json-schema/iot-fleetwise-associate-vehicle-fleet-request-schema.json", "title": "AssociateVehicleFleetRequest", "description": "AssociateVehicleFleetRequest schema", "type": "object", "properties": { "vehicleName": { "allOf": [ { "$ref": "#/components/schemas/vehicleName" }, { "description": " The unique ID of the vehicle to associate with the fleet. " } ] }, "fleetId": { "allOf": [ { "$ref": "#/components/schemas/fleetId" }, { "description": " The ID of a fleet. " } ] } }, "required": [ "vehicleName", "fleetId" ] }