action gsmtasks_documents_create { label: "documents_create" provider: gsmtasks method: POST path: "/documents/" encoding: form input: { type: "object" properties: { account: { type: "string" format: "uri" } created_at: { type: "string" format: "date-time" } created_by: { type: "string" format: "uri" } description: { type: "string" } external_id: { type: "string" } file: { type: "string" format: "uri" } file_name: { type: "string" } file_upload: { type: "string" format: "uri" } format: { type: "string" enum: ["json", "xlsx"] } id: { type: "string" format: "uuid" } mimetype: { type: "string" } order: { type: "string" format: "uri" } source: { type: "object" } task: { type: "string" format: "uri" } thumbnail: { type: "string" format: "uri" } updated_at: { type: "string" format: "date-time" } url: { type: "string" format: "uri" } visible_to_client: { type: "boolean" } visible_to_worker: { type: "boolean" } } required: ["created_at", "created_by", "file", "file_name", "id", "mimetype", "thumbnail", "updated_at", "url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }