action gsmtasks_metafields_create { label: "metafields_create" provider: gsmtasks method: POST path: "/metafields/" encoding: form input: { type: "object" properties: { account: { type: "string" format: "uri" } choices: { type: "array" items: { type: "string" } } choices_url: { type: "string" format: "uri" } created_at: { type: "string" format: "date-time" } field_name: { type: "string" } format: { type: "string" enum: ["json", "xlsx"] } id: { type: "string" format: "uuid" } is_editable: { type: "boolean" description: "Editable by manager" } is_editable_assignee: { type: "boolean" description: "Editable by assignee" } is_persistent: { type: "boolean" description: "Metadata, that will be copied to on recurrence." } is_required: { type: "boolean" } is_searchable: { type: "boolean" } key: { type: "string" } label: { type: "string" } namespace: { type: "string" } ordering: { type: "integer" } show_in_detail_view: { type: "boolean" } show_in_list_view: { type: "boolean" } show_in_mobile_app: { type: "boolean" } show_in_pod: { type: "boolean" } show_when_task_type_assignment: { type: "boolean" } show_when_task_type_drop_off: { type: "boolean" } show_when_task_type_pick_up: { type: "boolean" } updated_at: { type: "string" format: "date-time" } url: { type: "string" format: "uri" } value_type: { type: "string" enum: ["string", "integer", "decimal", "choice"] } } required: ["account", "created_at", "field_name", "id", "key", "updated_at", "url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }