Factset · Schema
runsForJob
Provides full details of when the job has been run
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| endTime | string | The date and time the job was finished processing |
| id | string | The ID of the run |
| isApiTriggered | boolean | Indicates whether the job was triggered via the PRB API |
| runDuration | number | Number of seconds between startTime and endTime |
| startTime | string | The date and time the job started running after being submitted and potentially waiting in any queue |
| submitTime | string | The date and time the job was submitted |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "runsForJob",
"type": "object",
"description": "Provides full details of when the job has been run",
"properties": {
"endTime": {
"type": "string",
"description": "The date and time the job was finished processing"
},
"id": {
"type": "string",
"description": "The ID of the run"
},
"isApiTriggered": {
"type": "boolean",
"description": "Indicates whether the job was triggered via the PRB API"
},
"runDuration": {
"type": "number",
"description": "Number of seconds between startTime and endTime"
},
"startTime": {
"type": "string",
"description": "The date and time the job started running after being submitted and potentially waiting in any queue"
},
"submitTime": {
"type": "string",
"description": "The date and time the job was submitted"
}
}
}