Skip to content

Instantly share code, notes, and snippets.

@lourd
Created September 11, 2016 19:30
Show Gist options
  • Save lourd/45c0858cb852bdf7a3537fa620067082 to your computer and use it in GitHub Desktop.
Save lourd/45c0858cb852bdf7a3537fa620067082 to your computer and use it in GitHub Desktop.
{
positions: {
[id]: {
title: String,
receivedFrom: [Recruiter],
company: EmployingCompany,
description: String,
link: String,
receivedOn: Date,
teamSize: Number,
numWomen: Number,
percentageNonWhite: Number,
prospectiveProjects: String,
techStack: [{
name: String,
}],
notes: [{
timestamp: Date,
text: String,
}],
salaryOffers: [{
amount: Number,
offeredByThem: Boolean, // false means counter-offer
timestamp: Date,
note: String,
isOfficial: Boolean,
}],
socialGood: Number,
existingTechQuality: Number,
peerTechQuality: Number,
generalColleagueQuality: Number,
},
},
recruiters: {
[id]: {
name: String,
company: String,
phone: String,
positions: [Position],
url: String,
}
},
employingCompanies: {
[id]: {
name: String,
description: String,
positions: [Position],
age: Number,
numEmployees: Number,
isPublic: Boolean,
isGovernment: Boolean,
url: String,
links: [String],
crunchbaseURL: String,
funding: {
total: Number,
note: String,
},
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment