{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/MarketRecommendationsResponse.json", "title": "MarketRecommendationsResponse", "type": "object", "description": "Response containing market recommendations", "properties": { "ResponseType": { "type": "string", "description": "Type of recommendation response", "example": "Instrument" }, "Recommendations": { "type": "array", "description": "List of recommended instrument IDs", "items": { "type": "integer", "format": "int32" }, "example": [ 12345, 67890 ] } } }