{
  "type": "object",
  "additionalProperties": false,
  "required": [
    "intentPublicId",
    "status",
    "jobPublicId",
    "jobType",
    "eTag",
    "replayed"
  ],
  "properties": {
    "intentPublicId": {
      "type": "string",
      "format": "uuid"
    },
    "status": {
      "type": "string",
      "const": "COMPLETED"
    },
    "jobPublicId": {
      "type": "string",
      "format": "uuid"
    },
    "jobType": {
      "type": "string",
      "enum": [
        "MASTER_INGEST",
        "COVER_BUILD"
      ]
    },
    "eTag": {
      "type": [
        "string",
        "null"
      ]
    },
    "replayed": {
      "type": "boolean"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}
