Properties
| Name | Type | Description |
|---|---|---|
| job_id | integer | Canonical identifier of the job |
| creator_user_name | string | Username of the job creator |
| run_as_user_name | string | User the job runs as |
| settings | object | |
| created_time | integer | Time the job was created (epoch milliseconds) |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Job",
"title": "Job",
"type": "object",
"properties": {
"job_id": {
"type": "integer",
"format": "int64",
"description": "Canonical identifier of the job",
"example": "500123"
},
"creator_user_name": {
"type": "string",
"description": "Username of the job creator",
"example": "example_value"
},
"run_as_user_name": {
"type": "string",
"description": "User the job runs as",
"example": "example_value"
},
"settings": {
"$ref": "#/components/schemas/JobSettings"
},
"created_time": {
"type": "integer",
"format": "int64",
"description": "Time the job was created (epoch milliseconds)",
"example": 10
}
}
}