Airtable · Schema

BaseList

A paginated list of bases accessible to the authenticated user.

ApplicationsCollaborationDataDatabasesLow-CodeProductivitySpreadsheets

Properties

Name Type Description
bases array
offset string Pagination cursor for the next page of results.
View JSON Schema on GitHub

JSON Schema

airtable-baselist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BaseList",
  "title": "BaseList",
  "type": "object",
  "description": "A paginated list of bases accessible to the authenticated user.",
  "properties": {
    "bases": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BaseSummary"
      }
    },
    "offset": {
      "type": "string",
      "description": "Pagination cursor for the next page of results."
    }
  },
  "required": [
    "bases"
  ]
}