toJsonLd method

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

Serialize SchemaDrugStrength to JSON-LD

Implementation

@override
Map<String, dynamic> toJsonLd() => removeEmpty({
      '@context': 'https://schema.org',
      '@type': 'DrugStrength',
      'activeIngredient': convertToJsonLd(activeIngredient, [String]),
      'availableIn': convertToJsonLd(availableIn, [SchemaAdministrativeArea]),
      'maximumIntake':
          convertToJsonLd(maximumIntake, [SchemaMaximumDoseSchedule]),
      'strengthUnit': convertToJsonLd(strengthUnit, [String]),
      'strengthValue': convertToJsonLd(strengthValue, [int]),
      'code': convertToJsonLd(code, [SchemaMedicalCode]),
      'funding': convertToJsonLd(funding, [SchemaGrant]),
      'guideline': convertToJsonLd(guideline, [SchemaMedicalGuideline]),
      'legalStatus': convertToJsonLd(legalStatus,
          [SchemaDrugLegalStatus, SchemaMedicalEnumeration, String]),
      'medicineSystem':
          convertToJsonLd(medicineSystem, [SchemaMedicineSystem]),
      'recognizingAuthority':
          convertToJsonLd(recognizingAuthority, [SchemaOrganization]),
      'relevantSpecialty':
          convertToJsonLd(relevantSpecialty, [SchemaMedicalSpecialty]),
      'study': convertToJsonLd(study, [SchemaMedicalStudy]),
      '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]),
    });