toJsonLd method

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

Serialize SchemaParentAudience to JSON-LD

Implementation

@override
Map<String, dynamic> toJsonLd() => removeEmpty({
      '@context': 'https://schema.org',
      '@type': 'ParentAudience',
      'childMaxAge': convertToJsonLd(childMaxAge, [int]),
      'childMinAge': convertToJsonLd(childMinAge, [int]),
      'healthCondition':
          convertToJsonLd(healthCondition, [SchemaMedicalCondition]),
      'requiredGender': convertToJsonLd(requiredGender, [String]),
      'requiredMaxAge': convertToJsonLd(requiredMaxAge, [int]),
      'requiredMinAge': convertToJsonLd(requiredMinAge, [int]),
      'suggestedAge':
          convertToJsonLd(suggestedAge, [SchemaQuantitativeValue]),
      'suggestedGender':
          convertToJsonLd(suggestedGender, [SchemaGenderType, String]),
      'suggestedMaxAge': convertToJsonLd(suggestedMaxAge, [int]),
      'suggestedMeasurement':
          convertToJsonLd(suggestedMeasurement, [SchemaQuantitativeValue]),
      'suggestedMinAge': convertToJsonLd(suggestedMinAge, [int]),
      'audienceType': convertToJsonLd(audienceType, [String]),
      'geographicArea':
          convertToJsonLd(geographicArea, [SchemaAdministrativeArea]),
      '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]),
    });