{ "$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" } } }