toJsonLd method
Serialize SchemaMonetaryAmountDistribution to JSON-LD
Implementation
@override
Map<String, dynamic> toJsonLd() => removeEmpty({
'@context': 'https://schema.org',
'@type': 'MonetaryAmountDistribution',
'currency': convertToJsonLd(currency, [String]),
'duration': convertToJsonLd(duration, [SchemaDuration]),
'median': convertToJsonLd(median, [int]),
'percentile10': convertToJsonLd(percentile10, [int]),
'percentile25': convertToJsonLd(percentile25, [int]),
'percentile75': convertToJsonLd(percentile75, [int]),
'percentile90': convertToJsonLd(percentile90, [int]),
'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]),
});