changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `financial_report_latest`. Latest financial report summary.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "eps": {
+ "description": "Earnings per share.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "gross_margin": {
+ "description": "Gross margin.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "net_income": {
+ "description": "Net income.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "period": {
+ "description": "Reporting period.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "report_date": {
+ "description": "Report date.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "revenue": {
+ "description": "Revenue.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "roe": {
+ "description": "Return on equity.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "title": "FinancialReportLatestResponse",
+ "type": "object"
+}