Last active
May 19, 2022 16:20
-
-
Save sb8244/b5fc3b38faf42754445a016934e46c9f to your computer and use it in GitHub Desktop.
Clove SSO schema
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"user": { | |
"id": "(Required) String: The ID of the user logging into Clove", | |
"email": "String: The email address of the user", | |
"name": "String: Full name of the user", | |
"given_name": "String: First name of the user", | |
"family_name": "String: Last name of the user", | |
"custom_data": "Map: Arbitrary data container for your application", | |
"organization": { | |
"id": "(Required if organization key present) String: The ID of the organization this user belongs to", | |
"name": "String: Name of the organization", | |
"custom_data": "Map: Arbitrary data container for your application", | |
"assigned_team_members": "Array[String]: List of emails that are assigned to this org" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment