sunspec / models

SunSpec Model Definitions
Apache License 2.0
85 stars 52 forks source link

schema.json: point object is missing the symbols array #162

Closed BetaPrimate closed 3 years ago

BetaPrimate commented 3 years ago

Per file: https://github.com/sunspec/models/blob/master/json/schema.json referenced 11/24/20

The "point":{ } object defined at line 82 seems to be missing a "symbols": [ ] array. All applicable files show the use of such an array, and all call it "symbols", but it is missing from the schema. I'm also curios if any of the other containers (model or group) were intended to contain a symbols array.

Something like the following should show up at the end of the point definition I believe. If not, then I misunderstand the intention and use of the schema, and would appreciate being instructed.

"symbols": {     "type": "array",     "items": {         "$ref": "#/definitions/symbol"     } }