{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "version": "1.0.0",
  "type": "object",
  "additionalProperties": false,
  "description": "JSON Schema for applications that are accepted have been added to the day list",
  "required": [
    "data"
  ],
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "status": {
          "type": "string"
        },
        "hmlr_reference": {
          "type": "string"
        },
        "priority": {
          "type": "string",
          "format": "datetime"
        }
      }
    }
  }
}