Rockwell Automation · Schema
Rockwell Automation Plex Customer Order
Schema representing a customer order in the Plex Smart Manufacturing Platform ERP API.
Industrial AutomationManufacturingPLCSCADAIIoTFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| orderId | string | Unique order identifier in Plex ERP |
| orderNumber | string | Human-readable order number |
| customerId | string | Customer identifier in Plex |
| customerName | string | Customer name |
| orderDate | string | Date the order was placed |
| dueDate | string | Requested delivery date |
| status | string | Current order status |
| priority | string | Order fulfillment priority |
| orderLines | array | Line items in the order |
| shippingAddress | object | Delivery address |
| notes | string | Order notes or special instructions |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/rockwell-automation/json-schema/rockwell-automation-plex-order-schema.json",
"title": "Rockwell Automation Plex Customer Order",
"description": "Schema representing a customer order in the Plex Smart Manufacturing Platform ERP API.",
"type": "object",
"required": ["customerId", "orderDate", "orderLines"],
"properties": {
"orderId": {
"type": "string",
"description": "Unique order identifier in Plex ERP"
},
"orderNumber": {
"type": "string",
"description": "Human-readable order number"
},
"customerId": {
"type": "string",
"description": "Customer identifier in Plex"
},
"customerName": {
"type": "string",
"description": "Customer name"
},
"orderDate": {
"type": "string",
"format": "date",
"description": "Date the order was placed"
},
"dueDate": {
"type": "string",
"format": "date",
"description": "Requested delivery date"
},
"status": {
"type": "string",
"enum": ["New", "Confirmed", "In Production", "Shipped", "Delivered", "Cancelled"],
"description": "Current order status"
},
"priority": {
"type": "string",
"enum": ["Normal", "Rush", "Just-In-Sequence"],
"description": "Order fulfillment priority"
},
"orderLines": {
"type": "array",
"description": "Line items in the order",
"items": {
"type": "object",
"required": ["partNumber", "quantity"],
"properties": {
"lineNumber": {
"type": "integer",
"description": "Sequential line number"
},
"partNumber": {
"type": "string",
"description": "Plex part number"
},
"partDescription": {
"type": "string",
"description": "Part description"
},
"quantity": {
"type": "number",
"description": "Ordered quantity"
},
"unitOfMeasure": {
"type": "string",
"description": "Unit of measure (e.g., EA, LB, KG)"
},
"unitPrice": {
"type": "number",
"description": "Price per unit"
},
"totalPrice": {
"type": "number",
"description": "Total line price"
},
"quantityShipped": {
"type": "number",
"description": "Quantity already shipped"
}
}
}
},
"shippingAddress": {
"type": "object",
"description": "Delivery address",
"properties": {
"name": { "type": "string" },
"address1": { "type": "string" },
"address2": { "type": "string" },
"city": { "type": "string" },
"state": { "type": "string" },
"postalCode": { "type": "string" },
"country": { "type": "string" }
}
},
"notes": {
"type": "string",
"description": "Order notes or special instructions"
}
},
"additionalProperties": false
}
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.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/rockwell-automation-plex-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.