From 71ea2666fc6bdc2edd9dc2f4650a86f735cbb737 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 11 Sep 2025 10:42:04 +0000 Subject: [PATCH 1/2] Initial plan From 5ad317c6383e488d4ad32c1456e25460ad38eb81 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 11 Sep 2025 10:47:10 +0000 Subject: [PATCH 2/2] Restructure pageData to have sections as direct children Co-authored-by: MosheHM <165201931+MosheHM@users.noreply.github.com> --- db.json | 186 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 92 insertions(+), 94 deletions(-) diff --git a/db.json b/db.json index 2678910..20c4ba2 100644 --- a/db.json +++ b/db.json @@ -352,99 +352,97 @@ ] }, "pageData": { - "1": { - "orders": [ - { - "name": "user_name", - "value": "Jack" - }, - { - "name": "age", - "value": "69" - }, - { - "name": "city", - "value": "Toronto" - }, - { - "name": "country", - "value": "Germany" - }, - { - "name": "occupation", - "value": "Consultant" - }, - { - "name": "bio", - "value": "Experienced team player with strong communication skills." - } - ], - "shipments": [ - { - "name": "user_name", - "value": "Grace" - }, - { - "name": "city", - "value": "Rome" - }, - { - "name": "country", - "value": "USA" - }, - { - "name": "occupation", - "value": "Artist" - }, - { - "name": "bio", - "value": "Enthusiastic worker committed to delivering quality results." - } - ], - "documents": [ - { - "name": "user_name", - "value": "Grace" - }, - { - "name": "age", - "value": "60" - }, - { - "name": "city", - "value": "Berlin" - }, - { - "name": "occupation", - "value": "Designer" - }, - { - "name": "bio", - "value": "Experienced team player with strong communication skills." - } - ], - "appeals": [ - { - "name": "user_name", - "value": "Bob" - }, - { - "name": "age", - "value": "63" - }, - { - "name": "city", - "value": "London" - }, - { - "name": "country", - "value": "Japan" - }, - { - "name": "occupation", - "value": "Developer" - } - ] - } + "orders": [ + { + "name": "user_name", + "value": "Jack" + }, + { + "name": "age", + "value": "69" + }, + { + "name": "city", + "value": "Toronto" + }, + { + "name": "country", + "value": "Germany" + }, + { + "name": "occupation", + "value": "Consultant" + }, + { + "name": "bio", + "value": "Experienced team player with strong communication skills." + } + ], + "shipments": [ + { + "name": "user_name", + "value": "Grace" + }, + { + "name": "city", + "value": "Rome" + }, + { + "name": "country", + "value": "USA" + }, + { + "name": "occupation", + "value": "Artist" + }, + { + "name": "bio", + "value": "Enthusiastic worker committed to delivering quality results." + } + ], + "documents": [ + { + "name": "user_name", + "value": "Grace" + }, + { + "name": "age", + "value": "60" + }, + { + "name": "city", + "value": "Berlin" + }, + { + "name": "occupation", + "value": "Designer" + }, + { + "name": "bio", + "value": "Experienced team player with strong communication skills." + } + ], + "appeals": [ + { + "name": "user_name", + "value": "Bob" + }, + { + "name": "age", + "value": "63" + }, + { + "name": "city", + "value": "London" + }, + { + "name": "country", + "value": "Japan" + }, + { + "name": "occupation", + "value": "Developer" + } + ] } } \ No newline at end of file