toJsonLd method

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

Serialize SchemaHealthInsurancePlan to JSON-LD

Implementation

@override
Map<String, dynamic> toJsonLd() => removeEmpty({
      '@context': 'https://schema.org',
      '@type': 'HealthInsurancePlan',
      'benefitsSummaryUrl': convertToJsonLd(benefitsSummaryUrl, [String]),
      'contactPoint': convertToJsonLd(contactPoint, [SchemaContactPoint]),
      'healthPlanDrugOption': convertToJsonLd(healthPlanDrugOption, [String]),
      'healthPlanDrugTier': convertToJsonLd(healthPlanDrugTier, [String]),
      'healthPlanId': convertToJsonLd(healthPlanId, [String]),
      'healthPlanMarketingUrl':
          convertToJsonLd(healthPlanMarketingUrl, [String]),
      'includesHealthPlanFormulary': convertToJsonLd(
          includesHealthPlanFormulary, [SchemaHealthPlanFormulary]),
      'includesHealthPlanNetwork': convertToJsonLd(
          includesHealthPlanNetwork, [SchemaHealthPlanNetwork]),
      'usesHealthPlanIdStandard':
          convertToJsonLd(usesHealthPlanIdStandard, [String, String]),
      '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]),
    });