Unified.to · Schema

ScimUserGroups

IntegrationsUnified API

Properties

Name Type Description
$ref string
display string
type string
value string
View JSON Schema on GitHub

JSON Schema

unified-to-scimusergroups-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScimUserGroups",
  "title": "ScimUserGroups",
  "properties": {
    "$ref": {
      "type": "string"
    },
    "display": {
      "type": "string"
    },
    "type": {
      "enum": [
        "direct",
        "indirect"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "value": {
      "type": "string"
    }
  },
  "required": [
    "value"
  ],
  "type": "object"
}