Airtable · Schema

UserRemoved

Details of a user removal from the enterprise.

ApplicationsCollaborationDataDatabasesLow-CodeProductivitySpreadsheets

Properties

Name Type Description
id string The ID of the removed user.
sharedBases array Bases that were shared and reassigned.
unsharedBases array Bases that were unshared as a result of removal.
View JSON Schema on GitHub

JSON Schema

airtable-userremoved-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserRemoved",
  "title": "UserRemoved",
  "type": "object",
  "description": "Details of a user removal from the enterprise.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The ID of the removed user."
    },
    "sharedBases": {
      "type": "array",
      "description": "Bases that were shared and reassigned.",
      "items": {
        "type": "object",
        "properties": {
          "baseId": {
            "type": "string"
          }
        }
      }
    },
    "unsharedBases": {
      "type": "array",
      "description": "Bases that were unshared as a result of removal.",
      "items": {
        "type": "object",
        "properties": {
          "baseId": {
            "type": "string"
          }
        }
      }
    }
  }
}