Auth0 · Schema

FlowActionGoogleSheetsAddRowParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connection_id string
spreadsheet_id string
sheet_id object
values object
View JSON Schema on GitHub

JSON Schema

auth0-flowactiongooglesheetsaddrowparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionGoogleSheetsAddRowParams",
  "title": "FlowActionGoogleSheetsAddRowParams",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "connection_id",
    "spreadsheet_id"
  ],
  "properties": {
    "connection_id": {
      "type": "string",
      "maxLength": 30,
      "format": "flows-vault-connections-id"
    },
    "spreadsheet_id": {
      "type": "string",
      "minLength": 1
    },
    "sheet_id": {
      "$ref": "#/components/schemas/FlowActionGoogleSheetsAddRowParamsSheetId"
    },
    "values": {
      "$ref": "#/components/schemas/FlowActionGoogleSheetsAddRowParamsValues"
    }
  }
}