@divvydiary/divvydiary-json-schemas 1.8.0 → 1.8.2
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 +6 -0
- package/src/schemas/user.json +4 -0
package/package.json
CHANGED
package/src/schemas/_defs.json
CHANGED
|
@@ -687,6 +687,12 @@
|
|
|
687
687
|
"items": {
|
|
688
688
|
"$ref": "https://divvydiary.com/schemas/symbol.json#/properties/securityType"
|
|
689
689
|
}
|
|
690
|
+
},
|
|
691
|
+
"securities": {
|
|
692
|
+
"type": "array",
|
|
693
|
+
"items": {
|
|
694
|
+
"$ref": "https://divvydiary.com/schemas/defs.json#/properties/isin"
|
|
695
|
+
}
|
|
690
696
|
}
|
|
691
697
|
}
|
|
692
698
|
},
|
package/src/schemas/user.json
CHANGED