Skip to content
Shota Senga edited this page Sep 15, 2019 · 4 revisions

Welcome to the VanHack-2019 wiki!

ROLES

  • Signup
  • Choose location
  • Pick a dog
  • Schedule
  • Confirm

Models

User : {
  name: string,
  age: number,
  dogsWalked: Dog [],
  profilePic: string // image link
  }
Dog : {
  name: string,
  age: number,
  sex: number, // 1 = mail, 2 = femail
  album: string [], // an array of image links
  breed: string,
  profileDesc: string,
  availableTimes: Date [], // JS date instances
  profilePic: string, // image link
  profileVid: string, //video link
  profileVidThumbnail: string, // link for thumbnail image
  walks: Walk[]
}
Shelter : {
  name: string,
  geoCoordinates: {aptitude:  string, longitude: string}
}
Walk : {
  time: Date,
  walkers: User [] // people taking the dog to a walk
}
Clone this wiki locally