Airtable · Schema

ScimGroupCreateRequest

Request body for creating or replacing a SCIM group.

ApplicationsCollaborationDataDatabasesLow-CodeProductivitySpreadsheets

Properties

Name Type Description
schemas array
displayName string The display name of the group.
members array The initial members of the group.
View JSON Schema on GitHub

JSON Schema

airtable-scimgroupcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScimGroupCreateRequest",
  "title": "ScimGroupCreateRequest",
  "type": "object",
  "description": "Request body for creating or replacing a SCIM group.",
  "properties": {
    "schemas": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "default": [
        "urn:ietf:params:scim:schemas:core:2.0:Group"
      ]
    },
    "displayName": {
      "type": "string",
      "description": "The display name of the group."
    },
    "members": {
      "type": "array",
      "description": "The initial members of the group.",
      "items": {
        "type": "object",
        "properties": {
          "value": {
            "type": "string",
            "description": "The ID of the member user."
          }
        }
      }
    }
  },
  "required": [
    "schemas",
    "displayName"
  ]
}