proposit-core
    Preparing search index...

    Variable PersonalCommunicationReferenceSchemaConst

    PersonalCommunicationReferenceSchema: TIntersect<
        [
            TObject<
                {
                    type: TUnion<
                        [
                            TLiteral<"Book">,
                            TLiteral<"Website">,
                            TLiteral<"BookChapter">,
                            TLiteral<"Handbook">,
                            TLiteral<"TechnicalReport">,
                            TLiteral<"Standard">,
                            TLiteral<"Thesis">,
                        ],
                    >;
                },
            >,
            TObject<
                {
                    date: TDateType;
                    person: TObject<
                        {
                            familyName: TString;
                            givenNames: TString;
                            suffix: TOptional<TString>;
                        },
                    >;
                    type: TLiteral<"PersonalCommunication">;
                },
            >,
        ],
    > = ...