Model_UserModel - Laterality/yummy-dishes-REST GitHub Wiki
UserModel
μ λν΄ μ€λͺ
νλ λ¬Έμμ
λλ€.
- _id
- string
- μλ³μ
- string
- μ¬μ©μ μ΄λ©μΌ
- is_admin
- boolean
- κ΄λ¦¬μμ¬λΆ
- username
- string
- μ μ λ€μ
- login_type
- string
- λ‘κ·ΈμΈ νν ["native", "google"]
- access_token
- string
- μΈλΆ νλ«νΌμ μν λ‘κ·ΈμΈμΈ κ²½μ°, μ‘μΈμ€ ν ν°
- phone_number
- string
- ν΄λν° λ²νΈ ('-' μμ, pattern: [0-9]+$ )
- date_reg
- date
- λ±λ‘ λ μ§
- age
- integer
- μ°λ Ήλ (pattern: [1-6]0 )
- device_id
- string
- νΈμμλ¦Όμ μν device id
- accept_push
- νΈμμλ¦Ό
-
- accepted
- boolean
- λμ μ¬λΆ
- date_accepted
- date
- λμ μΌμ
- accept_privacy
- κ°μΈμ 보 μ΄μ© λμ
-
- accepted
- boolean
- λμ μ¬λΆ
- date_accepted
- date
- λμ μΌμ
- bucket
- Array<ProductModel>
- μ₯λ°κ΅¬λ
- tastes
- Array<TasteModel>
- μ΄κΈ° μ€λ¬Έ μ μ νν κΈ°νΈ
- likes
- Array<ProductModel>
- μ νΈνλ μ ν λͺ©λ‘
- classes_prefer
- Array<ProductClassModel>
- μ νΈνλ μ ν λΆλ₯ λͺ©λ‘
- comments
- Array<CommentModel>
- μμ±ν μ½λ©νΈ λͺ©λ‘
- coupons
- Array<CouponModel>
- μμ ν μΏ ν° λͺ©λ‘
- cnt_reviewable
- integer
- μμ± κ°λ₯ν 리뷰 κ°μ
- cnt_stamp
- integer
- 보μ μ€μΈ μ€ν¬ν κ°μ
{
"_id": "59930dcbd5b72c3903bd405d",
"email": "[email protected]",
"is_admin": false,
"username": "JohnSmith",
"login_type": "native",
"access_token": "",
"phone_number": "01012345678",
"date_reg": "2017-08-15T06:41:41.448Z"
"age": 20,
"device_id": "bk3RNwTe3H0:CI2k_HHwgIpoDKCIZvvDMExUdFQ3P1...",
"accept_push": {
"accepted": true,
"date_accepted": "2017-08-15T06:41:41.448Z"
},
"accepted_privacy": {
"accepted": true,
"date_accepted": "2017-08-15T06:41:41.448Z"
}
"bucket": [
{
"product": {
"name": "Product1",
"price": 3000,
...
},
"quantity": 2
},
{
"product": {
"name": "Product2",
"price": 5000,
...
}
"quantity": 1
},
...
],
"tastes": [
{
"text": "μ§μ§€"
},
...
],
"likes": [
{
"name": "Product1",
"price": 3000,
...
},
{
"name": "Product2",
"price": 5000,
...
},
...
],
"comments": [
{
"product": {
"name": "Product1",
...
},
"date_reg": "2017-08-15T06:41:41.448Z",
"rate": 4,
"tastes": [
{
"text": "μ§μ§€",
},
],
"content": {
"text": "lorem ipsum dolor sit amet",
"images": [
{
"path": "..."
},
...
]
}
},
...
],
"cnt_reviewable": 2,
"cnt_stamp": 6
}