changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "OperatingItem": {
+ "description": "One record in `operating`'s `items`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "metric_name": {
+ "description": "Metric name (e.g. passenger traffic, cargo volume).",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "period": {
+ "description": "Reporting period.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "unit": {
+ "description": "Unit of measure.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "description": "Metric value.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `operating`. Wraps an `items` array of operating metrics\n(HK stocks only).\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "items": {
+ "description": "Operating metric records.",
+ "items": {
+ "$ref": "#/$defs/OperatingItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "OperatingResponse",
+ "type": "object"
+}