toJsonLd method

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

Serialize SchemaSchedule to JSON-LD

Implementation

@override
Map<String, dynamic> toJsonLd() => removeEmpty({
      '@context': 'https://schema.org',
      '@type': 'Schedule',
      'byDay': convertToJsonLd(byDay, [SchemaDayOfWeek, String]),
      'byMonth': convertToJsonLd(byMonth, [int]),
      'byMonthDay': convertToJsonLd(byMonthDay, [int]),
      'byMonthWeek': convertToJsonLd(byMonthWeek, [int]),
      'duration': convertToJsonLd(duration, [SchemaDuration]),
      'endDate': convertToJsonLd(endDate, [String, String]),
      'endTime': convertToJsonLd(endTime, [String, String]),
      'exceptDate': convertToJsonLd(exceptDate, [String, String]),
      'repeatCount': convertToJsonLd(repeatCount, [int]),
      'repeatFrequency':
          convertToJsonLd(repeatFrequency, [SchemaDuration, String]),
      'scheduleTimezone': convertToJsonLd(scheduleTimezone, [String]),
      'startDate': convertToJsonLd(startDate, [String, String]),
      'startTime': convertToJsonLd(startTime, [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]),
    });