Raw schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"maxLength": 1000,
"description": "Search query in natural language related to SORACOM services or console usage"
},
"document_names": {
"type": "array",
"items": {
"type": "string",
"enum": [
"blog.soracom.com",
"changelog.soracom.io",
"changelog.soracom.io/ja",
"developers.soracom.io",
"iot-template-gallery.soracom.io",
"iot-template-gallery.soracom.jp",
"iot-usecase.com",
"soracom.io",
"soracom.io/terms",
"soracom.jp/iot-recipes",
"soracom.jp/iot_basics",
"soracom.jp/partners",
"soracom.jp/services",
"soracom.jp/store",
"soracom.jp/support_partners/certified_device",
"soracom.jp/terms",
"support.soracom.io/hc/en-us",
"support.soracom.io/hc/ja",
"users.soracom.io"
]
},
"description": "Optional document-name scope filter. Omit when unsure; narrowing too early can hide relevant results. Each document has a fixed language; only in-scope languages are searched. Available documents:\n- blog.soracom.com (Japanese): Official blog: announcements, tutorials, event reports, and customer stories.\n- changelog.soracom.io (English): New feature releases, end-of-service notices, and pricing/spec changes.\n- changelog.soracom.io/ja (Japanese): New feature releases, end-of-service notices, and pricing/spec changes.\n- developers.soracom.io (English): SORACOM Developer Site docs.\n- iot-template-gallery.soracom.io (English): Ready-to-use IoT solution template setup guides.\n- iot-template-gallery.soracom.jp (Japanese): Ready-to-use IoT solution template setup guides.\n- iot-usecase.com (Japanese): IoT use cases showing SORACOM across industries.\n- soracom.io (English): Official blog: announcements, tutorials, event reports, and customer stories.\n- soracom.io/terms (English): Contract terms and conditions for SORACOM services in English, by region.\n- soracom.jp/iot-recipes (Japanese): Step-by-step IoT solution recipes with SORACOM.\n- soracom.jp/iot_basics (Japanese): Introductory IoT fundamentals and related technologies.\n- soracom.jp/partners (Japanese): SORACOM Partner Space and certified partner information.\n- soracom.jp/services (Japanese): SORACOM service overviews and pricing.\n- soracom.jp/store (Japanese): SORACOM IoT Store devices and starter kits.\n- soracom.jp/support_partners/certified_device (Japanese): SORACOM certified and compatible IoT device catalog.\n- soracom.jp/terms (Japanese): Contract terms and conditions (利用規約) for SORACOM services in Japanese.\n- support.soracom.io/hc/en-us (English): SORACOM support FAQs.\n- support.soracom.io/hc/ja (Japanese): SORACOM support FAQs.\n- users.soracom.io (Japanese): SORACOM User Site docs for service usage and configuration."
},
"search_mode": {
"type": "string",
"enum": [
"hybrid",
"keyword",
"semantic"
],
"default": "hybrid",
"description": "Search strategy: 'hybrid' combines keyword and vector search; 'keyword' matches exact tokens; 'semantic' uses vector similarity only."
},
"language": {
"type": "string",
"enum": [
"English",
"Japanese"
],
"description": "Documentation language. Omit to auto-detect; set only to pin one language. This does not imply the user's market — use market for that."
},
"market": {
"type": "string",
"enum": [
"Global",
"Japan"
],
"description": "End-user's deployment market, not the query language. Omit if unknown."
},
"max_results": {
"type": "integer",
"minimum": 1,
"maximum": 32,
"default": 16,
"description": "Maximum results to return (1-32). Increase when exploring."
}
},
"required": [
"query"
]
}