{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.synchronizationProgress", "title": "synchronizationProgress", "required": [ "@odata.type" ], "type": "object", "properties": { "completedUnits": { "type": "number", "description": "The numerator of a progress ratio; the number of units of changes already processed.", "format": "int64" }, "progressObservationDateTime": { "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", "type": "string", "description": "The time of a progress observation as an offset in minutes from UTC.", "format": "date-time" }, "totalUnits": { "type": "number", "description": "The denominator of a progress ratio; a number of units of changes to be processed to accomplish synchronization.", "format": "int64" }, "units": { "type": "string", "description": "An optional description of the units.", "nullable": true }, "@odata.type": { "type": "string" } } }