Ryder System · Schema

Ryder Shipment

A shipment managed by Ryder Transportation Management

Fleet ManagementLogisticsSupply ChainTransportationTruckingFortune 500

Properties

Name Type Description
shipmentId string Unique shipment identifier
status string Current shipment status
origin object
destination object
requestedPickupDate string Requested pickup date
requestedDeliveryDate string Requested delivery date
actualPickupDate string Actual pickup date and time
actualDeliveryDate string Actual delivery date and time
weight number Total weight in pounds
commodityDescription string Description of the shipment commodity
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

ryder-shipment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12",
  "$id": "https://api-evangelist.github.io/ryder-system/json-schema/ryder-shipment-schema.json",
  "title": "Ryder Shipment",
  "description": "A shipment managed by Ryder Transportation Management",
  "type": "object",
  "properties": {
    "shipmentId": {
      "type": "string",
      "description": "Unique shipment identifier"
    },
    "status": {
      "type": "string",
      "enum": ["pending", "in_transit", "delivered", "cancelled"],
      "description": "Current shipment status"
    },
    "origin": {
      "$ref": "#/$defs/Address"
    },
    "destination": {
      "$ref": "#/$defs/Address"
    },
    "requestedPickupDate": {
      "type": "string",
      "format": "date",
      "description": "Requested pickup date"
    },
    "requestedDeliveryDate": {
      "type": "string",
      "format": "date",
      "description": "Requested delivery date"
    },
    "actualPickupDate": {
      "type": "string",
      "format": "date-time",
      "description": "Actual pickup date and time"
    },
    "actualDeliveryDate": {
      "type": "string",
      "format": "date-time",
      "description": "Actual delivery date and time"
    },
    "weight": {
      "type": "number",
      "description": "Total weight in pounds"
    },
    "commodityDescription": {
      "type": "string",
      "description": "Description of the shipment commodity"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": ["shipmentId", "status"],
  "$defs": {
    "Address": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "address": {
          "type": "string"
        },
        "city": {
          "type": "string"
        },
        "state": {
          "type": "string"
        },
        "zip": {
          "type": "string"
        },
        "country": {
          "type": "string",
          "default": "US"
        }
      },
      "required": ["address", "city", "state", "zip"]
    }
  }
}

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/ryder-shipment"
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.