{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Job",
"type": "object",
"properties": {
"job_id": {
"type": "integer",
"description": "The canonical identifier for this job."
},
"creator_user_name": {
"type": "string",
"description": "The email of the user who created the job."
},
"run_as_user_name": {
"type": "string",
"description": "The email of the user the job runs as."
},
"created_time": {
"type": "integer",
"description": "The time the job was created in epoch milliseconds."
}
}
}