Skip to content

Data model

Hardik Mistry edited this page Aug 31, 2019 · 1 revision

The data model is created with NoSQL Mongodb approach in mind, please clarify your doubts before assuming anything. Thank you.

Events data model

Successful response to /meetup/events will return following json:

Note: The json starts as a Json object with groups key and is a Json Array type, each Json object of the Json Array contains the related meta-data, we will be improving this over time, we request you to subscribe to the repository to receive immediate updates.

{
    "groups": 
    [
        {
            "id": 12345678,
            "title": "Google Developers Group, Baroda : GDG Baroda",
            "source": "meetup",
            "thumbnail": "https://secure.meetupstatic.com/photos/event/6/2/e/d/xxxx.jpeg",
            "location": "Vadodara, India",
            "events": 
            [
                {
                    "id": "123456789",
                    "title": "GDG DevFest Baroda 2019 & Kotlin/Everywhere Baroda 2019",
                    "host": false,
                    "description": "The quick brown fox jumps over the lazy dog",
                    "duration": xxxxxxx
                }
            ]
        }
    ]
}
Clone this wiki locally