Properties
| Name | Type | Description |
|---|---|---|
| string | Email address of the authenticated user. | |
| organizationDomain | string | Domain of the organization the authenticated user belongs to. |
| organizationName | string | Name of the organization the authenticated user belongs to. |
| displayName | string | Display name of the authenticated user. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/slite/main/json-schema/Me.json",
"title": "Me",
"properties": {
"email": {
"type": "string",
"description": "Email address of the authenticated user."
},
"organizationDomain": {
"type": "string",
"description": "Domain of the organization the authenticated user belongs to."
},
"organizationName": {
"type": "string",
"description": "Name of the organization the authenticated user belongs to."
},
"displayName": {
"type": "string",
"description": "Display name of the authenticated user."
}
},
"required": [
"email",
"organizationDomain",
"organizationName",
"displayName"
],
"type": "object"
}