{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FlowActionAirtableUpdateRecordParams", "title": "FlowActionAirtableUpdateRecordParams", "type": "object", "additionalProperties": false, "required": [ "connection_id", "base_id", "table_name", "record_id" ], "properties": { "connection_id": { "type": "string", "maxLength": 30, "format": "flows-vault-connections-id" }, "base_id": { "type": "string" }, "table_name": { "type": "string" }, "record_id": { "type": "string" }, "fields": { "$ref": "#/components/schemas/FlowActionAirtableUpdateRecordParamsFields" } } }