Tiffany & Co. · Schema

Tiffany Corporate Gift Order

Schema for a Tiffany & Co. corporate gifting order placed through the B2B platform.

Corporate GiftingE-CommerceJewelryLuxury RetailWatchesFortune 1000

Properties

Name Type Description
orderId string Unique order identifier
companyName string Corporate client company name
contactName string Primary contact name for the order
contactEmail string
orderDate string Date the order was placed
deliveryDate string Requested delivery date
items array
shipping object
engraving array
subtotal number
total number
currency string
status string
View JSON Schema on GitHub

JSON Schema

tiffany-corporate-order-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tiffany/main/json-schema/tiffany-corporate-order-schema.json",
  "title": "Tiffany Corporate Gift Order",
  "description": "Schema for a Tiffany & Co. corporate gifting order placed through the B2B platform.",
  "type": "object",
  "properties": {
    "orderId": {
      "type": "string",
      "description": "Unique order identifier"
    },
    "companyName": {
      "type": "string",
      "description": "Corporate client company name"
    },
    "contactName": {
      "type": "string",
      "description": "Primary contact name for the order"
    },
    "contactEmail": {
      "type": "string",
      "format": "email"
    },
    "orderDate": {
      "type": "string",
      "format": "date",
      "description": "Date the order was placed"
    },
    "deliveryDate": {
      "type": "string",
      "format": "date",
      "description": "Requested delivery date"
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/OrderItem"
      }
    },
    "shipping": {
      "$ref": "#/$defs/ShippingAddress"
    },
    "engraving": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/EngravingRequest"
      }
    },
    "subtotal": {
      "type": "number",
      "format": "double"
    },
    "total": {
      "type": "number",
      "format": "double"
    },
    "currency": {
      "type": "string",
      "default": "USD"
    },
    "status": {
      "type": "string",
      "enum": ["Pending", "Confirmed", "Processing", "Shipped", "Delivered", "Cancelled"]
    }
  },
  "required": ["orderId", "companyName", "items", "status"],
  "$defs": {
    "OrderItem": {
      "type": "object",
      "properties": {
        "sku": {"type": "string"},
        "name": {"type": "string"},
        "quantity": {"type": "integer"},
        "unitPrice": {"type": "number"},
        "size": {"type": "string"}
      },
      "required": ["sku", "quantity"]
    },
    "ShippingAddress": {
      "type": "object",
      "properties": {
        "recipientName": {"type": "string"},
        "company": {"type": "string"},
        "line1": {"type": "string"},
        "line2": {"type": "string"},
        "city": {"type": "string"},
        "state": {"type": "string"},
        "postalCode": {"type": "string"},
        "country": {"type": "string"},
        "phone": {"type": "string"}
      }
    },
    "EngravingRequest": {
      "type": "object",
      "properties": {
        "sku": {"type": "string"},
        "text": {"type": "string", "maxLength": 50},
        "font": {"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/tiffany-corporate-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.