I am trying to extend the user model and add a new string property. If I understand, I can simply add it and return the value.
My question is how do I document this in the resource type endpoint. Currently we have just the basic scim implementation so we return
"Resources": [
{
"name": "User",
"description": "User Accounts",
"endpoint": "/Users",
"schema": "urn:ietf:params:scim:schemas:core:2.0:User",
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:ResourceType"
],
"id": "User",
"meta": {
"resourceType": "ResourceType",
"location": "https://apidsw017086.docusignhq.com/v201411/scim/resourcetypes/user"
}
}
Should I just add the attribute section and add the new attribute, or do I need to list all the default attributes as well?