Auth0 · Schema

FlowActionAirtableCreateRecordParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

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