Airtable · Schema

EnterpriseAccount

Enterprise account information and configuration.

ApplicationsCollaborationDataDatabasesLow-CodeProductivitySpreadsheets

Properties

Name Type Description
id string The unique identifier of the enterprise account.
createdTime string The time when the enterprise account was created.
groupIds array The IDs of user groups in the enterprise.
userIds array The IDs of users in the enterprise.
workspaceIds array The IDs of workspaces in the enterprise.
emailDomains array The email domains associated with the enterprise.
View JSON Schema on GitHub

JSON Schema

airtable-enterpriseaccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnterpriseAccount",
  "title": "EnterpriseAccount",
  "type": "object",
  "description": "Enterprise account information and configuration.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the enterprise account."
    },
    "createdTime": {
      "type": "string",
      "format": "date-time",
      "description": "The time when the enterprise account was created."
    },
    "groupIds": {
      "type": "array",
      "description": "The IDs of user groups in the enterprise.",
      "items": {
        "type": "string"
      }
    },
    "userIds": {
      "type": "array",
      "description": "The IDs of users in the enterprise.",
      "items": {
        "type": "string"
      }
    },
    "workspaceIds": {
      "type": "array",
      "description": "The IDs of workspaces in the enterprise.",
      "items": {
        "type": "string"
      }
    },
    "emailDomains": {
      "type": "array",
      "description": "The email domains associated with the enterprise.",
      "items": {
        "type": "object",
        "properties": {
          "emailDomain": {
            "type": "string"
          },
          "isVerified": {
            "type": "boolean"
          }
        }
      }
    }
  },
  "required": [
    "id"
  ]
}