Edit: The DateTime did exist in the output in the "Time" attribute as a ISO8601 format.
Problem.
I want to add starttime and endtime as attributes to the export.
I have a working simple workspace that reads a JSON from:
https://earthquake.usgs.gov/fdsnws/event/1/query?format=geojson&starttime=@Value(date_sub)&endtime=@Value(date)
where starttime (value) and endtime(value) are in the format "yyyy-mm-dd" and is created as FME parameters.
The string original looks like this
https://earthquake.usgs.gov/fdsnws/event/1/query?format=geojson&starttime=yyyy-mm-dd&endtime=yyyy-mm-dd
I am exposing the attributes I want with attribute exposer and it works at it should according to the documentation "GeoJSON Summary Format (usgs.gov)"
The starttime and endtime attributes is the date window where I want to read the event data from USGS.
So I guess there is timedata from the earthquake event that stores the date when its monitored. That is the data and time I want to get.