{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "HotHub Activity Notes",
  "type": "object",
  "required": [
    "entries"
  ],
  "properties": {
    "exerciseId": {
      "type": "string"
    },
    "entries": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "text"
        ],
        "properties": {
          "module": {
            "type": "string"
          },
          "time": {
            "type": "string"
          },
          "owner": {
            "type": "string"
          },
          "protocolAction": {
            "type": "string"
          },
          "text": {
            "type": "string"
          }
        }
      }
    }
  }
}
