CommonGarden / Grow-IoT

Software packages for smart growing environments.
http://commongarden.org/
Other
25 stars 6 forks source link

Notifications #342

Closed aruntk closed 7 years ago

aruntk commented 7 years ago

notifications collection, schema, pubsub and element.

Sample row in notifications collection.

{
    "_id" : "mrPwTTWAE6EdtnhtL",
    "thing" : "F7S74aPvCHwgKTaHL",
    "event" : "krPwTTWAF6EdtnhtL",
    "timestamp" : ISODate("2016-12-21T14:56:46.433Z"),
    "owner" : "TZThQB8NCFqdEW2vJ",
    "message" : "PH Low",
    "type" : "warning"
}
aruntk commented 7 years ago

Changed schema to

{
    "_id" : "mrPwTTWAE6EdtnhtL",
    "thing" : "F7S74aPvCHwgKTaHL",
    "event" : "krPwTTWAF6EdtnhtL",
    "timestamp" : ISODate("2016-12-21T14:56:46.433Z"),
    "owner" : {
       "_id": "TZThQB8NCFqdEW2vJ",
    },
    "notification" : "PH Low",
    "type" : "warning"
}
JakeHartnell commented 7 years ago

Thanks!