app-workflow_engine Schemas

On this page:

jobsDocumentDeep

{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "jobsDocumentDeep", "type": "object", "title": "The subset of job document that comes back for the getJobsDeep call", "description": "The subset of job document that comes back for the getJobsDeep call", "required": [ "_id", "name", "tasks", "metrics", "status" ], "definitions": {}, "properties": { "_id": { "$ref": "wfEngineCommon#/definitions/mongoObjectId" }, "name": { "$id": "#/properties/name", "type": "string", "title": "The name of the job", "description": "The name of the job", "examples": [ "8917Test2" ] }, "tasks": { "$ref": "jobsDocument#/definitions/jobDefaultTasks" }, "metrics": { "$ref": "metricsDefault" }, "status": { "$ref": "jobsDocument#/definitions/status" }, "error": { "type": "array", "title": "The errors", "description": "Array of errors that occurred during the running of this job", "items": { "$ref": "jobsDocument#/definitions/jobError" } } } }