action enode_get_vehicles_vehicleid_location { label: "Get Vehicle Location" provider: enode method: GET path: "/vehicles/{vehicleId}/location" encoding: json output: { type: "object" description: "Vehicle's GPS coordinates with timestamp" properties: { lastUpdated: { type: "string" format: "date" description: "ISO8601 UTC timestamp of last received location" } latitude: { type: "number" description: "Latitude in degrees" } longitude: { type: "number" description: "Longitude in degrees" } } } }