Hello everyone,
I am working on validating a source create profile JSON and the response has left me with a few questions. Here is the relevant part of the JSON:
{
"name": "division",
"transform": {
"attributes": {
"name": "location"
},
"type": "identityAttribute"
},
"attributes": {
"cloudRequired": "true"
},
"isRequired": false,
"type": "string",
"isMultiValued": false
}
I am trying to understand the role and configuration of the cloudRequired attribute within this JSON schema. Specifically, I would like to know:
- Where is
cloudRequiredset, if anywhere? Is it defined within IdentityNow, or is this a default setting? My thought is no, since I am not seeing it for some mappings. - What is the difference between
cloudRequiredandisRequired? It seems like both could pertain to attribute requirements, but there must be distinct uses or contexts for each.
Any insights or documentation references regarding these attributes would be greatly appreciated!
Thank you!