action apptigent_convert_power { label: "Math - Convert power" description: "Convert value from one power measurement to another" provider: apptigent method: POST path: "/ConvertPower" encoding: json input: { type: "object" required: ["input", "source", "target"] properties: { input: { type: "number" } source: { type: "string" enum: ["BritishThermalUnitPerHour", "Decawatt", "Deciwatt", "ElectricalHorsepower", "Femtowatt", "Gigawatt", "HydraulicHorsepower", "Kilowatt", "MechanicalHorsepower", "Megawatt", "Microwatt", "Milliwatt", "Nanowatt", "Petawatt", "Picowatt", "Terawatt", "Watt"] } target: { type: "string" enum: ["BritishThermalUnitPerHour", "Decawatt", "Deciwatt", "ElectricalHorsepower", "Femtowatt", "Gigawatt", "HydraulicHorsepower", "Kilowatt", "MechanicalHorsepower", "Megawatt", "Microwatt", "Milliwatt", "Nanowatt", "Petawatt", "Picowatt", "Terawatt", "Watt"] } } } output: { type: "object" properties: { result: { type: "number" description: "Result" } } } }