{
  "title": "Upload document",
  "type": "object",
  "properties": {
    "Filename": {
      "type": "string"
    },
    "DocumentType": {
      "type": "string",
      "minLength": 0,
      "maxLength": 15
    },
    "PublicationDate": {
      "type": "string",
      "minLength": 8,
      "maxLength": 8,
      "pattern": "^[0-9]*$"
    },
    "WorkerId": {
      "type": "integer",
      "minimum": 0.0,
      "maximum": 12.0
    },
    "Day": {
      "type": "integer",
      "minimum": 0.0,
      "maximum": 31.0
    },
    "Month": {
      "type": "integer",
      "minimum": 0.0,
      "maximum": 12.0
    },
    "Year": {
      "type": "integer",
      "minimum": 2000.0,
      "maximum": 2075.0
    },
    "Language": {
      "type": "string",
      "enum": [
        "N",
        "F",
        "D",
        "E"
      ]
    },
	"Description": {
      "type": "string",
	  "minLength": 0,
      "maxLength": 100
    },
    "Document": {
      "type": "string"
    }
  },
  "required": [
    "Filename",
    "DocumentType",
    "PublicationDate",
    "Language",
    "Document"
  ]
}