jawu90 / helpugee

0 stars 0 forks source link

basic info collected #8

Open jawu90 opened 2 years ago

jawu90 commented 2 years ago

Name - text Geodaten (X / Y) - numeric (not to be shown to users) Adress (Envelope sign) - Text Service / Product - Text Opening hours (Timetable symbol) - text We speak (Flag symbol) - text - if possible icons of the respective language Specific Offer for Refugees - Text Contact Information - Text Temporary Offer (if an institution is there to stay or just for a certain period) - checkbox yes -> if checked: requires second question for time stamp chosen by info provider Other - text Picture ( above of information) - upload option for picture

Narigo commented 2 years ago

What does "timetable symbol" mean?

jawu90 commented 2 years ago

symbol that displays a calender (sorry word confusion)

Narigo commented 2 years ago
interface Dto {
  name: string;
  geom: { lat: number; lng: number };
  address: string;
  service_product: string;
  opening_hours: string;
  we_speak: string;
  specific_offer_for_refugees: boolean;
  contact_information: string;
  from: string | null; // ISO date string in UTC
  until: string | null; // ISO date string in UTC
  other: string;
  // picture: blob; // check later
}