Skip to content
andreiradchenko edited this page Apr 8, 2024 · 2 revisions

Welcome to the scenery wiki!

Firebase Data Structure

posts collection

{
  author: {
    id: "qrzT37p5OXMjnl61Cz0iMn5aGy12",
    name: "test10",
  },
  comments: [
    {
      authorId: "qrzT37p5OXMjnl61Cz0iMn5aGy12",
      date: 1712480763306,
      text: "comment text",
    },
  ],
  likes: [ "qrzT37p5OXMjnl61Cz0iMn5aGy12", "xrzT37p5OXMjnl61Cz0iMn5aGy13",],
  image: {
    url: "https://firebasestorage.googleapis.com/v0/b/scenery-53dd5.appspot.com/o/images%2F0957f899-d224-4f80-8c60-6aa9abec53dd?alt=media&token=001616a6-fd75-4793-a6fc-0c6cc8352705"
  },
  location: {
    latitude: 35.6093178,
    longitude: 50.4278031,
    name: "Velyka Dymerka, Ukraine",
  },
  name: "Post name",
  timestamp: April 7, 2024 at 12:05:35PM UTC+3,
}

Users in firebase authentication

{
  uid: 'taJtCCoWbqcsSZmdT6jTLn0l15x1',
  email: 'user@example.com',
  emailVerified: false,
  phoneNumber: '+11234567890',
  password: 'secretPassword',
  displayName: 'John Doe',
  photoURL: 'https://firebasestorage.googleapis.com/v0/b/scenery-53dd5.appspot.com/o/avatars%2FtaJtCCoWbqcsSZmdT6jTLn0l15x1?alt=media&token=9f53fac9-4731-425f-bc31-70eeab2a07fc',
  disabled: false
}