Last active
October 11, 2025 01:52
-
-
Save benawad/d1e205040272370c5271570727835813 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"$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