Skip to content

Commit

Permalink
Merge pull request #7 from TanmoySG/update-messages-schema
Browse files Browse the repository at this point in the history
update messages schema and records
  • Loading branch information
TanmoySG authored Sep 14, 2024
2 parents 3877128 + 92335bc commit 9d08190
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 17 deletions.
25 changes: 10 additions & 15 deletions data/messages/records.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"email": "Purple @Purple.com",
"message": "Go_purple",
"name": "Purple lover",
"rating": "",
"customProperties": {}
},
{
Expand All @@ -18,7 +17,6 @@
"email": "[email protected]",
"message": "Hello sir i came across one of your projects named as \"medical records directory\" but i cannot used it without sql file can you send me the sql file of that project",
"name": "hamza",
"rating": "",
"customProperties": {}
},
{
Expand All @@ -29,7 +27,6 @@
"email": "jack",
"message": "Hello. Oo",
"name": "Hi",
"rating": "",
"customProperties": {}
},
{
Expand All @@ -40,7 +37,6 @@
"email": "",
"message": "Love the fact that the website loads so quickly. Great work bro, GREAT WORK.",
"name": "Not_Spongebob",
"rating": "",
"customProperties": {}
},
{
Expand All @@ -51,7 +47,6 @@
"email": "[email protected]",
"message": "testing123",
"name": "test",
"rating": "",
"customProperties": {}
},
{
Expand All @@ -62,9 +57,9 @@
"email": "",
"message": "Does it get erased after submitting?",
"name": "",
"rating": "3",
"rating": 3,
"customProperties": {
"userExperienceRating": "5"
"userExperienceRating": 5
}
},
{
Expand All @@ -75,9 +70,9 @@
"email": "",
"message": "test",
"name": "",
"rating": "5",
"rating": 5,
"customProperties": {
"userExperienceRating": "5"
"userExperienceRating": 5
}
},
{
Expand All @@ -88,9 +83,9 @@
"email": "",
"message": "",
"name": "",
"rating": "5",
"rating": 5,
"customProperties": {
"userExperienceRating": "5"
"userExperienceRating": 5
}
},
{
Expand All @@ -101,9 +96,9 @@
"email": "",
"message": "Great work.",
"name": "",
"rating": "5",
"rating": 5,
"customProperties": {
"userExperienceRating": "5"
"userExperienceRating": 5
}
},
{
Expand All @@ -114,9 +109,9 @@
"email": "",
"message": "",
"name": "",
"rating": "4",
"rating": 4,
"customProperties": {
"userExperienceRating": "5"
"userExperienceRating": 5
}
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"type": "object",
"properties": {
"timestamp": {
"type": "string"
"type": "number"
},
"isMessage": {
"type": "boolean"
Expand All @@ -23,7 +23,7 @@
"type": "string"
},
"rating": {
"type": "string"
"type": "integer"
},
"customProperties": {
"type": "object",
Expand Down

0 comments on commit 9d08190

Please sign in to comment.