3M · Schema

OrderList

List of orders

IndustrialManufacturingSupply ChainFortune 100

Properties

Name Type Description
orders array Array of order records
View JSON Schema on GitHub

JSON Schema

3m-partner-supplier-api-order-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/3m/refs/heads/main/json-schema/3m-partner-supplier-api-order-list-schema.json",
  "title": "OrderList",
  "description": "List of orders",
  "type": "object",
  "properties": {
    "orders": {
      "type": "array",
      "description": "Array of order records",
      "items": {
        "$ref": "#/components/schemas/Order"
      }
    }
  }
}