Closed
Description
In docs229\ASHRAE229.schema.json not every property of Metadata has a type specified. I'm looking at the file with version "0.1.4" which is from the develop branch.
These properties seem to be anomalies, I think all other properties do have either an explicit type or a reference to a type somewhere else.
The properties I am referring to are:
id
schema_version
version
Extract:
"Metadata": {
"type": "object",
"properties": {
"id": {
"description": "Unique data set identifier",
"notes": "Assigned by *data publisher* to identify this data. `id` shall remain unchanged for revisions of the same data."
},
...
"schema_version": {
"description": "The version of the schema the data complies with",
"notes": "Common versions may include 0.0.36 from the first public review period. This is the value of the version field in the top of the ASRAE229.schema.json file or the version in the ASHRAE229.schema.yaml Schema data group."
},
...
"version": {
"description": "Integer version identifier for the data",
"notes": "Used by data publisher to track revisions of the data. Shall be incremented for each data revision"
},
...
},
I suppose these would all be strings.