scim-enterprise-group-list

APIs.ioEngineeringPlatform

Properties

Name Type Description
schemas array The URIs that are used to indicate the namespaces of the list SCIM schemas.
totalResults integer Number of results found
Resources array Information about each provisioned group.
startIndex integer A starting index for the returned page
itemsPerPage integer Number of objects per page
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-scim-enterprise-group-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/scim-enterprise-group-list",
  "title": "scim-enterprise-group-list",
  "type": "object",
  "required": [
    "schemas",
    "totalResults",
    "Resources",
    "startIndex",
    "itemsPerPage"
  ],
  "properties": {
    "schemas": {
      "type": "array",
      "description": "The URIs that are used to indicate the namespaces of the list SCIM schemas.",
      "items": {
        "type": "string",
        "enum": [
          "urn:ietf:params:scim:api:messages:2.0:ListResponse"
        ]
      },
      "example": [
        "urn:ietf:params:scim:api:messages:2.0:ListResponse"
      ]
    },
    "totalResults": {
      "type": "integer",
      "description": "Number of results found",
      "example": 1
    },
    "Resources": {
      "type": "array",
      "description": "Information about each provisioned group.",
      "items": {
        "$ref": "#/components/schemas/scim-enterprise-group-response"
      }
    },
    "startIndex": {
      "type": "integer",
      "description": "A starting index for the returned page",
      "example": 1
    },
    "itemsPerPage": {
      "type": "integer",
      "description": "Number of objects per page",
      "example": 20
    }
  }
}