Max limit values

I’m looking for the below answers that I haven’t been able to find any definitive answers.

With workday Integration System we are only pulling the first value of the object in Workday. This is with a SaaS connector. We are considering the possibility to having multiple concatinated values with multiple delimiters. One delimiter to deliniate multiple positions and another delimiter to represent the data fields for the position.

the concern here is that we might exceed the source attribute value length.

What is the maximum length of a string on an account attribute?
What is the maximum length of a string on an ISC Identity Attribute?
What is the maximum number of multiple values one can have on an attribute? (How large can the array grow?)

It seems that Workday Integration custom fields only represents a single value, rather than multiple values, is this correct or is there a way to pull multiple values? (Yes the schema has been set to multi-valued on the connector and an aggregation performed)

As a test I did try to add the custom fields to the source configuration:

“connectorAttributes”: {
“healthCheckTimeout”: 90,
“idnProxyType”: “sp-connect”,
“multiValueAttr”: [
“TEST_ALL_JOB_CODES”,
“ALL_JOB_CODES”,
“ALL_L0CATIONS”,
“ALL_POSITION_IDS”,
“ALL_POSITION_START_DATES”,
“ALL_POSITION_END_DATES”,
“ALL_JOB_TITLES”,
“TEST_FIELD_1__c”,
“TEST_TEXT_FIELD__c”,
“TEST_SINGLE_OBJECT_FIELD__c”
],

Thanks!

Hello @ts_fpatterson
I found the following in Sailpoint documentation:

1.Max length of a string on an account attribute is 128 characters.
image

2.Max length of a string on an ISC identity attribute is 450 characters

3.Multi-valued behavior. I was able to find multi valued attribute display issue not necessarily retrieve all values.

I hope these might help a little bit :slight_smile:

Thanks

Thanks Shawn,

We are using the SaaS connector and are pulling multiple attribute values after some work. However, some data is not under Worker_Data and we are trying to pull in the data with the custom Integration System. But those values seem to only be pulling the first value and don’t know how to pull in all values from workday for that field.

The concern we have is that with 128 max length, we wouldn’t be able to confidently put everything into a single string on the value with the Integration System.