action enode_get_vehicles_vehicleid_information { label: "Get Vehicle Information" provider: enode method: GET path: "/vehicles/{vehicleId}/information" encoding: json output: { type: "object" description: "Descriptive information about the Vehicle" properties: { brand: { type: "string" description: "Vehicle brand" } id: { type: "string" description: "Vehicle ID" } model: { type: "string" description: "Vehicle model" } year: { type: "integer" description: "Vehicle production year" } } } }