SAP BI Tools · Schema

ScimListResponse

A paginated list response conforming to SCIM 2.0 protocol.

AnalyticsBusiness IntelligenceData VisualizationReportingSAP

Properties

Name Type Description
totalResults integer The total number of results matching the query
itemsPerPage integer The number of results returned per page
startIndex integer The starting index of the returned results
Resources array The list of resources in the current page
View JSON Schema on GitHub

JSON Schema

sap-bi-tools-scimlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScimListResponse",
  "title": "ScimListResponse",
  "type": "object",
  "description": "A paginated list response conforming to SCIM 2.0 protocol.",
  "properties": {
    "totalResults": {
      "type": "integer",
      "description": "The total number of results matching the query"
    },
    "itemsPerPage": {
      "type": "integer",
      "description": "The number of results returned per page"
    },
    "startIndex": {
      "type": "integer",
      "description": "The starting index of the returned results"
    },
    "Resources": {
      "type": "array",
      "description": "The list of resources in the current page",
      "items": {
        "type": "object"
      }
    }
  }
}