{
  "$id": "https://trulyhelpfulblogs.com/data/browser-download-error-table-schema-v1.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "description": "One normalized row in Browser download error message table v1.",
  "properties": {
    "browser": {
      "enum": [
        "Chrome",
        "Edge",
        "Firefox"
      ]
    },
    "escalationOwner": {
      "minLength": 1,
      "type": "string"
    },
    "lastReviewed": {
      "format": "date",
      "type": "string"
    },
    "likelyCauseClass": {
      "minLength": 1,
      "type": "string"
    },
    "limitation": {
      "minLength": 1,
      "type": "string"
    },
    "message": {
      "minLength": 1,
      "type": "string"
    },
    "safeFirstCheck": {
      "minLength": 1,
      "type": "string"
    },
    "sourceUrl": {
      "format": "uri",
      "type": "string"
    }
  },
  "required": [
    "message",
    "browser",
    "likelyCauseClass",
    "safeFirstCheck",
    "escalationOwner",
    "sourceUrl",
    "limitation",
    "lastReviewed"
  ],
  "title": "Browser download error row v1",
  "type": "object"
}
