When configuring System for Cross-domain Identity Management (SCIM) inbound provisioning, you can define custom attributes.
PingFederate supports SCIM attributes in the core schema and custom
attributes through a schema extension.
Note:
To support custom attributes, you must specify the schema extension and the
custom attributes in the connection. There are four attribute types:Custom attributes are optional. If your use case does not require any additional attributes, click Next on the Custom SCIM Attributes tab.
- Simple attributes
- Simple multivalued attributes
- Complex attributes
- Complex multivalued attributes
urn:scim:schemas:extension:custom:1.0
with four attributes, one of
each attribute type. The table afterward describes the details of each
attribute.{
"userName":"CBrown",
"active":true,
"schemas":[
"urn:scim:schemas:core:1.0",
"urn:scim:schemas:extension:custom:1.0"
],
...
"urn:scim:schemas:extension:custom:1.0":{
"supervisor":"JSmith",
"territories":[
"Montana",
"Idaho",
"Wyoming"
],
"options":{
"quantity":"10000",
"strike" :"5.25",
"first" :"2017-12-01",
"last" :"2025-03-31"
},
"tablets":[
{
"model" :"8086",
"serial":"5500-2020-965",
"type" :"office"
},
{
"model" :"8088",
"serial":"5500-2040-151",
"type" :"remote"
}
]
}
}
Attribute Name | Attribute Type | Sub-Attributes (Complex) |
---|---|---|
supervisor | Simple | Not applicable |
territories | Simple multivalued | Not applicable |
options | Complex | quantity, strike, first, and last |
tablets | Complex multivalued |
model, serial, and
type. Note:
type is a reserved sub-attribute for a complex multivalued attribute. |
Tip:
For more information about SCIM and attribute types, see the website www.simplecloud.info.