My data has been exported in JSON format
{
"count":79,
"stories":{
"23658975":{
"title":"NOMINATIVO",
"description":"BUSDRAGHI PIERGIORGIO",
"updated_at":"2013-06-16T18:55:56+02:00",
"created_at":"2013-06-16T18:39:06+02:00",
"due_date":null,
"start_date":null,
"story_type":"task",
"state":"not started",
"position":14,
"archived":false,
"deleted_at":null,
"sub_story_count":0,
"budget_estimate_in_cents":null,
"time_estimate_in_minutes":null,
"budget_used_in_cents":0,
"logged_billable_time_in_minutes":0,
"id":"23658975",
"workspace_id":"3190675",
"parent_id":"23658965"
},
"23658985":{
"title":"SOGGETTO",
"description":"PRIVATO",
"updated_at":"2013-06-16T18:55:56+02:00",
"created_at":"2013-06-16T18:39:06+02:00",
"due_date":null,
"start_date":null,
"story_type":"task",
"state":"not started",
"position":15,
"archived":false,
"deleted_at":null,
"sub_story_count":0,
"budget_estimate_in_cents":null,
"time_estimate_in_minutes":null,
"budget_used_in_cents":0,
"logged_billable_time_in_minutes":0,
"id":"23658985",
"workspace_id":"3190675",
"parent_id":"23658965"
},
"23658995":{
"title":"CF/P.IVA",
"description":"BSD PRG 77P19 G999C",
"updated_at":"2013-06-16T18:55:56+02:00",
"created_at":"2013-06-16T18:39:06+02:00",
"due_date":null,
"start_date":null,
"story_type":"task",
"state":"not started",
"position":16,
"archived":false,
"deleted_at":null,
"sub_story_count":0,
"budget_estimate_in_cents":null,
"time_estimate_in_minutes":null,
"budget_used_in_cents":0,
"logged_billable_time_in_minutes":0,
"id":"23658995",
"workspace_id":"3190675",
"parent_id":"236589... (Check the link for full file)
The data was automatically generated through an API endpoint, and I'm unable to modify its structure. You can view the entire JSON file here
This is what I aim to accomplish:
- Create a webpage with a field where users can input the workspace_id from the API URL and a button to trigger the search function
- Retrieve data from the JSON file and display the "title" and "description" values in HTML tables
Example of how the table should look:
<TABLE>
<TR>
<TD>NUMERO SINISTRO</TD>
<TD>DATA SINISTRO</TD>
<TD>MORE DATA</TD>
</TR>
<TR>
<TD>"description" value for "NUMERO SINISTRO" goes here</TD>
<TD>"description" value for "DATA SINISTRO" goes here</TD>
<TD>and so on...</TD></TR>
</TABLE>
I find this task challenging, any suggestions or guidance would be greatly appreciated.