@divvydiary/divvydiary-json-schemas 1.11.18 → 1.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/schemas/_defs.json +17 -3
- package/src/schemas/depot.json +3 -0
- package/src/schemas/symbol.json +3 -0
package/package.json
CHANGED
package/src/schemas/_defs.json
CHANGED
|
@@ -670,19 +670,33 @@
|
|
|
670
670
|
],
|
|
671
671
|
"example": "DE"
|
|
672
672
|
},
|
|
673
|
+
"countryWeightings": {
|
|
674
|
+
"type": "array",
|
|
675
|
+
"items": {
|
|
676
|
+
"type": "object",
|
|
677
|
+
"properties": {
|
|
678
|
+
"country": {
|
|
679
|
+
"$ref": "https://divvydiary.com/schemas/defs.json#/properties/country"
|
|
680
|
+
},
|
|
681
|
+
"weight": {
|
|
682
|
+
"type": "number"
|
|
683
|
+
}
|
|
684
|
+
}
|
|
685
|
+
}
|
|
686
|
+
},
|
|
673
687
|
"continent": {
|
|
674
688
|
"type": "string",
|
|
675
689
|
"nullable": true,
|
|
676
690
|
"enum": [null, "mixed", "AF", "AN", "AS", "EU", "NA", "OC", "SA"],
|
|
677
691
|
"example": "EU"
|
|
678
692
|
},
|
|
679
|
-
"
|
|
693
|
+
"continentWeightings": {
|
|
680
694
|
"type": "array",
|
|
681
695
|
"items": {
|
|
682
696
|
"type": "object",
|
|
683
697
|
"properties": {
|
|
684
|
-
"
|
|
685
|
-
"$ref": "https://divvydiary.com/schemas/defs.json#/properties/
|
|
698
|
+
"continent": {
|
|
699
|
+
"$ref": "https://divvydiary.com/schemas/defs.json#/properties/continent"
|
|
686
700
|
},
|
|
687
701
|
"weight": {
|
|
688
702
|
"type": "number"
|
package/src/schemas/depot.json
CHANGED
|
@@ -132,6 +132,9 @@
|
|
|
132
132
|
"continent": {
|
|
133
133
|
"$ref": "https://divvydiary.com/schemas/defs.json#/properties/continent"
|
|
134
134
|
},
|
|
135
|
+
"continentWeightings": {
|
|
136
|
+
"$ref": "https://divvydiary.com/schemas/defs.json#/properties/continentWeightings"
|
|
137
|
+
},
|
|
135
138
|
"dividendCagr": {
|
|
136
139
|
"type": "object",
|
|
137
140
|
"description": "Dividend Growth Rate (CAGR) *aristocrats only*",
|
package/src/schemas/symbol.json
CHANGED
|
@@ -122,6 +122,9 @@
|
|
|
122
122
|
"continent": {
|
|
123
123
|
"$ref": "https://divvydiary.com/schemas/defs.json#/properties/continent"
|
|
124
124
|
},
|
|
125
|
+
"continentWeightings": {
|
|
126
|
+
"$ref": "https://divvydiary.com/schemas/defs.json#/properties/continentWeightings"
|
|
127
|
+
},
|
|
125
128
|
"originalDividendCurrency": {
|
|
126
129
|
"oneOf": [
|
|
127
130
|
{
|