> 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: Async Job # Type: Async Job Object # Link: https://dev.wix.com/docs/api-reference/business-management/async-job/async-job-object.md ## Schema: ```json Type: Async Job Object | type: AsyncJob - name: id | type: string | description: Job ID. - name: metadata | type: Struct | description: Optional job metadata, used to store any parameters used during job execution, user-defined statuses, etc. - name: fields | type: object | description: - name: status | type: string | description: Current job execution status. enum: UNKNOWN, INITIALIZED, PROCESSING, FINISHED, FAILED - name: counters | type: Counters | description: Current counters. - name: itemsToProcess | type: number | description: Optional count of the dataset size, as specified during job creation. Can be used for progress bars, etc. - name: value | type: number | description: - name: itemsSucceeded | type: number | description: Amount of items that were successfully processed. - name: itemsFailed | type: number | description: Amount of items whose processing failed. - name: errorCountByCode | type: object | description: Mapping between an error code and the number of failures associated with it. - name: createdDate | type: string | description: Date and time the job was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Date and time the job was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#combined_date_and_time_representations) format. - name: owner | type: Owner | description: Job owner. - name: createdBy | type: CreatedBy | description: Job creator. - name: type | type: string | description: The type of the creator. enum: UNKNOWN_TYPE, ANONYMOUS_VISITOR_ID, MEMBER_ID, WIX_USER_ID, APP_ID - name: counts | type: Counts | description: Current execution counts. - name: total | type: number | description: Optional count of the dataset size, specified during job creation. Can be used for progress bars, etc. - name: successCount | type: number | description: Amount of items that were successfully processed. - name: failCount | type: number | description: Amount of items whose processing failed. - name: errorByCodeCount | type: object | description: Mapping between an error code and the number of failures associated with it. ```