action apptigent_calculate_sine { label: "Math - Calculate Sine" description: "Calculate the sine value of an angle" provider: apptigent method: POST path: "/CalculateSine" 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" } } } }