-
Notifications
You must be signed in to change notification settings - Fork 1
/
fields.txt
64 lines (64 loc) · 1.08 KB
/
fields.txt
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
57
58
59
60
61
62
63
64
customers
id: integer
first_name: string
last_name: string
email: string
address: string
zipcode: string
city: string
avatar: string
birthday: date
first_seen: date
last_seen: date
has_ordered: boolean
latest_purchase: dd
has_newsletter: boolean
groups: array
nb_commands: integer
total_spent: integer
categories
id: number
name: string
products
id: integer
category_id: integer
reference: string
width: float
height: float
price: float
thumbnail: string
image: string
description: string
stock: integer
commands
id: integer
reference: string
date: date
customer_id: integer
basket: [{ product_id: integer, quantity: integer }]
total_ex_taxes: float
delivery_fees: float
tax_rate: float
taxes: float
total: float
status: 'ordered' | 'delivered' | 'canceled'
returned: boolean
invoices
id: integer
date: date
command_id: integer
customer_id: integer
total_ex_taxes: float
delivery_fees: float
tax_rate: float
taxes: float
total: float
reviews
id: integer
date: date
status: 'pending' | 'accepted' | 'rejected'
command_id: integer
product_id: integer
customer_id: integer
rating: integer
comment: string