TD SYNNEX · Schema

TD SYNNEX StreamOne Order

Schema for a technology product order in the TD SYNNEX StreamOne Ion distribution platform.

Technology DistributionIT DistributionCloudResellerStreamOneFortune 100B2B

Properties

Name Type Description
orderId string Unique order identifier
customerId string End customer identifier
status string Current order status
items array Products included in the order
totalAmount number Total order amount
currency string ISO 4217 currency code
notes string Optional order notes
createdDate string Order creation timestamp
modifiedDate string Last modification timestamp
View JSON Schema on GitHub

JSON Schema

td-synnex-order-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/td-synnex/main/json-schema/td-synnex-order-schema.json",
  "title": "TD SYNNEX StreamOne Order",
  "description": "Schema for a technology product order in the TD SYNNEX StreamOne Ion distribution platform.",
  "type": "object",
  "required": ["orderId", "customerId", "status", "items"],
  "properties": {
    "orderId": {
      "type": "string",
      "description": "Unique order identifier"
    },
    "customerId": {
      "type": "string",
      "description": "End customer identifier"
    },
    "status": {
      "type": "string",
      "enum": ["PENDING", "PROCESSING", "COMPLETED", "CANCELLED", "FAILED"],
      "description": "Current order status"
    },
    "items": {
      "type": "array",
      "description": "Products included in the order",
      "items": {
        "$ref": "#/$defs/OrderItem"
      },
      "minItems": 1
    },
    "totalAmount": {
      "type": "number",
      "format": "double",
      "description": "Total order amount",
      "minimum": 0
    },
    "currency": {
      "type": "string",
      "minLength": 3,
      "maxLength": 3,
      "description": "ISO 4217 currency code"
    },
    "notes": {
      "type": "string",
      "description": "Optional order notes"
    },
    "createdDate": {
      "type": "string",
      "format": "date-time",
      "description": "Order creation timestamp"
    },
    "modifiedDate": {
      "type": "string",
      "format": "date-time",
      "description": "Last modification timestamp"
    }
  },
  "$defs": {
    "OrderItem": {
      "type": "object",
      "description": "A product line item in an order",
      "required": ["productId", "quantity"],
      "properties": {
        "productId": {
          "type": "string",
          "description": "Product identifier from the TD SYNNEX catalog"
        },
        "quantity": {
          "type": "integer",
          "minimum": 1,
          "description": "Number of units ordered"
        },
        "unitPrice": {
          "type": "number",
          "format": "double",
          "minimum": 0,
          "description": "Price per unit"
        },
        "totalPrice": {
          "type": "number",
          "format": "double",
          "minimum": 0,
          "description": "Total price for this line item"
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/td-synnex-order"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.