Airtable · Schema

BaseSchema

The full schema of a base including all tables.

ApplicationsCollaborationDataDatabasesLow-CodeProductivitySpreadsheets

Properties

Name Type Description
id string The unique identifier of the base.
name string The name of the base.
tables array
View JSON Schema on GitHub

JSON Schema

airtable-baseschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BaseSchema",
  "title": "BaseSchema",
  "type": "object",
  "description": "The full schema of a base including all tables.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the base."
    },
    "name": {
      "type": "string",
      "description": "The name of the base."
    },
    "tables": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TableSchema"
      }
    }
  },
  "required": [
    "id",
    "tables"
  ]
}