toJsonLd method

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

Serialize SchemaUnitPriceSpecification to JSON-LD

Implementation

@override
Map<String, dynamic> toJsonLd() => removeEmpty({
      '@context': 'https://schema.org',
      '@type': 'UnitPriceSpecification',
      'billingDuration': convertToJsonLd(
          billingDuration, [SchemaDuration, SchemaQuantitativeValue, int]),
      'billingIncrement': convertToJsonLd(billingIncrement, [int]),
      'billingStart': convertToJsonLd(billingStart, [int]),
      'priceComponentType': convertToJsonLd(
          priceComponentType, [SchemaPriceComponentTypeEnumeration]),
      'priceType':
          convertToJsonLd(priceType, [SchemaPriceTypeEnumeration, String]),
      'referenceQuantity':
          convertToJsonLd(referenceQuantity, [SchemaQuantitativeValue]),
      'unitCode': convertToJsonLd(unitCode, [String, String]),
      'unitText': convertToJsonLd(unitText, [String]),
      'eligibleQuantity':
          convertToJsonLd(eligibleQuantity, [SchemaQuantitativeValue]),
      'eligibleTransactionVolume': convertToJsonLd(
          eligibleTransactionVolume, [SchemaPriceSpecification]),
      'maxPrice': convertToJsonLd(maxPrice, [int]),
      'minPrice': convertToJsonLd(minPrice, [int]),
      'price': convertToJsonLd(price, [String, int]),
      'priceCurrency': convertToJsonLd(priceCurrency, [String]),
      'validFrom': convertToJsonLd(validFrom, [String, String]),
      'validThrough': convertToJsonLd(validThrough, [String, String]),
      'valueAddedTaxIncluded': convertToJsonLd(valueAddedTaxIncluded, [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]),
    });