toJsonLd method
Serialize SchemaBioChemEntity to JSON-LD
Implementation
@override
Map<String, dynamic> toJsonLd() => removeEmpty({
'@context': 'https://schema.org',
'@type': 'BioChemEntity',
'associatedDisease': convertToJsonLd(associatedDisease,
[SchemaMedicalCondition, SchemaPropertyValue, String]),
'bioChemInteraction':
convertToJsonLd(bioChemInteraction, [SchemaBioChemEntity]),
'bioChemSimilarity':
convertToJsonLd(bioChemSimilarity, [SchemaBioChemEntity]),
'biologicalRole': convertToJsonLd(biologicalRole, [SchemaDefinedTerm]),
'funding': convertToJsonLd(funding, [SchemaGrant]),
'hasBioChemEntityPart':
convertToJsonLd(hasBioChemEntityPart, [SchemaBioChemEntity]),
'hasMolecularFunction': convertToJsonLd(hasMolecularFunction,
[SchemaDefinedTerm, SchemaPropertyValue, String]),
'hasRepresentation': convertToJsonLd(
hasRepresentation, [SchemaPropertyValue, String, String]),
'isEncodedByBioChemEntity':
convertToJsonLd(isEncodedByBioChemEntity, [SchemaGene]),
'isInvolvedInBiologicalProcess': convertToJsonLd(
isInvolvedInBiologicalProcess,
[SchemaDefinedTerm, SchemaPropertyValue, String]),
'isLocatedInSubcellularLocation': convertToJsonLd(
isLocatedInSubcellularLocation,
[SchemaDefinedTerm, SchemaPropertyValue, String]),
'isPartOfBioChemEntity':
convertToJsonLd(isPartOfBioChemEntity, [SchemaBioChemEntity]),
'taxonomicRange': convertToJsonLd(
taxonomicRange, [SchemaDefinedTerm, String, String, SchemaTaxon]),
'additionalType': convertToJsonLd(additionalType, [String, String]),
'alternateName': convertToJsonLd(alternateName, [String]),
'description': convertToJsonLd(description, [String, SchemaTextObject]),
'disambiguatingDescription':
convertToJsonLd(disambiguatingDescription, [String]),
'identifier':
convertToJsonLd(identifier, [SchemaPropertyValue, String, String]),
'image': convertToJsonLd(image, [SchemaImageObject, String]),
'mainEntityOfPage':
convertToJsonLd(mainEntityOfPage, [SchemaCreativeWork, String]),
'name': convertToJsonLd(name, [String]),
'potentialAction': convertToJsonLd(potentialAction, [SchemaAction]),
'sameAs': convertToJsonLd(sameAs, [String]),
'subjectOf':
convertToJsonLd(subjectOf, [SchemaCreativeWork, SchemaEvent]),
'url': convertToJsonLd(url, [String]),
});