Airtable · Schema

ScimMeta

SCIM resource metadata.

ApplicationsCollaborationDataDatabasesLow-CodeProductivitySpreadsheets

Properties

Name Type Description
resourceType string The type of resource (User or Group).
created string The time when the resource was created.
lastModified string The time when the resource was last modified.
View JSON Schema on GitHub

JSON Schema

airtable-scimmeta-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScimMeta",
  "title": "ScimMeta",
  "type": "object",
  "description": "SCIM resource metadata.",
  "properties": {
    "resourceType": {
      "type": "string",
      "description": "The type of resource (User or Group)."
    },
    "created": {
      "type": "string",
      "format": "date-time",
      "description": "The time when the resource was created."
    },
    "lastModified": {
      "type": "string",
      "format": "date-time",
      "description": "The time when the resource was last modified."
    }
  }
}