toJsonLd method

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

Serialize SchemaActionAccessSpecification to JSON-LD

Implementation

@override
Map<String, dynamic> toJsonLd() => removeEmpty({
      '@context': 'https://schema.org',
      '@type': 'ActionAccessSpecification',
      'availabilityEnds':
          convertToJsonLd(availabilityEnds, [String, String, String]),
      'availabilityStarts':
          convertToJsonLd(availabilityStarts, [String, String, String]),
      'category': convertToJsonLd(category, [
        SchemaCategoryCode,
        SchemaPhysicalActivityCategory,
        String,
        String,
        SchemaThing
      ]),
      'eligibleRegion': convertToJsonLd(
          eligibleRegion, [SchemaGeoShape, SchemaPlace, String]),
      'expectsAcceptanceOf':
          convertToJsonLd(expectsAcceptanceOf, [SchemaOffer]),
      'ineligibleRegion': convertToJsonLd(
          ineligibleRegion, [SchemaGeoShape, SchemaPlace, String]),
      'requiresSubscription': convertToJsonLd(
          requiresSubscription, [SchemaMediaSubscription, 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]),
    });