Amplitude · Schema

ScimUserListResponse

A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

Properties

Name Type Description
schemas array The SCIM schema URIs for this response.
totalResults integer The total number of matching users.
startIndex integer The 1-based index of the first result.
itemsPerPage integer The number of results returned in this page.
Resources array Array of SCIM user resources.
View JSON Schema on GitHub

JSON Schema

amplitude-scimuserlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScimUserListResponse",
  "title": "ScimUserListResponse",
  "type": "object",
  "properties": {
    "schemas": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "The SCIM schema URIs for this response."
    },
    "totalResults": {
      "type": "integer",
      "description": "The total number of matching users."
    },
    "startIndex": {
      "type": "integer",
      "description": "The 1-based index of the first result."
    },
    "itemsPerPage": {
      "type": "integer",
      "description": "The number of results returned in this page."
    },
    "Resources": {
      "type": "array",
      "description": "Array of SCIM user resources.",
      "items": {
        "$ref": "#/components/schemas/ScimUser"
      }
    }
  }
}