@sovereignbase/schema-crdt
    Preparing search index...

    Type Alias CREventDefaultShape<Type>

    CREventDefaultShape: {
        about: CRSetSnapshot<CREventThing>;
        actor: CRSetSnapshot<CREventActor>;
        aggregateRating: CRSetSnapshot<
            CRAggregateRatingSnapshot
            | CRIdReferenceValue,
        >;
        attendee: CRSetSnapshot<CREventPersonOrOrganization>;
        audience: CRSetSnapshot<CRAudienceSnapshot | CRIdReferenceValue>;
        composer: CRSetSnapshot<CREventPersonOrOrganization>;
        contributor: CRSetSnapshot<CREventPersonOrOrganization>;
        director: CRSetSnapshot<CREventPerson>;
        doorTime: SchemaOrgDateTime | SchemaOrgTime;
        duration: CREventDuration;
        endDate: SchemaOrgDate | SchemaOrgDateTime;
        eventAttendanceMode: CREventAttendanceMode;
        eventSchedule: CRSetSnapshot<CREventSchedule>;
        eventStatus: CREventStatus;
        funder: CRSetSnapshot<CREventPersonOrOrganization>;
        funding: CRSetSnapshot<
            CRTypedIdReferenceValue<"Grant">
            | CRIdReferenceValue,
        >;
        hasParticipationOffer: CRSetSnapshot<CREventOfferOnly>;
        hasSponsorshipOffer: CRSetSnapshot<CREventOfferOnly>;
        inLanguage: CRSetSnapshot<CREventLanguage>;
        isAccessibleForFree: SchemaOrgBoolean;
        keywords: CRSetSnapshot<CREventKeywords>;
        location: CRSetSnapshot<CREventLocation>;
        maximumAttendeeCapacity: SchemaOrgInteger;
        maximumPhysicalAttendeeCapacity: SchemaOrgInteger;
        maximumVirtualAttendeeCapacity: SchemaOrgInteger;
        offers: CRSetSnapshot<CREventOffer>;
        organizer: CRSetSnapshot<CREventPersonOrOrganization>;
        performer: CRSetSnapshot<CREventPersonOrOrganization>;
        previousStartDate: CRSetSnapshot<SchemaOrgDate | SchemaOrgDateTime>;
        recordedIn: CRSetSnapshot<CRCreativeWorkSnapshot | CRIdReferenceValue>;
        remainingAttendeeCapacity: SchemaOrgInteger;
        review: CRSetSnapshot<CREventReview>;
        sponsor: CRSetSnapshot<CREventPersonOrOrganization>;
        startDate: SchemaOrgDate | SchemaOrgDateTime;
        subEvent: CRSetSnapshot<CREventReference>;
        superEvent: CRSetSnapshot<CREventReference>;
        translator: CRSetSnapshot<CREventPersonOrOrganization>;
        typicalAgeRange: SchemaOrgText;
        workFeatured: CRSetSnapshot<CRCreativeWorkSnapshot | CRIdReferenceValue>;
        workPerformed: CRSetSnapshot<CRCreativeWorkSnapshot | CRIdReferenceValue>;
    } & CRThingDefaultShape<Type>

    Serializable CRDT shape for Schema.org Event.

    Schema.org: An event happening at a certain time and location.

    Type Parameters

    • Type = "Event"

    Type Declaration