Skip to content

Commit a69b992

Browse files
committedOct 25, 2021
Add key is_about to oemetadata
Make necessary changes to introduce the key is_about. The key should be used to describe the column header in ontology terms with a URI. See: #52
1 parent cf7190d commit a69b992

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed
 

‎metadata/latest/example.json

+4
Original file line numberDiff line numberDiff line change
@@ -210,24 +210,28 @@
210210
"name": "id",
211211
"description": "Unique identifier",
212212
"type": "serial",
213+
"is_about": null,
213214
"unit": null
214215
},
215216
{
216217
"name": "year",
217218
"description": "Reference year",
218219
"type": "integer",
220+
"is_about": null,
219221
"unit": null
220222
},
221223
{
222224
"name": "value",
223225
"description": "Example value",
224226
"type": "double precision",
227+
"is_about": null,
225228
"unit": "MW"
226229
},
227230
{
228231
"name": "geom",
229232
"description": "Geometry",
230233
"type": "geometry(Point, 4326)",
234+
"is_about": null,
231235
"unit": null
232236
}
233237
],

‎metadata/latest/metadata_key_description.md

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ This pages describes the OEP Metadata version 1.4.1 You can have a look at an em
7373
| 14.6.1.1 | name | Name string unique within its scope. | year |
7474
| 14.6.1.2 | description | Free-text describing the field. | Reference year for which the data were collected. |
7575
| 14.6.1.3 | type | Data type of the field. In case of a geom-column in a database, also indicate the shape and CRS. | geometry(Point, 4326) |
76+
| | is_about | Ontology URI to describe the column header | |
7677
| 14.6.1.4 | unit | Unit, preferably SI-Unit, that values in this field are mapped to. If 'unit' doesn't apply to a field, use 'null' | MW |
7778
| 14.6.2 | primaryKey | A primary key is a field or set of fields that uniquely identifies each row in the table. It's recorded as a list of strings, since it is possible to define the primary key as made up of several columns. | id |
7879
| 14.6.3 | foreignKeys | A foreign key is a field that refers to a column in another table. | |

‎metadata/latest/schema.json

+7
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,13 @@
470470
"null"
471471
]
472472
},
473+
"is_about": {
474+
"description": "Ontology URI to describe the column header",
475+
"type": [
476+
"string",
477+
"null"
478+
]
479+
},
473480
"unit": {
474481
"description": "Unit, preferably SI-Unit, that values in this field are mapped to. If \"unit\" doesn't apply to a field, use \"null\". Example: MW",
475482
"type": [

‎metadata/latest/template.json

+2
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,14 @@
114114
"name": null,
115115
"description": null,
116116
"type": null,
117+
"is_about": null,
117118
"unit": null
118119
},
119120
{
120121
"name": null,
121122
"description": null,
122123
"type": null,
124+
"is_about": null,
123125
"unit": null
124126
}
125127
],

0 commit comments

Comments
 (0)
Please sign in to comment.