Microsoft Graph · Schema
microsoft.graph.synchronizationJob
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.synchronizationJob",
"title": "microsoft.graph.synchronizationJob",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "synchronizationJob",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"schedule": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.synchronizationSchedule"
},
{
"type": "object",
"nullable": true
}
],
"description": "Schedule used to run the job. Read-only."
},
"status": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.synchronizationStatus"
},
{
"type": "object",
"nullable": true
}
],
"description": "Status of the job, which includes when the job was last run, current job state, and errors."
},
"synchronizationJobSettings": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.keyValuePair"
},
"description": "Settings associated with the job. Some settings are inherited from the template."
},
"templateId": {
"type": "string",
"description": "Identifier of the synchronization template this job is based on.",
"nullable": true
},
"bulkUpload": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.bulkUpload"
},
{
"type": "object",
"nullable": true
}
],
"description": "The bulk upload operation for the job.",
"x-ms-navigationProperty": true
},
"schema": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.synchronizationSchema"
},
{
"type": "object",
"nullable": true
}
],
"description": "The synchronization schema configured for the job.",
"x-ms-navigationProperty": true
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.synchronizationJob"
}