{
  "$schema": "http://json-schema.org/draft-06/schema#",
  "type": "object",
  "title": "User Event Import Line",
  "description": "Represents the schema for a single line of the user event import JSONL file",
  "properties": {
    "userId": {
      "title": "User ID",
      "type": "string"
    },
    "accountId": {
      "title": "Account ID",
      "type": "string"
    },
    "idempotencyKey": {
      "title": "Idempotency Key",
      "type": "string"
    },
    "event": {
      "title": "Event",
      "type": "object",
      "properties": {
        "key": {
          "title": "Event Key",
          "type": "string"
        },
        "dateTriggered": {
          "title": "Date Triggered",
          "type": "integer"
        },
        "fields": {
          "title": "Event Fields",
          "type": "object"
        }
      },
      "additionalProperties": false,
      "required": [
        "key"
      ]
    }
  },
  "additionalProperties": false,
  "required": [
    "userId",
    "accountId",
    "event"
  ]
}