YACOUBI-Abdelhakime / Study-Share

Support platform for students
http://study-share.s3-website.eu-west-3.amazonaws.com/
0 stars 0 forks source link
logo

🚀 Study Share 🚀

Technologies 🧑🏻‍💻🛠️

MVP Features 💪💪

Database structure 💾 🗂️

Collection Users 📄

{
  "_id": "ObjectId",
  "email": "String",
  // Password hash
  "password": "String",
  "name": "String",
  "dateOfBirth": "Date",
  "isVerified": "Boolean"
}

Collection Publications 📄

{
  "_id": "ObjectId",
  "userId": "ObjectId",
  "title": "String",
  "content": "String",
  "attachments": [
    {
      "url": "String",
      // [pdf, image, ...]
      "type": "String"
    }
  ],
  "commentsCount": "Number",
  "isDiscussionOpen": "Boolean",
  // [Mathematics, Physics, French, ...]
  "tags": ["String"]
}

Collection Comments 📄

{
  "_id": "ObjectId",
  "publicationId": "ObjectId",
  "userId": "ObjectId",
  "content": "String"
}

Collection Chats 📄

{
  "_id": "ObjectId",
  "participants": ["ObjectId", "ObjectId"],
  "messages": ["ObjectId", "ObjectId", "..."]
}

Collection Messages 📄

{
  "_id": "ObjectId",
  "senderId": "ObjectId",
  "content": "String",
  "read": "Boolean"
}

Collection Notifications 📄

{
  "_id": "ObjectId",
  "userId": "ObjectId",
  // [comment, message, ...]
  "type": "String",
  // ID of the post or message concerned
  "referenceId": "ObjectId",
  "message": "String",
  "isRead": "Boolean"
}