toJsonLd method
Serialize SchemaCategoryCode to JSON-LD
Implementation
@override
Map<String, dynamic> toJsonLd() => removeEmpty({
...super.toJsonLd(),
'@type': 'CategoryCode',
'codeValue': convertToJsonLd(codeValue, [String]),
'inCodeSet':
convertToJsonLd(inCodeSet, [SchemaCategoryCodeSet, String]),
});