Airtable · Schema

ScimGroupListResponse

A SCIM 2.0 ListResponse containing group resources.

ApplicationsCollaborationDataDatabasesLow-CodeProductivitySpreadsheets

Properties

Name Type Description
schemas array
totalResults integer The total number of results matching the query.
itemsPerPage integer The number of results returned in this page.
startIndex integer The 1-based index of the first result in this page.
Resources array The list of SCIM group resources.
View JSON Schema on GitHub

JSON Schema

airtable-scimgrouplistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScimGroupListResponse",
  "title": "ScimGroupListResponse",
  "type": "object",
  "description": "A SCIM 2.0 ListResponse containing group resources.",
  "properties": {
    "schemas": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "default": [
        "urn:ietf:params:scim:api:messages:2.0:ListResponse"
      ]
    },
    "totalResults": {
      "type": "integer",
      "description": "The total number of results matching the query."
    },
    "itemsPerPage": {
      "type": "integer",
      "description": "The number of results returned in this page."
    },
    "startIndex": {
      "type": "integer",
      "description": "The 1-based index of the first result in this page."
    },
    "Resources": {
      "type": "array",
      "description": "The list of SCIM group resources.",
      "items": {
        "$ref": "#/components/schemas/ScimGroup"
      }
    }
  },
  "required": [
    "schemas",
    "totalResults",
    "Resources"
  ]
}