{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/InstrumentSearchResponse.json", "title": "InstrumentSearchResponse", "type": "object", "properties": { "page": { "type": "integer", "description": "The current page number." }, "pageSize": { "type": "integer", "description": "The number of items per page." }, "totalItems": { "type": "integer", "description": "The total number of instruments matching the search criteria." }, "items": { "type": "array", "items": { "$ref": "#/components/schemas/Instrument" } } } }