{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SynchronizationSchema", "title": "SynchronizationSchema", "allOf": [ { "$ref": "#/components/schemas/Entity" }, { "title": "synchronizationSchema", "required": [ "@odata.type" ], "type": "object", "properties": { "synchronizationRules": { "type": "array", "items": { "$ref": "#/components/schemas/SynchronizationRule" }, "description": "A collection of synchronization rules configured for the synchronizationJob or synchronizationTemplate." }, "version": { "type": "string", "description": "The version of the schema, updated automatically with every schema change.", "nullable": true }, "directories": { "type": "array", "items": { "$ref": "#/components/schemas/DirectoryDefinition" }, "description": "Contains the collection of directories and all of their objects.", "x-ms-navigationProperty": true }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.synchronizationSchema" }