action passwordutility_password_generate { label: "Password_Generate" provider: passwordutility method: POST path: "/api/password/generate" encoding: json input: { type: "object" properties: { digits: { type: "string" } length: { type: "string" } specialCharacters: { type: "string" } upperCase: { type: "string" } } required: ["length"] additionalProperties: false } output: { type: "object" additionalProperties: true } }