Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| firstName | string | |
| lastName | string | |
| string | ||
| title | stringnull | |
| companyName | stringnull | |
| photo | object | |
| followersCount | integer | |
| followingCounts | object | |
| groupCount | integer | |
| isActive | boolean | |
| url | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ChatterUser",
"title": "ChatterUser",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"email": {
"type": "string"
},
"title": {
"type": [
"string",
"null"
]
},
"companyName": {
"type": [
"string",
"null"
]
},
"photo": {
"type": "object",
"properties": {
"smallPhotoUrl": {
"type": "string"
},
"largePhotoUrl": {
"type": "string"
}
}
},
"followersCount": {
"type": "integer"
},
"followingCounts": {
"type": "object",
"properties": {
"people": {
"type": "integer"
},
"records": {
"type": "integer"
},
"total": {
"type": "integer"
}
}
},
"groupCount": {
"type": "integer"
},
"isActive": {
"type": "boolean"
},
"url": {
"type": "string"
}
}
}