Skip to main content

Sick Leave Certificate

Description

Sick Leave Certificate document serves as official documentation issued by a medical professional to confirm an employee's inability to work due to illness or injury for a specific timeframe.

Schema Information

{
"type": "object",
"title": "Sick Leave Certificate",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"documentType",
"patientName",
"dateOfBirth",
"address",
"doctorName",
"dateOfExamination",
"diagnosis",
"sickLeaveDuration"
],
"properties": {
"address": {
"type": "string"
},
"remarks": {
"type": "string"
},
"diagnosis": {
"type": "string"
},
"doctorName": {
"type": "string"
},
"dateOfBirth": {
"type": "string",
"format": "date"
},
"patientName": {
"type": "string"
},
"documentType": {
"type": "string"
},
"sickLeaveEnd": {
"type": "string",
"format": "date"
},
"sickLeaveBegin": {
"type": "string",
"format": "date"
},
"dateOfExamination": {
"type": "string",
"format": "date"
},
"additionalInformation": {
"type": "object"
},
"patientSocialSecurityNumber": {
"type": "string"
}
},
"additionalProperties": false
}