Tyson Foods · Schema

Tyson Foods Order

A purchase order in the Tyson Foods B2B trading partner system

B2B IntegrationEDIFoodFortune 100Supply Chain

Properties

Name Type Description
id string Unique order identifier (purchase order number)
partnerId string Trading partner identifier
status string Current order status
items array List of ordered products
createdAt string ISO 8601 timestamp when the order was created
requiredDeliveryDate string Required delivery date for the order
shipToAddress object Delivery destination address
View JSON Schema on GitHub

JSON Schema

tyson-foods-order-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.tysonfoods.com/schemas/order",
  "title": "Tyson Foods Order",
  "description": "A purchase order in the Tyson Foods B2B trading partner system",
  "type": "object",
  "required": ["id", "partnerId", "status", "createdAt"],
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique order identifier (purchase order number)"
    },
    "partnerId": {
      "type": "string",
      "description": "Trading partner identifier"
    },
    "status": {
      "type": "string",
      "enum": ["pending", "confirmed", "processing", "shipped", "delivered", "cancelled"],
      "description": "Current order status"
    },
    "items": {
      "type": "array",
      "description": "List of ordered products",
      "items": {
        "type": "object",
        "required": ["productId", "quantity"],
        "properties": {
          "productId": {
            "type": "string",
            "description": "Tyson Foods product identifier"
          },
          "quantity": {
            "type": "integer",
            "minimum": 1,
            "description": "Quantity ordered (in base product units)"
          },
          "unitOfMeasure": {
            "type": "string",
            "description": "Unit of measure (CS=Case, EA=Each, LB=Pound)"
          },
          "unitPrice": {
            "type": "number",
            "description": "Price per unit"
          }
        }
      }
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the order was created"
    },
    "requiredDeliveryDate": {
      "type": "string",
      "format": "date",
      "description": "Required delivery date for the order"
    },
    "shipToAddress": {
      "type": "object",
      "description": "Delivery destination address",
      "properties": {
        "name": {"type": "string"},
        "street": {"type": "string"},
        "city": {"type": "string"},
        "state": {"type": "string"},
        "zip": {"type": "string"},
        "country": {"type": "string"}
      }
    }
  }
}

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/tyson-foods-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.