--- sidebar_label: 'Overview' sidebar_position: 1 --- # Building a data import job Data import jobs in Future Ordering are responsible for creating import entities that later jobs in the same flow can process. Each job gathers or transforms source data and uploads entities for downstream jobs to consume. ## Import job flow ```mermaid sequenceDiagram participant fo as Future Ordering participant int as Data Import Job note over fo : An import flow is started fo->>+int: The orchestration system calls the job's configured endpoint int-->>-fo: 202 Accepted note over int : The job starts processing the request and gathers data to upload int->>fo: Progress report note over int : The job finishes processing the request int->>+fo: Upload entities fo-->>-int: SAS URL int->>fo: Complete report note over fo: The import continues with subsequent jobs in the flow ```