Airtable · Schema

RecordDeleted

Confirmation that a record was deleted.

ApplicationsCollaborationDataDatabasesLow-CodeProductivitySpreadsheets

Properties

Name Type Description
id string The ID of the deleted record.
deleted boolean Always true when the deletion succeeds.
View JSON Schema on GitHub

JSON Schema

airtable-recorddeleted-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RecordDeleted",
  "title": "RecordDeleted",
  "type": "object",
  "description": "Confirmation that a record was deleted.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The ID of the deleted record."
    },
    "deleted": {
      "type": "boolean",
      "description": "Always true when the deletion succeeds."
    }
  },
  "required": [
    "id",
    "deleted"
  ]
}