const mongoose = require('mongoose') const { Schema, Types } = mongoose const dokumen = require('./dokumen.model') const sanksi = require('./sanksi.model') module.exports = mongoose.model( 'Catatan', new Schema({ sanksi_id: { type: Types.ObjectId, ref: sanksi }, judul: String, isi: Object, menu: String, daftar_kehadiran_peserta: [ new Schema( { nama: String, ttd: { type: Types.ObjectId, ref: dokumen } }, { timestamps: true } ) ] }, { timestamps: true }), 'catatan' )