toJsonLd method

  1. @override
Map<String, dynamic> toJsonLd()

Serialize SchemaPropertyValue to JSON-LD

Implementation

@override
Map<String, dynamic> toJsonLd() => removeEmpty({
      '@context': 'https://schema.org',
      '@type': 'PropertyValue',
      'maxValue': convertToJsonLd(maxValue, [int]),
      'measurementMethod': convertToJsonLd(measurementMethod,
          [SchemaDefinedTerm, SchemaMeasurementMethodEnum, String, String]),
      'measurementTechnique': convertToJsonLd(measurementTechnique,
          [SchemaDefinedTerm, SchemaMeasurementMethodEnum, String, String]),
      'minValue': convertToJsonLd(minValue, [int]),
      'propertyID': convertToJsonLd(propertyID, [String, String]),
      'unitCode': convertToJsonLd(unitCode, [String, String]),
      'unitText': convertToJsonLd(unitText, [String]),
      'value':
          convertToJsonLd(value, [String, SchemaStructuredValue, bool, int]),
      'valueReference': convertToJsonLd(valueReference, [
        SchemaDefinedTerm,
        SchemaEnumeration,
        SchemaMeasurementTypeEnumeration,
        SchemaPropertyValue,
        SchemaQualitativeValue,
        SchemaQuantitativeValue,
        String,
        SchemaStructuredValue
      ]),
      '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]),
    });