3M · JSON Structure

3M Partner Supplier Api Create Order Request Structure

Request body for creating a new order

Type: object Properties: 2 Required: 2
IndustrialManufacturingSupply ChainFortune 100

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

Properties

items shippingAddress

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-create-order-request-structure.json",
  "name": "CreateOrderRequest",
  "description": "Request body for creating a new order",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "Line items to order",
      "items": {
        "type": "object",
        "properties": {
          "productId": {
            "type": "string",
            "description": "Product identifier",
            "example": "PROD-12345"
          },
          "quantity": {
            "type": "int32",
            "description": "Quantity to order",
            "example": 20
          }
        }
      }
    },
    "shippingAddress": {
      "$ref": "#/components/schemas/ShippingAddress"
    }
  },
  "required": [
    "items",
    "shippingAddress"
  ]
}