changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "BusinessSegmentsHistoryPeriod": {
+ "description": "One period snapshot in `business_segments_history`'s `historical`.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "business": {
+ "description": "Revenue by business line.",
+ "items": {
+ "$ref": "#/$defs/SegmentBreakdown"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ },
+ "currency": {
+ "description": "Settlement currency.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "date": {
+ "description": "Period date.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "regionals": {
+ "description": "Revenue by region.",
+ "items": {
+ "$ref": "#/$defs/SegmentBreakdown"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ },
+ "total": {
+ "description": "Total revenue for the period.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "SegmentBreakdown": {
+ "description": "One segment breakdown entry in `business_segments_history`\n(`business[]` / `regionals[]`).\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "name": {
+ "description": "Segment / region name.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "percent": {
+ "description": "Percentage of total.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "description": "Absolute value.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "description": "Returned by `business_segments_history`. Wraps a `historical` array of\nper-period segment snapshots.\n\nSubset of documented fields; upstream may return more.",
+ "properties": {
+ "historical": {
+ "description": "Per-period segment snapshots.",
+ "items": {
+ "$ref": "#/$defs/BusinessSegmentsHistoryPeriod"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ }
+ },
+ "title": "BusinessSegmentsHistoryResponse",
+ "type": "object"
+}