Last active
August 10, 2018 10:39
-
-
Save hurlatunde/ffd6d503e3c3f4953afd415810821bd6 to your computer and use it in GitHub Desktop.
Relationship in a Firebase database type
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Events": { | |
"event_one": { | |
"event_name": "Global event", | |
"event_location": "Lagos Ikeja", | |
"event_created": 16082017, | |
"event_active": "active", | |
"Speakers": { | |
"0": "speaker_one", | |
"1": "speaker_two", | |
"2": "speaker_three" | |
} | |
}, | |
"event_two": { | |
"event_name": "Developerlearn friday session", | |
"event_location": "Iwaya Sabo . Yaba", | |
"event_created": 16082017, | |
"event_active": "active", | |
"Speakers": { | |
"0": "speaker_one", | |
"1": "speaker_two" | |
} | |
} | |
}, | |
"Speakers": { | |
"speaker_one": { | |
"speaker_name": "Olatunde Owokoniran", | |
"speaker_email": "[email protected]", | |
"event_created": 16082017 | |
}, | |
"speaker_two": { | |
"speaker_name": "Femi Taiwo", | |
"speaker_email": "[email protected]", | |
"event_created": 20082017 | |
}, | |
"speaker_three": { | |
"speaker_name": "Mclord Adeola", | |
"speaker_email": "[email protected]", | |
"event_created": 22082017 | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment