This repository was archived by the owner on Mar 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 555
/
Copy pathlisting.schema.ts
98 lines (95 loc) · 1.55 KB
/
listing.schema.ts
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
import { ObjectId } from "mongodb";
import { model, Schema } from "mongoose";
export interface Listing {
_id: ObjectId;
id: string;
title: string;
slug: string;
bathrooms: number;
bedrooms: number;
description: string;
type: string;
isFeatured: boolean;
isRecommended: boolean;
photos: string;
capacity: number;
ammenities: string;
reviews_stars: number;
reviews_number: number;
address: string;
fees: string;
createdAt: string;
};
const ListingSchema = new Schema<Listing>({
id: {
type: String,
required: true,
unique: true,
},
title: {
type: String,
required: true,
},
slug: {
type: String,
required: true,
unique: true,
},
bathrooms: {
type: Number,
required: true,
},
bedrooms: {
type: Number,
required: true,
},
description: {
type: String,
required: true,
},
type: {
type: String,
required: true,
},
isFeatured: {
type: Boolean,
required: true,
},
isRecommended: {
type: Boolean,
required: true,
},
photos: {
type: String,
required: true,
},
capacity: {
type: Number,
required: true,
},
ammenities: {
type: String,
required: true,
},
reviews_stars: {
type: Number,
required: true,
},
reviews_number: {
type: Number,
required: true,
},
address: {
type: String,
required: true,
},
fees: {
type: String,
required: true,
},
createdAt: {
type: String,
required: true,
},
});
export default model<Listing>("Listing", ListingSchema);