OpenEnergyPlatform / oemetadata

Repository for the Open Energy Family metadata. Contains metadata templates, examples and schemas. For metadata conversion see https://github.com/OpenEnergyPlatform/omi
https://openenergyplatform.github.io/oemetadata/
MIT License
21 stars 3 forks source link

Add `description` field for entries in `resources` #89

Open nesnoj opened 2 years ago

nesnoj commented 2 years ago

A description field for entries in resources would be helpful when publishing e.g. multiple files like so:

"resources": [
    {
      "profile": "tabular-data-resource",
      "name": "file1.csv",
      "description": "Some details on the data contained in file1..."
      "path": "https://some.url",
      "format": "csv",
      "encoding": "UTF-8",
      "schema": {
        "fields":
        ...
    },
    {
      "profile": "tabular-data-resource",
      "name": "file2.csv",
      "description": "Some details on the data contained in file2..."
      ...
    }