changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "RankListItem": {
+ "properties": {
+ "amplitude": {
+ "description": "Intraday amplitude.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "chg": {
+ "description": "Price change (decimal ratio).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "five_day_chg": {
+ "description": "5-day price change (decimal ratio).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "industry": {
+ "description": "Industry/sector name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "inflow": {
+ "description": "Net capital inflow.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "intro": {
+ "description": "Short company introduction.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "last_done": {
+ "description": "Latest traded price.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "market_cap": {
+ "description": "Total market capitalization.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Display name of the security.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "pre_post_chg": {
+ "description": "Pre-/post-market price change (decimal ratio).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "pre_post_price": {
+ "description": "Pre-/post-market price.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "symbol": {
+ "description": "Security symbol, e.g. \"700.HK\".",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "ten_day_chg": {
+ "description": "10-day price change (decimal ratio).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "this_year_chg": {
+ "description": "Year-to-date price change (decimal ratio).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "turnover_rate": {
+ "description": "Turnover rate.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "twenty_day_chg": {
+ "description": "20-day price change (decimal ratio).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "volume_rate": {
+ "description": "Volume ratio versus average.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `rank_list`. Wraps a `lists` array of ranked stocks for a\nleaderboard tab, plus a refresh time. Subset of the wire response.",
+ "properties": {
+ "lists": {
+ "description": "Ranked stock entries.",
+ "items": {
+ "$ref": "#/$defs/RankListItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ },
+ "updated_at": {
+ "description": "Last refresh time (RFC3339).",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "title": "RankListResponse",
+ "type": "object"
+}