Collaboration Group Object
For Existing Sources:
Update the Account schema with the following schema attribute to start managing Collaboration Groups in Account Aggregation.
Refer to Updating the Schema for more information.
Copy
{
"name": "CollaborationGroup",
"type": "STRING",
"schema": {
"type": "CONNECTOR_SCHEMA",
"id": <Add the Schema ID for the Collaboration Group Object>,
"name": "CollaborationGroup"
},
"description": null,
"isMulti": true,
"isEntitlement": true,
"isGroup": true
},
To aggregate Collaboration Groups as Group Objects:
Add the following JSON using the Creates a new Schema on the specified Source in Identity Security Cloud process.
Copy
{
"name": "CollaborationGroup",
"nativeObjectType": "CollaborationGroup",
"identityAttribute": "Id",
"displayAttribute": "Name",
"hierarchyAttribute": null,
"includePermissions": false,
"features": [],
"configuration": {},
"attributes": [
{
"name": "Id",
"type": "STRING",
"schema": null,
"description": "Collaboration Group Id.",
"isMulti": false,
"isEntitlement": false,
"isGroup": false
},
{
"name": "Name",
"type": "STRING",
"schema": null,
"description": "Collaboration Group name.",
"isMulti": false,
"isEntitlement": false,
"isGroup": false
},
{
"name": "CollaborationType",
"type": "STRING",
"schema": null,
"description": "Collaboration Group Type.",
"isMulti": false,
"isEntitlement": false,
"isGroup": false
}
]
}