action apptigent_convert_angle { label: "Math - Convert angle" description: "Convert value from one angle measurement to another" provider: apptigent method: POST path: "/ConvertAngle" encoding: json input: { type: "object" required: ["input", "source", "target"] properties: { input: { type: "number" } source: { type: "string" enum: ["Arcminute", "Arcsecond", "Centiradian", "Deciradian", "Degree", "Gradian", "Microdegree", "Microradian", "Millidegree", "Milliradian", "Nanodegree", "Nanoradian", "Radian", "Revolution"] } target: { type: "string" enum: ["Arcminute", "Arcsecond", "Centiradian", "Deciradian", "Degree", "Gradian", "Microdegree", "Microradian", "Millidegree", "Milliradian", "Nanodegree", "Nanoradian", "Radian", "Revolution"] } } } output: { type: "object" properties: { result: { type: "number" description: "Result" } } } }