MI-FraunhoferIWM / data2rdf

About A generic pipeline that can be used to map raw data to RDF.
BSD 3-Clause "New" or "Revised" License
1 stars 0 forks source link

Give an alternative json schema for mapping #50

Closed MBueschelberger closed 1 week ago

MBueschelberger commented 3 months ago

In the version 2.0.0rc9, the schema for the mapping (e.g. related to any data file type like json, csv and xlsx) looks like this:

{
    "TrueStress": {
        "key": "TrueStress",
        "iri": "https://example.org/exmaple/TrueStress",
        "value_location": "TrueStress.array"
        "unit_location": "TrueStress.unit"
    },

}

An alternative Schema could be like this:

[
    {
        "iri": "https://example.org/exmaple/TrueStress",
        "value_location": "TrueStress.array",
        "unit_location": "TrueStress.unit",
    }
]