{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.eBookInstallSummary", "title": "microsoft.graph.eBookInstallSummary", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "eBookInstallSummary", "required": [ "@odata.type" ], "type": "object", "properties": { "failedDeviceCount": { "maximum": 2147483647, "minimum": -2147483648, "type": "number", "description": "Number of Devices that have failed to install this book.", "format": "int32" }, "failedUserCount": { "maximum": 2147483647, "minimum": -2147483648, "type": "number", "description": "Number of Users that have 1 or more device that failed to install this book.", "format": "int32" }, "installedDeviceCount": { "maximum": 2147483647, "minimum": -2147483648, "type": "number", "description": "Number of Devices that have successfully installed this book.", "format": "int32" }, "installedUserCount": { "maximum": 2147483647, "minimum": -2147483648, "type": "number", "description": "Number of Users whose devices have all succeeded to install this book.", "format": "int32" }, "notInstalledDeviceCount": { "maximum": 2147483647, "minimum": -2147483648, "type": "number", "description": "Number of Devices that does not have this book installed.", "format": "int32" }, "notInstalledUserCount": { "maximum": 2147483647, "minimum": -2147483648, "type": "number", "description": "Number of Users that did not install this book.", "format": "int32" }, "@odata.type": { "type": "string" } }, "description": "Contains properties for the installation summary of a book for a device." } ], "x-ms-discriminator-value": "#microsoft.graph.eBookInstallSummary" }