Airtable · Schema

ScimError

A SCIM 2.0 error response.

ApplicationsCollaborationDataDatabasesLow-CodeProductivitySpreadsheets

Properties

Name Type Description
schemas array
detail string A human-readable description of the error.
status string The HTTP status code as a string.
scimType string The SCIM error type.
View JSON Schema on GitHub

JSON Schema

airtable-scimerror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScimError",
  "title": "ScimError",
  "type": "object",
  "description": "A SCIM 2.0 error response.",
  "properties": {
    "schemas": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "default": [
        "urn:ietf:params:scim:api:messages:2.0:Error"
      ]
    },
    "detail": {
      "type": "string",
      "description": "A human-readable description of the error."
    },
    "status": {
      "type": "string",
      "description": "The HTTP status code as a string."
    },
    "scimType": {
      "type": "string",
      "description": "The SCIM error type."
    }
  }
}