Sample State - Kelvin-K-Cho/recruited GitHub Wiki

{
  entities: {
    resumes: {
      "2": {
        id: "2",
        jobseeker_id: "4",
        github_url: "",
        linkedin_url: "",
        role: "Software Developer",
        headline: "I am fluent in many coding languages...",
        education: "B.S Computer Science from UC Berkeley",
        experience_id: ["3", "4"]
        project_id: ["7", "8"]
        skills: "SQL, React, Redux, JavaScript..."
      }
    },
    experiences: {
      "3": {
        id: "3",
        role: "Frontend Developer",
        company_id: "100",
        resume_id: "2",
        start_time: "March 2012",
        end_time: "December 2013",
        description: "Design UI/UX for the company website using React, etc"
      },
      "4": {
        id: "4",
        role: "Full Stack Developer",
        company_id: "302",
        resume_id: "2",
        start_time: "January 2014",
        end_time: "December 2017",
        description: "Design database core, etc"
      },
    },
    projects: {
      "7": {
        id: "7",
        title: "Newgle",
        resume_id: "2",
        start_time: "May 2010",
        end_time: "May 2010",
        description: "School project about ..."
      },
      "8": {
        id: "8",
        title: "Recruited",
        resume_id: "2",
        start_time: "December 2011",
        end_time: "February 2012",
        description: "Side project designed for ..."
      },
    },
    jobs: {
      "10": {
        id: "10",
        title: "Senior Full-stack Engineer",
        summary: "Looking for a senior full stack engineering to join our team...",
        responsibilities: "Create UX/UI, Work with a team structure, etc",
        qualifications: "Bachelor’s degree in Computer Science or equivalent, etc",
        recruiter_id: "1",
        company_id: "2",
        type: "Full-time",
        experience: "Senior",
        location: "San Francisco",
        salary_estimate: "120000"
      }
    },
    companies: {
      "2": {
        id: "2",
        name: "TEK Company",
        about: "A startup company in Silicon Valley. Our mission is to delivery core...",
        website_url: "tek.io"
      }
      "100": {
        id: "100",
        name: "App Academy",
        about: "A coding bootcamp company in SF...",
        website_url: "appacademy.io"
      }
      "302": {
        id: "302",
        name: "Stark Company",
        about: "An aerospace company...",
        website_url: "stark.marvel"
      }
    },
    reviews: {
      "1": {
        id: "1", 
        company_id: "2",
        user_id: "1",
        body: "A wonderful company to work for."
      }
    },
    users: {
      "1": {
        id: "1",
        full_name: "Edward",
        email: "[email protected]",
        phone_number: "615999999",
        profile_pic_url: ".../edward.jpeg",
      },
      "4": {
        id: "4",
        full_name: "Tan Loc Phan",
        email: "[email protected]",
        phone_number: "714888888",
        profile_pic_url: ".../loc.jpg",
      }
    }
  },
  ui: {
  },
  session: {
    currentUser: {
      id: "1",
      full_name: "Edward",
      profile_pic_url: ".../edward.jpeg"
    }
  },
  errors: {
    session: ["...", "..."]
  }
}