Properties
| Name | Type | Description |
|---|---|---|
| origin_company_id | stringnull | Unique identifier for the company of the Registered User |
| origin_company_name | stringnull | The human readable name of the company of the Registered User |
| custom_groupings | object | Optional identifier / grouping that you can provide to further segment Registered Users |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SharedCredentialGroup",
"title": "SharedCredentialGroup",
"type": "object",
"properties": {
"origin_company_id": {
"type": [
"string",
"null"
],
"description": "Unique identifier for the company of the Registered User"
},
"origin_company_name": {
"type": [
"string",
"null"
],
"description": "The human readable name of the company of the Registered User"
},
"custom_groupings": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Optional identifier / grouping that you can provide to further segment Registered Users"
}
}
}