changedInput schema / properties / request / anyOf
Previous value: -[
- {
- "additionalProperties": true,
- "type": "object"
- },
- {
- "additionalProperties": false,
- "description": "Request for prediction market discovery tools.",
- "properties": {
- "mode": {
- "default": "markets",
- "description": "Discovery mode. Use 'markets' to screen individual markets, 'events' to screen grouped events, and 'categories' for category level aggregated stats.",
- "enum": [
- "markets",
- "events",
- "categories"
- ],
- "type": "string"
- },
- "orderBy": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional sort field for markets/events. Common fields: volume24h, volume, volume1w, volume1m, liquidity, openInterest, uniqueTraders24h, ageHours."
- },
- "page": {
- "default": 1,
- "description": "Page number for paginated results.",
- "minimum": 1,
- "type": "integer"
- },
- "query": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional text query for filtering markets/events by keyword."
- },
- "status": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional lifecycle filter for markets/events. Common values: 'active', 'open', 'closed', or 'all'."
- }
- },
- "type": "object"
- }
-]New value: +[
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "description": "Request for prediction market discovery tools.",
+ "properties": {
+ "mode": {
+ "default": "markets",
+ "description": "Discovery mode. Use 'markets' to screen individual markets, 'events' to screen grouped events, and 'categories' for category level aggregated stats.",
+ "enum": [
+ "markets",
+ "events",
+ "categories"
+ ],
+ "type": "string"
+ },
+ "orderBy": {
+ "anyOf": [
+ {
+ "enum": [
+ "volume_24hr",
+ "volume",
+ "volume_1wk",
+ "volume_1mo",
+ "liquidity",
+ "open_interest",
+ "unique_traders_24h",
+ "age_hours"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Sort field. Pass an exact value above or None for default ('volume_24hr')."
+ },
+ "page": {
+ "default": 1,
+ "description": "Page number for paginated results.",
+ "minimum": 1,
+ "type": "integer"
+ },
+ "query": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional text query for filtering markets/events by keyword."
+ },
+ "status": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional lifecycle filter for markets/events. Common values: 'active', 'open', 'closed', or 'all'."
+ }
+ },
+ "type": "object"
+ }
+]