1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
"""Document notes snapshot."""
DATA_DOCUMENT_NOTES = [
{
"id": 1,
"note": "Sample note 1.",
"created": "2023-12-21T18:08:11.481206+00:00",
"user": {
"id": 1,
"username": "test",
"first_name": "Peter",
"last_name": "Patch",
},
},
{
"id": 2,
"note": "Sample note 2.",
"created": "2023-12-21T08:26:33.260968+00:00",
"user": {
"id": 2,
"username": "test",
"first_name": "Peter",
"last_name": "Patch",
},
},
{
"id": 3,
"note": "Sample note 3.",
"created": "2023-12-21T08:26:31.782811+00:00",
"user": {
"id": 3,
"username": "test",
"first_name": "Peter",
"last_name": "Patch",
},
},
]
|