AppTerminationConfirmation.schema.json 581 Bytes
Newer Older
{
	"description": "This type represents the information that the MEC application instance provides to the MEC platform when informing it that the application has completed its application level related terminate/stop actions, e.g. retention of application state in the case of stop.",
	"type": "object",
	"required": [
		"operationAction"
	],
	"properties": {
		"operationAction": {
			"description": "Operation that is being performed on the MEC application instance.",
			"type": "string",
			"enum": [
				"STOPPING",
				"TERMINATING"
			],
			"example": "TERMINATING"
		}
	}
}