toJsonLd method
Serialize SchemaPropertyValueSpecification to JSON-LD
Implementation
@override
Map<String, dynamic> toJsonLd() => removeEmpty({
'@context': 'https://schema.org',
'@type': 'PropertyValueSpecification',
'defaultValue': convertToJsonLd(defaultValue, [String, SchemaThing]),
'maxValue': convertToJsonLd(maxValue, [int]),
'minValue': convertToJsonLd(minValue, [int]),
'multipleValues': convertToJsonLd(multipleValues, [bool]),
'readonlyValue': convertToJsonLd(readonlyValue, [bool]),
'stepValue': convertToJsonLd(stepValue, [int]),
'valueMaxLength': convertToJsonLd(valueMaxLength, [int]),
'valueMinLength': convertToJsonLd(valueMinLength, [int]),
'valueName': convertToJsonLd(valueName, [String]),
'valuePattern': convertToJsonLd(valuePattern, [String]),
'valueRequired': convertToJsonLd(valueRequired, [bool]),
'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]),
});