{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.profilePhoto", "title": "microsoft.graph.profilePhoto", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "profilePhoto", "required": [ "@odata.type" ], "type": "object", "properties": { "height": { "maximum": 2147483647, "minimum": -2147483648, "type": "number", "description": "The height of the photo. Read-only.", "format": "int32", "nullable": true }, "width": { "maximum": 2147483647, "minimum": -2147483648, "type": "number", "description": "The width of the photo. Read-only.", "format": "int32", "nullable": true }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.profilePhoto" }