Created
September 11, 2016 19:30
-
-
Save lourd/45c0858cb852bdf7a3537fa620067082 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
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