action apptigent_calculate_logarithm { label: "Math - Calculate Logarithm" description: "Calculate the logarithm of a number" provider: apptigent method: POST path: "/CalculateLogarithm" encoding: json input: { type: "object" required: ["decimals", "input"] properties: { decimals: { type: "number" description: "Round to number of decimal places" } input: { type: "number" description: "Numeric value to calculate" } } } output: { type: "object" properties: { result: { type: "number" description: "Result" } } } }