Unified.to · Schema

ScimGroupMember

IntegrationsUnified API

Properties

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

JSON Schema

unified-to-scimgroupmember-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScimGroupMember",
  "title": "ScimGroupMember",
  "properties": {
    "$ref": {
      "type": "string"
    },
    "display": {
      "type": "string"
    },
    "operation": {
      "enum": [
        "add",
        "delete"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "type": {
      "enum": [
        "User",
        "Group"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "value": {
      "type": "string"
    }
  },
  "required": [
    "value"
  ],
  "type": "object"
}