Medical Record
Description
Medical Record document contains details about an individual's health, including medical history, treatments, diagnoses, and demographic information.
Schema Information
{
"type": "object",
"title": "Medical Record",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"patientName",
"visitDate"
],
"properties": {
"notes": {
"type": "string"
},
"gender": {
"type": "string"
},
"diagnosis": {
"type": "string"
},
"medicalID": {
"type": "string"
},
"visitDate": {
"type": "string",
"format": "date"
},
"medication": {
"type": "string"
},
"procedures": {
"type": "string"
},
"dateOfBirth": {
"type": "string",
"format": "date"
},
"patientName": {
"type": "string"
},
"additionalInformation": {
"type": "object"
}
},
"additionalProperties": false
}