{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserDetail", "title": "UserDetail", "type": "object", "properties": { "aboutMe": { "type": "string", "nullable": true }, "companyName": { "type": "string" }, "displayName": { "type": "string" }, "email": { "type": "string" }, "firstName": { "type": "string" }, "followersCount": { "type": "integer" }, "followingCounts": { "type": "object", "properties": { "people": { "type": "integer" }, "records": { "type": "integer" }, "total": { "type": "integer" } } }, "groupCount": { "type": "integer" }, "id": { "type": "string" }, "isActive": { "type": "boolean" }, "lastName": { "type": "string" }, "name": { "type": "string" }, "photo": { "type": "object", "properties": { "smallPhotoUrl": { "type": "string" }, "mediumPhotoUrl": { "type": "string" }, "largePhotoUrl": { "type": "string" } } }, "title": { "type": "string", "nullable": true }, "type": { "type": "string" }, "url": { "type": "string" }, "username": { "type": "string" } } }