{
  "$schema": "http://json-schema.org/schema#", 
  "required": [
    "exitCode"
  ], 
  "type": "object", 
  "description": "ContainerStateTerminated is a terminated state of a container.", 
  "properties": {
    "containerID": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "Container's ID in the format 'docker://<container_id>'"
    }, 
    "signal": {
      "type": "integer", 
      "description": "Signal from the last termination of the container", 
      "format": "int32"
    }, 
    "reason": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "(brief) reason from the last termination of the container"
    }, 
    "finishedAt": {
      "description": "Time at which the container last terminated", 
      "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
    }, 
    "startedAt": {
      "description": "Time at which previous execution of the container started", 
      "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
    }, 
    "message": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "Message regarding the last termination of the container"
    }, 
    "exitCode": {
      "type": "integer", 
      "description": "Exit status from the last termination of the container", 
      "format": "int32"
    }
  }
}