changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "DividendDetailItem": {
+ "description": "One distribution scheme in `dividend_detail`'s `details`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "cash_dividend": {
+ "description": "Cash dividend per share.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "currency": {
+ "description": "Settlement currency.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "ex_date": {
+ "description": "Ex-dividend date.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "pay_date": {
+ "description": "Payment date.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "period": {
+ "description": "Reporting period.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "record_date": {
+ "description": "Record date.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "stock_dividend": {
+ "description": "Stock dividend ratio / amount.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `dividend_detail`. Wraps a `details` array of distribution\nschemes.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "details": {
+ "description": "Per-period distribution schemes.",
+ "items": {
+ "$ref": "#/$defs/DividendDetailItem"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "DividendDetailResponse",
+ "type": "object"
+}