Model_CommentModel - Laterality/yummy-dishes-REST GitHub Wiki
CommentModel
μ λν΄ μ€λͺ
νλ λ¬Έμμ
λλ€.
- _id
- string
- μλ³μ
- author
- UserModel
- μμ±μ
- product
- ProductModel
- μ ν
- date_reg
- date
- λ±λ‘ μΌμ
- rate
- integer
- νμ (1~5)
- tastes
- Array<TasteModel>
- μ λ§
- content
- μ½λ©νΈ λ΄μ©
-
- text
- string
- ν μ€νΈ λ΄μ©
- images
- Array<ImageModel>
- μ΄λ―Έμ§ λ°°μ΄
- reply
- λ΅κΈ
-
- content
- string
- λ΅κΈ λ΄μ©
- author
- UserModel
- λ΅κΈ μμ±μ
{
"_id": "5993cce589d47e657b885ba3",
"author": {
"username": "JohnSmith",
...
},
"product": {
name: "Product1",
...
},
"date_reg": "2017-08-15T15:05:47.469Z",
"rate": 4,
"tastes": [
{
"text": "Salty"
},
...
],
"content": {
"text": "lorem ipsum dolor sir amet",
"images": [
{
path: "...",
},
...
]
},
"reply": {
"content": "reply content",
"author": {
"_id": "...",
"username": "operating team",
...
}
}
}