Properties
| Name | Type | Description |
|---|---|---|
| companyName | string | |
| displayName | string | |
| id | string | |
| name | string | |
| photo | object | |
| title | string | |
| type | string | |
| url | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UserSummary",
"title": "UserSummary",
"type": "object",
"properties": {
"companyName": {
"type": "string",
"nullable": true
},
"displayName": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"photo": {
"type": "object",
"properties": {
"smallPhotoUrl": {
"type": "string"
},
"mediumPhotoUrl": {
"type": "string"
}
}
},
"title": {
"type": "string",
"nullable": true
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
}
}