IEA-Task-43 / digital_wra_data_standard

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

[SCHEMA] type property missing for 'height_reference' #202

Closed stephenholleran closed 1 year ago

stephenholleran commented 1 year ago

A data type is missing for the 'height_reference' enum.

    "height_reference": {
      "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.",
      "enum": [
        "ground_level",
        "mean_sea_level",
        "sea_level",
        "lowest_astronomical_tide",
        "sea_floor",
        "other"
      ],
      "default": "ground_level"
    }

Should include a data type the same as every other property in the data model has:

"type": [
        "string",
        "null"
      ],