Amazon Supply Chain · JSON Structure

Amazon Supply Chain Bill Of Materials Import Job Structure

A bill of materials import job

Type: object Properties: 5
ERP IntegrationLogisticsMachine LearningSupply Chain

BillOfMaterialsImportJob is a JSON Structure definition published by Amazon Supply Chain, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

instanceId jobId status s3uri message

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-supply-chain/refs/heads/main/json-structure/amazon-supply-chain-bill-of-materials-import-job-structure.json",
  "name": "BillOfMaterialsImportJob",
  "description": "A bill of materials import job",
  "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"
    }
  }
}