-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary_fixture.json
More file actions
56 lines (56 loc) · 1.04 KB
/
Copy pathlibrary_fixture.json
File metadata and controls
56 lines (56 loc) · 1.04 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[
{
"model": "library.author",
"pk": 1,
"fields": {
"first_name": "Test",
"last_name": "Test",
"birth_day": "2025-12-30"
}
},
{
"model": "library.author",
"pk": 2,
"fields": {
"first_name": "Лев",
"last_name": "Толстой",
"birth_day": "1821-11-11"
}
},
{
"model": "library.author",
"pk": 3,
"fields": {
"first_name": "Фёдор",
"last_name": "Достоевский",
"birth_day": "1821-12-12"
}
},
{
"model": "library.book",
"pk": 1,
"fields": {
"title": "Testig_book",
"publication_date": "2025-12-30",
"author": 1
}
},
{
"model": "library.book",
"pk": 2,
"fields": {
"title": "Война и мир",
"publication_date": "1870-01-01",
"author": 2
}
},
{
"model": "library.book",
"pk": 4,
"fields": {
"title": "Преступление и наказание",
"publication_date": "1866-01-01",
"author": 3
}
}
]