action gsmtasks_reviews_create { label: "reviews_create" provider: gsmtasks method: POST path: "/reviews/" encoding: form input: { type: "object" properties: { comment: { type: "string" } created_at: { type: "string" format: "date-time" } format: { type: "string" enum: ["json", "xlsx"] } id: { type: "string" format: "uuid" } last_assignee: { type: "string" format: "uri" } last_task: { type: "string" format: "uri" } rating: { type: "integer" } tracker: { type: "string" format: "uri" } } required: ["created_at", "id", "last_assignee", "last_task", "rating", "tracker"] additionalProperties: false } output: { type: "object" additionalProperties: true } }