| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | [optional] | |
| enum | List[str] | [optional] | |
| external_name | str | [optional] | |
| external_namespace | str | [optional] | |
| items | UserSchemaAttributeItems | [optional] | |
| master | UserSchemaAttributeMaster | [optional] | |
| max_length | int | [optional] | |
| min_length | int | [optional] | |
| mutability | str | [optional] | |
| one_of | List[UserSchemaAttributeEnum] | [optional] | |
| pattern | str | [optional] | |
| permissions | List[UserSchemaAttributePermission] | [optional] | |
| required | bool | [optional] | |
| scope | UserSchemaAttributeScope | [optional] | |
| title | str | [optional] | |
| type | UserSchemaAttributeType | [optional] | |
| union | UserSchemaAttributeUnion | [optional] | |
| unique | str | [optional] |
from okta.models.user_schema_attribute import UserSchemaAttribute
# TODO update the JSON string below
json = "{}"
# create an instance of UserSchemaAttribute from a JSON string
user_schema_attribute_instance = UserSchemaAttribute.from_json(json)
# print the JSON string representation of the object
print(UserSchemaAttribute.to_json())
# convert the object into a dict
user_schema_attribute_dict = user_schema_attribute_instance.to_dict()
# create an instance of UserSchemaAttribute from a dict
user_schema_attribute_from_dict = UserSchemaAttribute.from_dict(user_schema_attribute_dict)