3M · JSON Structure

3M Partner Supplier Api Order Item Structure

A line item within an order

Type: object Properties: 3
IndustrialManufacturingSupply ChainFortune 100

OrderItem is a JSON Structure definition published by 3M, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

productId quantity unitPrice

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/3m/refs/heads/main/json-structure/3m-partner-supplier-api-order-item-structure.json",
  "name": "OrderItem",
  "description": "A line item within an order",
  "type": "object",
  "properties": {
    "productId": {
      "type": "string",
      "description": "Product identifier",
      "example": "PROD-12345"
    },
    "quantity": {
      "type": "int32",
      "description": "Quantity ordered",
      "example": 20
    },
    "unitPrice": {
      "type": "double",
      "description": "Unit price at time of order",
      "example": 24.99
    }
  }
}