> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Data Sync Jobs # Type: Jobs Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/cms/operations/data-sync-jobs/jobs-object.md ## Description: A scheduled data movement workflow that automatically runs [data movement workflows](https://dev.wix.com/docs/api-reference/business-solutions/cms/operations/data-movement-jobs/introduction.md) on a schedule. Scheduled data movement workflows use cron expressions to define when to move data between sources and destinations. Each scheduled execution creates a new [data movement workflow](https://dev.wix.com/docs/api-reference/business-solutions/cms/operations/data-movement-jobs/introduction.md) that can be tracked separately. ## Schema: ```json Type: Jobs Object | type: ScheduledDataMovementWorkflow Description: A scheduled data movement workflow that automatically runs [data movement workflows](https://dev.wix.com/docs/api-reference/business-solutions/cms/operations/data-movement-jobs/introduction.md) on a schedule. Scheduled data movement workflows use cron expressions to define when to move data between sources and destinations. Each scheduled execution creates a new [data movement workflow](https://dev.wix.com/docs/api-reference/business-solutions/cms/operations/data-movement-jobs/introduction.md) that can be tracked separately. - name: id | type: string | description: Scheduled data movement workflow ID. - name: revision | type: string | description: Revision number that increments by 1 each time the scheduled data movement workflow updates. To prevent conflicting changes, pass the current revision when updating. Ignored when creating a scheduled data movement workflow. - name: value | type: string | description: - name: name | type: string | description: Scheduled data movement workflow name. - name: enabled | type: boolean | description: Whether the scheduled data movement workflow is enabled for execution. When `true`, it runs according to the schedule defined by `cronExpression`. When `false`, it doesn't run. - name: cronExpression | type: string | description: [Cron expression](https://en.wikipedia.org/wiki/Cron#Cron_expression) defining when the scheduled data movement workflow should run. Uses standard 5-field cron format (minute, hour, day of month, month, day of week) in [UTC](https://en.wikipedia.org/wiki/Coordinated_Universal_Time). Supports using `H` for minute randomization. For example, `0 2 * * *` runs daily at 2\:00 AM UTC, or `H 2 * * *` runs daily at 2\:XX AM UTC where XX is a random minute. - name: lastExecutionDate | type: string | description: Date and time when the scheduled data movement workflow was last run. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: nextExecutionDate | type: string | description: Date and time when the scheduled data movement workflow is scheduled to run next. Calculated based on the cron expression and current time. Returned only when the request includes `nextScheduleExecution` in the `fields` parameter. - name: workflow | type: ScheduledDataMovementWorkflowSpec | description: Ordered workflow specification describing what should run when the schedule fires. - name: steps | type: Array | description: Ordered workflow steps. - name: source | type: Source | description: Source to read data from. - name: destination | type: Destination | description: Destination to write data to. - name: lastWorkflowId | type: string | description: ID of the data movement workflow created by the most recent execution. ```