action apptigent_calculate_square_root { label: "Math - Calculate Square Root" description: "Calculate the square root of a number" provider: apptigent method: POST path: "/CalculateSquareRoot" 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" } } } }