Currently my sample data and schema json are in an amazon store via https URL.
var jsonify = res => res.json(); var dataFetch =
fetch("https://s3.eu-central-1.amazonaws.com/fusion.store/ft/data/plotting-multiple-series-on-time-axis-data.json").then(jsonify);
var schemaFetch =
fetch("https://s3.eu-central-1.amazonaws.com/fusion.store/ft/schema/plotting-multiple-series-on-time-axis-schema.json").then(jsonify);
I want to fetch the data from my projects "assets" directory but it does not seem to work
var jsonify = res => res.json(); var dataFetch =
fetch('assets/mydata.json').then(jsonify);
var schemaFetch =
fetch('assets/myschema').then(jsonify);
Any ideas where I zigged where I should have zagged? Thanks plenty

On a local system, use the
fsmodule of node.js, notfetchAnd instead of the
.json()method, you just need the standardJSON.parsefunction.