action apptigent_compare_strings { label: "Text - Compare strings" description: "Perform a comparison of two strings" provider: apptigent method: POST path: "/CompareStrings" encoding: json input: { type: "object" required: ["compare", "input", "lower", "trim"] properties: { compare: { type: "string" description: "Comparison string" } input: { type: "string" description: "Original string" } lower: { type: "string" description: "Convert strings to lowercase before comparison" enum: [true, false] } trim: { type: "string" description: "Trim strings before comparison" enum: [true, false] } } } output: { type: "object" properties: { result: { type: "string" description: "Result" } } } }