Skip to content

Instantly share code, notes, and snippets.

@GeneralistDev
Last active November 12, 2016 06:49
Show Gist options
  • Save GeneralistDev/4a8db20853a3569e4b986d28314c9c64 to your computer and use it in GitHub Desktop.
Save GeneralistDev/4a8db20853a3569e4b986d28314c9c64 to your computer and use it in GitHub Desktop.
Discussion Forums Schema
{
"discussions": {
"data": {
"id-1": {
"title": "My question",
"author": "userid-1",
"tags": {
"ec2": true,
"s3": true
},
"courseId": "aws-csa",
"updatedTime": 1478932825,
"voteSum": 10
}
},
"byUser": {
"userid-1": {
"id-1": {
"updatedTime": 1478932825,
"voteSum": 10
},
}
},
"byCourse": {
"aws-csa": {
"id-1": {
"updatedTime": 1478932825,
"voteSum": 10
},
}
},
"byTag": {
"ec2": {
"id-1": {
"updatedTime": 1478932825,
"voteSum": 10
},
},
"s3": {
"id-1": {
"updatedTime": 1478932825,
"voteSum": 10
},
}
},
"byCourseByTag": {
"aws-csa": {
"ec2": {
"id-1": {
"updatedTime": 1478932825,
"voteSum": 10
}
},
"s3": {
"id-1": {
"updatedTime": 1478932825,
"voteSum": 10
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment