`GET /.../TODO/`[...]/rest.php/wikibase/v0/search/items?language=en&q=...`
Request parameters (query parameters)
* `search* `q` - search term
* `language` - language code
Response structure in pseudo-JSON
```
{
"results": [
0: {
"id": "Q123",
"label": "<LABEL in language>"
"description": "<DESCRIPTION in language>"
}.},
...
]
}
```
Response:
- always respond with status code 200, even for an empty result list
- deal with error handling (500) later
Not in scope:
- validation (errors on invalid input) of language codes
- including a matched data element in the response
- no special treatment of `haswbstatement` etc "keywords". Pass them as-is
- search results provided in a synchronous response
**Acceptance criteria:**
- Make the endpoint equivalent to action=query&list=search without the WB CirrusSearch keywords
- Parameters:- no fallback language (for now same for search and result),treatment of labels or descriptions in the search termresults
-