toJsonLd method
Serialize SchemaCourseInstance to JSON-LD
Implementation
@override
Map<String, dynamic> toJsonLd() => removeEmpty({
...super.toJsonLd(),
'@type': 'CourseInstance',
'courseMode': convertToJsonLd(courseMode, [String]),
'courseSchedule': convertToJsonLd(courseSchedule, [SchemaSchedule]),
'courseWorkload': convertToJsonLd(courseWorkload, [String]),
'instructor': convertToJsonLd(instructor, [SchemaPerson]),
});