action apptigent_calculate_tangent { label: "Math - Calculate Tangent" description: "Calculate the tangent value of an angle" provider: apptigent method: POST path: "/CalculateTangent" 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" } } } }