Auth0 · Schema

FlowActionAirtableListRecords

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string
alias string
type string
action string
allow_failure boolean
mask_output boolean
params object
View JSON Schema on GitHub

JSON Schema

auth0-flowactionairtablelistrecords-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionAirtableListRecords",
  "title": "FlowActionAirtableListRecords",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "id",
    "type",
    "action",
    "params"
  ],
  "properties": {
    "id": {
      "type": "string",
      "format": "forms-custom-identifier"
    },
    "alias": {
      "type": "string",
      "maxLength": 100
    },
    "type": {
      "type": "string",
      "enum": [
        "AIRTABLE"
      ]
    },
    "action": {
      "type": "string",
      "enum": [
        "LIST_RECORDS"
      ]
    },
    "allow_failure": {
      "type": "boolean"
    },
    "mask_output": {
      "type": "boolean"
    },
    "params": {
      "$ref": "#/components/schemas/FlowActionAirtableListRecordsParams"
    }
  }
}