{
  "openapi": "3.1.0",
  "info": {
    "title": "WishTime Toys Factory B2B Procurement API",
    "version": "1.0.0",
    "description": "Programmatic interface for AI agents and enterprise B2B buyers to request OEM/ODM toy manufacturing quotations, order certified sample kits, and calculate container CBM stuffing payloads."
  },
  "servers": [
    {
      "url": "https://wishtimetoys.com",
      "description": "Production Web & API Gateway"
    }
  ],
  "paths": {
    "/contact": {
      "post": {
        "operationId": "requestToyFactoryQuotation",
        "summary": "Submit B2B Toy RFQ or OEM/ODM Custom Manufacturing Request",
        "description": "Direct submission to WishTime engineering sales team for pricing, MOQ, tooling lead times, and compliance certification.",
        "requestBody": {
          "required": true,
          "content": {
            "application/x-www-form-urlencoded": {
              "schema": {
                "type": "object",
                "properties": {
                  "name": { "type": "string", "description": "Buyer or procurement officer full name" },
                  "email": { "type": "string", "format": "email", "description": "Corporate business email address" },
                  "phone": { "type": "string", "description": "Direct WhatsApp or phone number" },
                  "country": { "type": "string", "description": "Target delivery destination country" },
                  "category": { "type": "string", "description": "Toy category or specific SKU item number" },
                  "message": { "type": "string", "description": "RFQ details, target volume, and custom specifications" }
                },
                "required": ["name", "email", "message"]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Inquiry successfully received; formal quotation dispatched within 12 hours."
          }
        }
      }
    }
  }
}
