Airtable · Schema

Airtable View

An Airtable view provides a filtered, sorted, and formatted perspective on the records in a table. Views control which fields are visible, how records are ordered, and which records meet the view's filter criteria.

ApplicationCollaborationDataDatabasesLow-CodeProductivitySpreadsheets

Properties

Name Type Description
id string The unique identifier for the view. View IDs always start with the 'viw' prefix.
name string The display name of the view.
type string The type of view, which determines the layout and interaction model.
personalForUserId stringnull If set, this is a personal view visible only to the specified user. Null indicates a shared view.
visibleFieldIds array The IDs of fields visible in this view, in display order. Only included when explicitly requested via the include parameter.
View JSON Schema on GitHub

JSON Schema

airtable-view-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://schemas.airtable.com/view.json",
  "title": "Airtable View",
  "description": "An Airtable view provides a filtered, sorted, and formatted perspective on the records in a table. Views control which fields are visible, how records are ordered, and which records meet the view's filter criteria.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier for the view. View IDs always start with the 'viw' prefix.",
      "pattern": "^viw[a-zA-Z0-9]+$",
      "examples": ["viwABC123def456"]
    },
    "name": {
      "type": "string",
      "description": "The display name of the view."
    },
    "type": {
      "type": "string",
      "description": "The type of view, which determines the layout and interaction model.",
      "enum": [
        "grid",
        "form",
        "calendar",
        "gallery",
        "kanban",
        "timeline",
        "block"
      ]
    },
    "personalForUserId": {
      "type": ["string", "null"],
      "description": "If set, this is a personal view visible only to the specified user. Null indicates a shared view."
    },
    "visibleFieldIds": {
      "type": "array",
      "description": "The IDs of fields visible in this view, in display order. Only included when explicitly requested via the include parameter.",
      "items": {
        "type": "string",
        "pattern": "^fld[a-zA-Z0-9]+$"
      }
    }
  },
  "required": ["id", "name", "type"],
  "additionalProperties": false
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/airtable-view"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.