Skip to main content

DimensionAttribute

A dimension attribute

Properties

NameTypeDescriptionNotes
namestrName of the attribute[optional]
display_namestrDisplay name of the attribute[optional]
derivedboolIf an attribute is derived, its value comes from the identity. Otherwise, it can be provided with access request[optional] [default to True]
}

Example

from sailpoint.v2025.models.dimension_attribute import DimensionAttribute

dimension_attribute = DimensionAttribute(
name='city',
display_name='City',
derived=True
)

[Back to top]