{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.sharePointMigrationJobProgressEvent", "title": "microsoft.graph.sharePointMigrationJobProgressEvent", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.sharePointMigrationEvent" }, { "title": "sharePointMigrationJobProgressEvent", "required": [ "@odata.type" ], "type": "object", "properties": { "bytesProcessed": { "type": "number", "description": "The number of bytes processed. Read-only.", "format": "int64" }, "bytesProcessedOnlyCurrentVersion": { "type": "number", "description": "The number of bytes processed with version history excluded. Read-only.", "format": "int64" }, "cpuDurationMs": { "type": "number", "description": "CPU duration in milliseconds. Read-only.", "format": "int64" }, "filesProcessed": { "type": "number", "description": "The number of files processed. Read-only.", "format": "int64" }, "filesProcessedOnlyCurrentVersion": { "type": "number", "description": "The number of files processed with version history excluded. Read-only.", "format": "int64" }, "isCompleted": { "type": "boolean", "description": "True if the job status is End. False if the job is In progress. Read-only." }, "lastProcessedObjectId": { "type": "string", "description": "The unique identifier of the last object processed. Read-only." }, "objectsProcessed": { "type": "number", "description": "The number of objects processed. Read-only.", "format": "int64" }, "sqlDurationMs": { "type": "number", "description": "SQL duration in milliseconds. Read-only.", "format": "int64" }, "sqlQueryCount": { "type": "number", "description": "SQL query count. Read-only.", "format": "int64" }, "totalDurationMs": { "type": "number", "description": "Total duration time in milliseconds. Read-only.", "format": "int64" }, "totalErrors": { "type": "number", "description": "Total errors. Read-only.", "format": "int64" }, "totalExpectedBytes": { "type": "number", "description": "Total bytes to be processed. Read-only.", "format": "int64" }, "totalExpectedObjects": { "type": "number", "description": "The number of objects to process. Read-only.", "format": "int64" }, "totalRetryCount": { "maximum": 2147483647, "minimum": -2147483648, "type": "number", "description": "The current retry count of the job. Read-only.", "format": "int32" }, "totalWarnings": { "type": "number", "description": "Total warnings. Read-only.", "format": "int64" }, "waitTimeOnSqlThrottlingMs": { "type": "number", "description": "Waiting time due to SQL throttling, in milliseconds. Read-only.", "format": "int64" }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.sharePointMigrationJobProgressEvent" }