Airtable · Schema

AuditLogEventList

A paginated list of audit log events.

ApplicationsCollaborationDataDatabasesLow-CodeProductivitySpreadsheets

Properties

Name Type Description
events array
pagination object Pagination cursors for navigating through results.
View JSON Schema on GitHub

JSON Schema

airtable-auditlogeventlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuditLogEventList",
  "title": "AuditLogEventList",
  "type": "object",
  "description": "A paginated list of audit log events.",
  "properties": {
    "events": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AuditLogEvent"
      }
    },
    "pagination": {
      "type": "object",
      "description": "Pagination cursors for navigating through results.",
      "properties": {
        "next": {
          "type": "string",
          "description": "Cursor for the next page of results."
        },
        "previous": {
          "type": "string",
          "description": "Cursor for the previous page of results."
        }
      }
    }
  },
  "required": [
    "events"
  ]
}