> 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 Movement Jobs # Type: Job Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/cms/operations/data-movement-jobs/job-object.md ## Description: Data movement job object. ## Schema: ```json Type: Job Object | type: DataMovementJob Description: Data movement job object. - name: id | type: string | description: Job ID. - name: startedAt | type: string | description: When the job was submitted. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: status | type: string | description: Current job status. enum: UNINITIALIZED, INITIALIZING, IN_PROGRESS, COMPLETED, FAILED, PARTIALLY_SUCCESSFUL - name: source | type: Source | description: Source to move data from. - name: destination | type: Destination | description: Destination to move data to. - name: name | type: string | description: Job name. - name: progress | type: Progress | description: When the job `status` is `IN_PROGRESS`, the progress details. - name: current | type: number | description: Number of units already processed. - name: total | type: number | description: Total number of units to move. - name: value | type: number | description: - name: itemsRejected | type: number | description: Number of items that failed to move to the destination. - name: itemsSuccessful | type: number | description: Number of items successfully moved to the destination. - name: finishedAt | type: string | description: Job finish time. A job is considered finished when its `status` updates to `COMPLETED`, `FAILED`, or `PARTIALLY_SUCCESSFUL`. - name: error | type: ApplicationError | description: Error information. - name: code | type: string | description: Error code. - name: description | type: string | description: Description of the error. - name: data | type: Struct | description: Data related to the error. - name: fields | type: object | description: - name: sourceSiteId | type: string | description: When moving data from a Wix data collection, the source site ID. By default, the source site is the current site. To move data from [any site in the same Wix Account](https://support.wix.com/en/article/managing-multiple-sites-under-one-account), specify the site ID, which you can retrieve by calling [Get App Instance](https://dev.wix.com/docs/rest/app-management/app-instance/get-app-instance.md). > **Note**: You can specify the ID of a source site or destination site, but not both. - name: destinationSiteId | type: string | description: When moving data to a Wix data collection, the destination site ID. By default, the destination site is the current site. To move data to [any site in the same Wix Account](https://support.wix.com/en/article/managing-multiple-sites-under-one-account), specify the site ID, which you can retrieve by calling [Get App Instance](https://dev.wix.com/docs/rest/app-management/app-instance/get-app-instance.md). > **Note**: You can specify the ID of a source site or destination site, but not both. - name: logsRecorded | type: number | description: Number of recorded logs. - name: scheduleId | type: string | description: Sync Schedule ID, if the job was triggered by a sync schedule. - name: value | type: string | description: - name: extendedFields | type: ExtendedFields | description: Extended fields for custom metadata added by applications. - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). - name: workflowId | type: string | description: Workflow ID, if the job was created as a child step of a workflow. ```