action gsmtasks_formrules_create { label: "formrules_create" provider: gsmtasks method: POST path: "/formrules/" encoding: form input: { type: "object" properties: { account: { type: "string" format: "uri" } edit_url: { type: "string" format: "uri" } format: { type: "string" enum: ["json", "xlsx"] } id: { type: "string" format: "uuid" } is_active: { type: "boolean" } name: { type: "string" } pdf_url: { type: "string" format: "uri" } rules: { type: "object" } url: { type: "string" format: "uri" } view_url: { type: "string" format: "uri" } } required: ["account", "edit_url", "id", "name", "rules", "url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }