IEA-Task-43 / digital_wra_data_standard

IEA Task 43: pre-construction energy estimate data standard repository
BSD 3-Clause "New" or "Revised" License
56 stars 15 forks source link

[schema] include null in 'height_reference' enum list #215

Closed dancasey-ie closed 11 months ago

dancasey-ie commented 1 year ago

Include null in 'height_reference' enum list.

@stephenholleran addressed issue 202 by updating the height_reference to allow null, but null also needs to be included in the list of enums.

"height_reference": { "type": [ "string", "null" ], "title": "Height Reference", "description": "The height reference frame that is used to measure the item height. E.g. onshore this is 'ground level' i.e. the item is 0.5 m above ground level. Offshore is a bit different as it can be 20 m above 'mean sea level' or 20 m above 'lowest astronomical tide' for a fixed structure or 20 m above 'sea level' for a floating lidar.", "enum": [ null, "ground_level", "mean_sea_level", "sea_level", "lowest_astronomical_tide", "sea_floor", "other" ], "default": "ground_level" } },