place.stream.game.search
Lexicon Version: 1
Definitions
Section titled “Definitions”Type: query
Search for games and other entities via the games.gamesgamesgamesgames catalog. Proxied from the configured games API.
Parameters:
| Name | Type | Req’d | Description | Constraints |
|---|---|---|---|---|
q | string | ✅ | Min Length: 1 Max Length: 200 | |
limit | integer | ❌ | Min: 1 Max: 100 Default: 20 | |
cursor | string | ❌ |
Output:
- Encoding:
application/json - Schema:
Schema Type: object
| Name | Type | Req’d | Description | Constraints |
|---|---|---|---|---|
cursor | string | ❌ | ||
totalResults | integer | ❌ | ||
results | Array of Union of:games.gamesgamesgamesgames.defs#gameSummaryViewgames.gamesgamesgamesgames.defs#profileSummaryViewgames.gamesgamesgamesgames.defs#platformSummaryViewgames.gamesgamesgamesgames.defs#collectionSummaryViewgames.gamesgamesgamesgames.defs#engineSummaryView | ✅ |
Lexicon Source
Section titled “Lexicon Source”{ "lexicon": 1, "id": "place.stream.game.search", "defs": { "main": { "type": "query", "description": "Search for games and other entities via the games.gamesgamesgamesgames catalog. Proxied from the configured games API.", "parameters": { "type": "params", "required": ["q"], "properties": { "q": { "type": "string", "minLength": 1, "maxLength": 200 }, "limit": { "type": "integer", "minimum": 1, "maximum": 100, "default": 20 }, "cursor": { "type": "string" } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": ["results"], "properties": { "cursor": { "type": "string" }, "totalResults": { "type": "integer" }, "results": { "type": "array", "items": { "type": "union", "refs": [ "games.gamesgamesgamesgames.defs#gameSummaryView", "games.gamesgamesgamesgames.defs#profileSummaryView", "games.gamesgamesgamesgames.defs#platformSummaryView", "games.gamesgamesgamesgames.defs#collectionSummaryView", "games.gamesgamesgamesgames.defs#engineSummaryView" ] } } } } } } }}