Auth0 · Schema

FlowActionAirtableUpdateRecordParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connection_id string
base_id string
table_name string
record_id string
fields object
View JSON Schema on GitHub

JSON Schema

auth0-flowactionairtableupdaterecordparams-schema.json Raw ↑
{
  "$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"
    }
  }
}