proposit-core
    Preparing search index...

    Variable GovernmentPublicationReferenceSchemaConst

    GovernmentPublicationReferenceSchema: TIntersect<
        [
            TObject<
                {
                    type: TUnion<
                        [
                            TLiteral<"Book">,
                            TLiteral<"Website">,
                            TLiteral<"BookChapter">,
                            TLiteral<"Handbook">,
                            TLiteral<"TechnicalReport">,
                            TLiteral<"Standard">,
                            TLiteral<"Thesis">,
                        ],
                    >;
                },
            >,
            TObject<
                {
                    agency: TString;
                    authors: TOptional<
                        TArray<
                            TObject<
                                {
                                    familyName: TString;
                                    givenNames: TString;
                                    suffix: TOptional<TString>;
                                },
                            >,
                        >,
                    >;
                    date: TDateType;
                    location: TString;
                    reportNumber: TOptional<TString>;
                    title: TString;
                    type: TLiteral<"GovernmentPublication">;
                },
            >,
        ],
    > = ...