{
  "description": "ContainerStateTerminated is a terminated state of a container.",
  "properties": {
    "containerID": {
      "description": "Container's ID in the format '<type>://<container_id>'",
      "type": [
        "string",
        "null"
      ]
    },
    "exitCode": {
      "description": "Exit status from the last termination of the container",
      "format": "int32",
      "type": [
        "integer",
        "null"
      ]
    },
    "finishedAt": {
      "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.",
      "format": "date-time",
      "type": [
        "string",
        "null"
      ]
    },
    "message": {
      "description": "Message regarding the last termination of the container",
      "type": [
        "string",
        "null"
      ]
    },
    "reason": {
      "description": "(brief) reason from the last termination of the container",
      "type": [
        "string",
        "null"
      ]
    },
    "signal": {
      "description": "Signal from the last termination of the container",
      "format": "int32",
      "type": [
        "integer",
        "null"
      ]
    },
    "startedAt": {
      "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.",
      "format": "date-time",
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "exitCode"
  ],
  "type": "object",
  "additionalProperties": false,
  "$schema": "http://json-schema.org/schema#"
}