{
  "$schema": "http://json-schema.org/draft-06/schema#",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "version": {
      "type": "string"
    },
    "code": {
      "type": "string",
      "enum": ["I", "P", "T", "R", "F", "C", "D", "A", "B", "null", null]
    },
    "description": {
      "type": "string"
    },
    "taskRunId": {
      "type": "string",
      "description": "Since 2024.01. the taskrun id for this task run. null if not available"
    }
  },
  "required": [
     "version",
      "code",
      "description"
  ]
}
