Input schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Words or a phrase to find in titles, summaries, topics, and excerpts.",
"maxLength": 240
},
"type": {
"type": "string",
"enum": [
"all",
"blog",
"talk",
"photo",
"about"
],
"description": "Optional publication type. Use all to search every public item."
},
"year_from": {
"type": "integer",
"minimum": 2000,
"maximum": 2100,
"description": "Optional first publication year, inclusive."
},
"year_to": {
"type": "integer",
"minimum": 2000,
"maximum": 2100,
"description": "Optional last publication year, inclusive."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 10,
"description": "Maximum number of returned and visible results. Defaults to 10."
}
}
}