| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] | |
| properties | Dict[str, UserSchemaAttribute] | [optional] | |
| required | List[str] | [optional] | |
| type | str | [optional] |
from okta.models.user_schema_public import UserSchemaPublic
# TODO update the JSON string below
json = "{}"
# create an instance of UserSchemaPublic from a JSON string
user_schema_public_instance = UserSchemaPublic.from_json(json)
# print the JSON string representation of the object
print(UserSchemaPublic.to_json())
# convert the object into a dict
user_schema_public_dict = user_schema_public_instance.to_dict()
# create an instance of UserSchemaPublic from a dict
user_schema_public_from_dict = UserSchemaPublic.from_dict(user_schema_public_dict)