action apptigent_verify_hash { label: "Text - Verify hash" description: "Verify a hashed value against the original source string" provider: apptigent method: POST path: "/VerifyHash" encoding: json input: { type: "object" required: ["algorithm", "hash", "input"] properties: { algorithm: { type: "string" description: "Hash algorithm" enum: ["MD5", "SHA1", "SHA256", "SHA384", "SHA512"] } hash: { type: "string" description: "Hashed result" } input: { type: "string" description: "Original source string" } } } output: { type: "object" properties: { result: { type: "boolean" description: "Result" } } } }