Amazon Supply Chain · Schema
BillOfMaterialsImportJob
A bill of materials import job
ERP IntegrationLogisticsMachine LearningSupply Chain
Properties
| Name | Type | Description |
|---|---|---|
| instanceId | string | The instance identifier |
| jobId | string | The job identifier |
| status | string | The job status |
| s3uri | string | The S3 URI of the import file |
| message | string | Status message |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-supply-chain/refs/heads/main/json-schema/amazon-supply-chain-bill-of-materials-import-job-schema.json",
"title": "BillOfMaterialsImportJob",
"description": "A bill of materials import job",
"type": "object",
"properties": {
"instanceId": {
"type": "string",
"description": "The instance identifier",
"example": "inst-abc12345"
},
"jobId": {
"type": "string",
"description": "The job identifier",
"example": "job-abc12345"
},
"status": {
"type": "string",
"enum": [
"New",
"Failed",
"InProgress",
"Queued",
"Success"
],
"description": "The job status",
"example": "Success"
},
"s3uri": {
"type": "string",
"description": "The S3 URI of the import file",
"example": "s3://my-bucket/bom-data.csv"
},
"message": {
"type": "string",
"description": "Status message"
}
}
}