Imagine this scenario, you have created a Todo API and you return this payload when requesting a single todo. {
"created_at": "2023-08-27T17:31:14.355813",
"done": False,
"id": "70592516-24d5-4582-8d80-54b2c70b5ab1",
"metadata": {
"foo": "bar",
"text": "bla bla"
},
"name": "Learn Python",
"updated_at": None
} How will you test this payload? …