changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "SecurityListItem": {
+ "properties": {
+ "name_cn": {
+ "description": "Security name (zh-CN).",
+ "type": "string"
+ },
+ "name_en": {
+ "description": "Security name (en).",
+ "type": "string"
+ },
+ "name_hk": {
+ "description": "Security name (zh-HK).",
+ "type": "string"
+ },
+ "symbol": {
+ "description": "Security symbol, e.g. \"AAPL.US\".",
+ "type": "string"
+ }
+ },
+ "required": [
+ "symbol",
+ "name_cn",
+ "name_en",
+ "name_hk"
+ ],
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `security_list`. Top-level pagination envelope built in\n`quote::security_list` around the upstream `Vec<Security>`.",
+ "properties": {
+ "count": {
+ "description": "Records-per-page echoed back from the request.",
+ "format": "uint",
+ "minimum": 0,
+ "type": "integer"
+ },
+ "items": {
+ "description": "The securities on this page.",
+ "items": {
+ "$ref": "#/$defs/SecurityListItem"
+ },
+ "type": "array"
+ },
+ "page": {
+ "description": "1-based page number echoed back from the request.",
+ "format": "uint",
+ "minimum": 0,
+ "type": "integer"
+ },
+ "total": {
+ "description": "Total number of securities available for this market/category (before\npagination).",
+ "format": "uint",
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "total",
+ "page",
+ "count",
+ "items"
+ ],
+ "title": "SecurityListResponse",
+ "type": "object"
+}