changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "done": {
+ "description": "True once the run has finished, whether or not it found anything",
+ "type": "boolean"
+ },
+ "error": {
+ "description": "Present only on failure, e.g. \"unauthorized\" or \"payment_required\"",
+ "type": "string"
+ },
+ "finished_at": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "matches": {
+ "description": "The delivered roles, each with its tailored documents. Absent until the run succeeds",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "company": {
+ "description": "Hiring company",
+ "type": "string"
+ },
+ "documents": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "cover_letter_markdown": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "A cover letter written for this specific role, as markdown"
+ },
+ "cv_markdown": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "The CV rewritten for this specific role, as markdown"
+ }
+ },
+ "required": [
+ "cv_markdown",
+ "cover_letter_markdown"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "The tailored documents for this role. Null while the run is still going, and on older runs that predate document return"
+ },
+ "match_reason": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Why this role was picked for this profile"
+ },
+ "rank": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Position in the delivered set, 1 is the strongest match"
+ },
+ "score": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Fit score out of 100, higher is better"
+ },
+ "title": {
+ "description": "Job title as advertised",
+ "type": "string"
+ },
+ "url": {
+ "description": "Link to the live posting",
+ "type": "string"
+ }
+ },
+ "required": [
+ "title",
+ "company",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "message": {
+ "description": "Progress in plain language while running, or what to do about the error",
+ "type": "string"
+ },
+ "plan": {
+ "description": "Which product this run was: one_off or agent_quick",
+ "type": "string"
+ },
+ "run_id": {
+ "type": "string"
+ },
+ "started_at": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "status": {
+ "description": "running, success, no_matches or failed",
+ "type": "string"
+ },
+ "target_jobs": {
+ "description": "How many roles this run is meant to deliver",
+ "type": "number"
+ }
+ },
+ "type": "object"
+}