I would like to know how to map custom attributes under schema mapping. In my scenario below json has roleName as custom attribute.
“urn:ietf:params:scim:schemas:core:2.0:User”:{
“roleName”:“ADMIN”
}
i need to map in schema and provision during the account creation and modification. Can someone please help me with this requirement.
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"id": "User",
"name": "User",
"urn:ietf:params:scim:schemas:core:2.0:User":{
"roleName":"ADMIN"
},
"attributes": [
{
"name": "roleName",
"type": "string",
"multiValued": false,
"description": "User role in the system",
"required": false
}
]
}