Salesforce · Schema
SuccessfulUserInfo
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| sub | string | |
| user_id | string | |
| organization_id | string | |
| preferred_username | string | |
| nickname | string | |
| name | string | |
| string | ||
| email_verified | boolean | |
| given_name | string | |
| family_name | string | |
| zoneinfo | string | |
| photos | object | |
| profile | string | |
| picture | string | |
| address | object | |
| is_salesforce_integration_user | boolean | |
| urls | object | |
| active | boolean | |
| user_type | string | |
| language | string | |
| locale | string | |
| utcOffset | integer | |
| updated_at | string | |
| is_app_installed | boolean |
JSON Schema
{
"type": "object",
"properties": {
"sub": {
"type": "string",
"example": "example_value"
},
"user_id": {
"type": "string",
"example": "500123"
},
"organization_id": {
"type": "string",
"example": "500123"
},
"preferred_username": {
"type": "string",
"example": "example_value"
},
"nickname": {
"type": "string",
"example": "example_value"
},
"name": {
"type": "string",
"example": "Example Title"
},
"email": {
"type": "string",
"example": "user@example.com"
},
"email_verified": {
"type": "boolean",
"example": "user@example.com"
},
"given_name": {
"type": "string",
"example": "example_value"
},
"family_name": {
"type": "string",
"example": "example_value"
},
"zoneinfo": {
"type": "string",
"example": "example_value"
},
"photos": {
"type": "object",
"properties": {
"picture": {
"type": "string",
"example": "example_value"
},
"thumbnail": {
"type": "string",
"example": "example_value"
}
},
"required": [
"picture",
"thumbnail"
]
},
"profile": {
"type": "string",
"example": "example_value"
},
"picture": {
"type": "string",
"example": "example_value"
},
"address": {
"type": "object",
"properties": {
"country": {
"type": "string",
"example": 42
}
},
"required": [
"country"
]
},
"is_salesforce_integration_user": {
"type": "boolean",
"example": true
},
"urls": {
"type": "object",
"properties": {
"enterprise": {
"type": "string",
"example": "example_value"
},
"metadata": {
"type": "string",
"example": "example_value"
},
"partner": {
"type": "string",
"example": "example_value"
},
"rest": {
"type": "string",
"example": "example_value"
},
"sobjects": {
"type": "string",
"example": "example_value"
},
"search": {
"type": "string",
"example": "example_value"
},
"query": {
"type": "string",
"example": "example_value"
},
"recent": {
"type": "string",
"example": "example_value"
},
"tooling_soap": {
"type": "string",
"example": "example_value"
},
"tooling_rest": {
"type": "string",
"example": "example_value"
},
"profile": {
"type": "string",
"example": "example_value"
},
"feeds": {
"type": "string",
"example": "example_value"
},
"groups": {
"type": "string",
"example": "example_value"
},
"users": {
"type": "string",
"example": "example_value"
},
"feed_items": {
"type": "string",
"example": "example_value"
},
"feed_elements": {
"type": "string",
"example": "example_value"
},
"custom_domain": {
"type": "string",
"example": "example_value"
}
},
"required": [
"enterprise",
"metadata",
"partner",
"rest",
"sobjects",
"search",
"query",
"recent",
"tooling_soap",
"tooling_rest",
"profile",
"feeds",
"groups",
"users",
"feed_items",
"feed_elements",
"custom_domain"
]
},
"active": {
"type": "boolean",
"example": true
},
"user_type": {
"type": "string",
"example": "example_value"
},
"language": {
"type": "string",
"example": "example_value"
},
"locale": {
"type": "string",
"example": "example_value"
},
"utcOffset": {
"type": "integer",
"example": 10
},
"updated_at": {
"type": "string",
"example": "2026-01-15T10:30:00Z"
},
"is_app_installed": {
"type": "boolean",
"example": true
}
},
"required": [
"sub",
"user_id",
"organization_id",
"preferred_username",
"nickname",
"name",
"email",
"email_verified",
"given_name",
"family_name",
"zoneinfo",
"photos",
"profile",
"picture",
"address",
"is_salesforce_integration_user",
"urls",
"active",
"user_type",
"language",
"locale",
"utcOffset",
"updated_at",
"is_app_installed"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SuccessfulUserInfo"
}