action opensuse_post_person { label: "Executes a command on the person endpoint." description: "Allows executing command on the person endpoint.\n\nAs of now, the only command allowed is 'register'.\n" provider: opensuse method: POST path: "/person" encoding: json input: { type: "object" properties: { cmd: { type: "string" enum: ["register"] } } required: ["cmd"] additionalProperties: false } output: { type: "object" additionalProperties: true } }