Skip to content

Instantly share code, notes, and snippets.

@benawad
Last active October 11, 2025 01:52
Show Gist options
  • Save benawad/d1e205040272370c5271570727835813 to your computer and use it in GitHub Desktop.
Save benawad/d1e205040272370c5271570727835813 to your computer and use it in GitHub Desktop.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"spike_score": {
"type": "integer",
"minimum": 1,
"maximum": 10,
"description": "Spike score from 1-10"
},
"rank": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"description": "Candidate ranking from 1-100"
},
"notes": {
"type": "string",
"description": "Evaluation notes for the hiring manager"
}
},
"required": ["spike_score", "rank", "notes"],
"additionalProperties": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment