action apptigent_convert_energy { label: "Math - Convert energy" description: "Convert value from one energy measurement to another" provider: apptigent method: POST path: "/ConvertEnergy" encoding: json input: { type: "object" required: ["input", "source", "target"] properties: { input: { type: "number" } source: { type: "string" enum: ["BritishThermalUnit", "Calorie", "ElectronVolt", "FootPound", "GigawattHour", "Joule", "Kilocalorie", "Kilojoule", "KilowattHour", "Megajoule", "MegawattHour", "TerawattHour", "Therm (EU)", "Therm (UK)", "Therm (US)", "WattHour"] } target: { type: "string" enum: ["BritishThermalUnit", "Calorie", "ElectronVolt", "FootPound", "GigawattHour", "Joule", "Kilocalorie", "Kilojoule", "KilowattHour", "Megajoule", "MegawattHour", "TerawattHour", "Therm (EU)", "Therm (UK)", "Therm (US)", "WattHour"] } } } output: { type: "object" properties: { result: { type: "number" description: "Result" } } } }