Skip to main content

Createdatadictionaryfieldrequest

Request body for creating a custom data dictionary field.

Properties

NameTypeDescriptionNotes
namestrThe unique field name to create.[required]
data_dictionary_typeEnum [ 'Users', 'Roles', 'Permission Types', 'Business Resources' ]The data dictionary that owns this field.[required]
}

Example

from sailpoint.data_access_security.models.createdatadictionaryfieldrequest import Createdatadictionaryfieldrequest

createdatadictionaryfieldrequest = Createdatadictionaryfieldrequest(
name='Department',
data_dictionary_type='Users'
)

[Back to top]