{
"name": "Absensi",
"type": "object",
"properties": {
"kelas_id": {
"type": "string",
"description": "ID kelas"
},
"siswa_id": {
"type": "string",
"description": "ID siswa"
},
"tanggal": {
"type": "string",
"format": "date",
"description": "Tanggal absensi"
},
"pertemuan_ke": {
"type": "number",
"description": "Pertemuan ke-"
},
"status": {
"type": "string",
"enum": [
"H",
"S",
"I",
"A"
],
"default": "H",
"description": "H=Hadir, S=Sakit, I=Izin, A=Alpa"
}
},
"required": [
"kelas_id",
"siswa_id",
"tanggal",
"status"
]
}