removedInput schema / $defs
Removed value: -{
- "DateRange": {
- "description": "Date range via tokens or dates.\nTokens: NOW, XMIN_AGO, XD_AGO, XH_AGO; THIS_YEAR_START, THIS_QUARTER_START, THIS_MONTH_START, THIS_WEEK_START, TODAY_START; LAST_WEEK_START/END, LAST_MONTH_START/END, LAST_QUARTER_START/END, LAST_YEAR_START/END.\nWeek starts Monday. Quarters are calendar. Dates: YYYY-MM-DD or ___-MM-DD (year omitted).\nPlease check detailed system instructions for more information.",
- "properties": {
- "from": {
- "description": "Start value: token (see above) or date (YYYY-MM-DD or ___-MM-DD).",
- "type": "string"
- },
- "to": {
- "description": "End value: token (see above) or date (YYYY-MM-DD or ___-MM-DD).",
- "type": "string"
- }
- },
- "required": [
- "from",
- "to"
- ],
- "type": "object"
- },
- "PredictionMarketAddressTradesRequest": {
- "description": "Request for address-level prediction market trades.",
- "properties": {
- "address": {
- "description": "Polygon wallet address to analyze.",
- "type": "string"
- },
- "dateRange": {
- "anyOf": [
- {
- "$ref": "#/$defs/DateRange"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional date range for address trades. Defaults to the last 30 days."
- },
- "page": {
- "default": 1,
- "description": "Page number for paginated results.",
- "minimum": 1,
- "type": "integer"
- }
- },
- "required": [
- "address"
- ],
- "type": "object"
- }
-}
changedInput schema / properties / request / anyOf
Previous value: -[
- {
- "additionalProperties": true,
- "type": "object"
- },
- {
- "$ref": "#/$defs/PredictionMarketAddressTradesRequest"
- }
-]New value: +[
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "description": "Request for address-level prediction market trades.",
+ "properties": {
+ "address": {
+ "description": "Polygon wallet address to analyze.",
+ "type": "string"
+ },
+ "dateRange": {
+ "anyOf": [
+ {
+ "description": "Date range via tokens or dates.\nTokens: NOW, XMIN_AGO, XD_AGO, XH_AGO; THIS_YEAR_START, THIS_QUARTER_START, THIS_MONTH_START, THIS_WEEK_START, TODAY_START; LAST_WEEK_START/END, LAST_MONTH_START/END, LAST_QUARTER_START/END, LAST_YEAR_START/END.\nWeek starts Monday. Quarters are calendar. Dates: YYYY-MM-DD or ___-MM-DD (year omitted).\nPlease check detailed system instructions for more information.",
+ "properties": {
+ "from": {
+ "description": "Start value: token (see above) or date (YYYY-MM-DD or ___-MM-DD).",
+ "type": "string"
+ },
+ "to": {
+ "description": "End value: token (see above) or date (YYYY-MM-DD or ___-MM-DD).",
+ "type": "string"
+ }
+ },
+ "required": [
+ "from",
+ "to"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional date range for address trades. Defaults to the last 30 days."
+ },
+ "page": {
+ "default": 1,
+ "description": "Page number for paginated results.",
+ "minimum": 1,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "address"
+ ],
+ "type": "object"
+ }
+]