action apptigent_convert_area { label: "Math - Convert area" description: "Convert value from one area measurement to another" provider: apptigent method: POST path: "/ConvertArea" encoding: json input: { type: "object" required: ["input", "source", "target"] properties: { input: { type: "number" } source: { type: "string" enum: ["Acre", "Hectare", "SquareCentimeter", "SquareDecimeter", "SquareFoot", "SquareInch", "SquareKilometer", "SquareMeter", "SquareMicrometer", "SquareMile", "SquareMillimeter", "SquareYard"] } target: { type: "string" enum: ["Acre", "Hectare", "SquareCentimeter", "SquareDecimeter", "SquareFoot", "SquareInch", "SquareKilometer", "SquareMeter", "SquareMicrometer", "SquareMile", "SquareMillimeter", "SquareYard"] } } } output: { type: "object" properties: { result: { type: "number" description: "Result" } } } }