addedOutput schema / properties / latest_earnings
Added value: +{
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "period": {
+ "additionalProperties": false,
+ "properties": {
+ "end_on": {
+ "format": "date",
+ "type": "string"
+ },
+ "kind": {
+ "enum": [
+ "quarter",
+ "half_year",
+ "annual"
+ ],
+ "type": "string"
+ },
+ "label": {
+ "type": "string"
+ },
+ "slug": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "slug",
+ "label",
+ "kind",
+ "end_on"
+ ],
+ "type": "object"
+ },
+ "published_at": {
+ "format": "date-time",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "revision": {
+ "type": "integer"
+ },
+ "teaser": {
+ "additionalProperties": false,
+ "properties": {
+ "headline": {
+ "type": "string"
+ },
+ "highlights": {
+ "items": {
+ "type": "string"
+ },
+ "maxItems": 3,
+ "minItems": 3,
+ "type": "array"
+ },
+ "summary": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "headline",
+ "summary",
+ "highlights"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "period",
+ "revision",
+ "published_at",
+ "teaser"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+}
changedOutput schema / required
Previous value: -[
- "ticker",
- "name",
- "total_value",
- "single_class",
- "positions",
- "provenance"
-]New value: +[
+ "ticker",
+ "name",
+ "total_value",
+ "single_class",
+ "latest_earnings",
+ "positions",
+ "provenance"
+]