File: document_notes.py

package info (click to toggle)
pypaperless 5.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,440 kB
  • sloc: python: 5,607; sh: 26; makefile: 3
file content (37 lines) | stat: -rw-r--r-- 868 bytes parent folder | download
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",
        },
    },
]