app-lifecycle_manager Schemas

On this page:

resource-action-execution-http

{ "$id": "resource-action-execution-http", "type": "object", "additionalProperties": false, "required": [ "_id", "modelId", "modelName", "instanceId", "instanceName", "actionId", "actionName", "jobId", "startTime", "endTime", "progress", "status", "errors", "initiator", "initialInstanceData", "finalInstanceData" ], "properties": { "_id": { "$ref": "common-http#/definitions/document-identifier" }, "modelId": { "$ref": "common-http#/definitions/document-identifier" }, "modelName": { "$ref": "resource-action-execution-common#/definitions/modelName" }, "instanceId": { "$ref": "common-http#/definitions/document-identifier" }, "instanceName": { "$ref": "resource-action-execution-common#/definitions/instanceName" }, "actionId": { "$ref": "resource-action-execution-common#/definitions/actionId" }, "actionName": { "$ref": "resource-action-execution-common#/definitions/actionName" }, "jobId": { "$ref": "resource-action-execution-common#/definitions/jobId" }, "startTime": { "$ref": "resource-action-execution-common#/definitions/startTime" }, "endTime": { "$ref": "resource-action-execution-common#/definitions/endTime" }, "progress": { "$ref": "resource-action-execution-common#/definitions/progress" }, "status": { "$ref": "resource-action-execution-common#/definitions/status" }, "errors": { "$ref": "#/definitions/errors" }, "initiator": { "$ref": "common-http#/definitions/document-identifier" }, "initialInstanceData": { "$ref": "resource-action-execution-common#/definitions/instanceDataSnapshot" }, "finalInstanceData": { "$ref": "resource-action-execution-common#/definitions/instanceDataSnapshot" } }, "definitions": { "actionError": { "description": "A record of an error which occurred while the action was running", "type": "object", "properties": { "message": { "description": "A human-readable message summarizing the issue", "type": "string" }, "origin": { "description": "Designates where the error came from", "type": "string", "enum": [ "preTransformation", "workflow", "postTransformation", "finishAction", "system" ] }, "timestamp": { "description": "Records when the error occurred", "$ref": "common#/definitions/iso-date-string" }, "metadata": { "description": "Additional properties that help describe the issue" }, "stepId": { "description": "The ID of the task that this error occurred in", "$ref": "common#/definitions/hex-id" } } }, "errors": { "description": "A list of any errors which occurred while the action was running", "type": "array", "items": { "$ref": "#/definitions/actionError" } } } }