Properties
| Name | Type | Description |
|---|---|---|
| $ref | string | |
| display | string | |
| operation | string | |
| type | string | |
| value | string |
JSON Schema
{
"$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"
}