Sentry · Schema

ScimListResponse

APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time Monitoring

Properties

Name Type Description
schemas array
totalResults integer
startIndex integer
itemsPerPage integer
Resources array
View JSON Schema on GitHub

JSON Schema

sentry-system-scimlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScimListResponse",
  "title": "ScimListResponse",
  "type": "object",
  "properties": {
    "schemas": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "totalResults": {
      "type": "integer"
    },
    "startIndex": {
      "type": "integer"
    },
    "itemsPerPage": {
      "type": "integer"
    },
    "Resources": {
      "type": "array",
      "items": {
        "type": "object"
      }
    }
  },
  "required": [
    "schemas",
    "totalResults",
    "Resources"
  ]
}