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

    Class CRSchedule<Type, Shape, Snapshot>

    CRDT-backed Schema.org Schedule.

    Schema.org: A repeating time period used to describe a regularly occurring Event.

    Type Parameters

    Hierarchy (View Summary)

    Implements

    Index

    Constructors

    Properties

    "@id": string

    JSON-LD identifier for this node.

    "@type": Type

    Schema.org type name for this node.

    additionalType: Readonly<CRSet<string>>

    Schema.org additionalType: An additional type for the item.

    alternateName: Readonly<CRSet<string>>

    Schema.org alternateName: An alias for the item.

    byDay: Readonly<CRSet<CRScheduleByDay>>

    Schema.org byDay: Day or iCal byDay recurrence rule fragment.

    byMonth: Readonly<CRSet<number>>

    Schema.org byMonth: Month numbers on which a recurring event takes place.

    byMonthDay: Readonly<CRSet<number>>

    Schema.org byMonthDay: Month-day numbers for recurring events.

    byMonthWeek: Readonly<CRSet<number>>

    Schema.org byMonthWeek: Week numbers in the month for recurring events.

    description: Readonly<CRText>

    Schema.org description: A description of the item.

    disambiguatingDescription: Readonly<CRText>

    Schema.org disambiguatingDescription: A short description used to disambiguate the item from other, similar items.

    Schema.org duration: Duration of each scheduled occurrence.

    endDate: string

    Schema.org endDate: Date or date-time when the schedule stops applying.

    endTime: string

    Schema.org endTime: Time or date-time when each occurrence ends.

    exceptDate: Readonly<CRSet<string>>

    Schema.org exceptDate: Date or date-time excluded from the schedule.

    identifier: Readonly<
        string
        | CRIdReferenceValue
        | CRTypedIdReferenceValue<"PropertyValue">,
    >

    Schema.org identifier.

    image: Readonly<CRSet<CRThingImage>>

    Schema.org image: An image of the item.

    mainEntityOfPage: Readonly<CRSet<CRThingMainEntityOfPage>>

    Schema.org mainEntityOfPage: A page or other CreativeWork for which this thing is the main entity being described.

    name: Readonly<CRText>

    Schema.org name: The name of the item.

    owner: Readonly<CRSet<CRThingOwner>>

    Schema.org owner: A person or organization who owns this Thing.

    potentialAction: Readonly<CRSet<CRThingPotentialAction>>

    Schema.org potentialAction: A potential Action for this Thing.

    repeatCount: number

    Schema.org repeatCount: Number of times a recurring event takes place.

    repeatFrequency: string

    Schema.org repeatFrequency: Frequency at which events occur.

    sameAs: Readonly<CRSet<string>>

    Schema.org sameAs: URL of a reference Web page that unambiguously indicates the item's identity.

    scheduleTimezone: string

    Schema.org scheduleTimezone: IANA timezone for schedule times.

    startDate: string

    Schema.org startDate: Date or date-time when the schedule starts applying.

    startTime: string

    Schema.org startTime: Time or date-time when each occurrence starts.

    subjectOf: Readonly<CRSet<CRThingSubjectOf>>

    Schema.org subjectOf: A CreativeWork or Event about this Thing.

    url: string

    Schema.org url: URL of the item.

    Methods

    • Returns cloned key-value pairs for the current replica state.

      Type Parameters

      • K extends string | number | symbol

      Returns [K, Shape[K]][]

      The current field entries.

    • Removes overwritten identifiers that every provided frontier has acknowledged.

      Parameters

      • frontiers: Partial<Record<keyof Shape, string>>[]

        A collection of acknowledgement frontiers to compact against.

      Returns void

    • Returns the struct field keys.

      Type Parameters

      • K extends string | number | symbol

      Returns K[]

      The field keys in the current replica.

    • Applies a remote or local delta to the replica state.

      Parameters

      • crStructDelta: Partial<CRStructSnapshot<Shape>> | Partial<Record<keyof Shape, unknown>>

        The partial serializable field delta to merge.

      Returns void