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
λ‹΅κΈ€ μž‘μ„±μž

Example

{
	"_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",
			...
		}
	}
}
⚠️ **GitHub.com Fallback** ⚠️