proposit-core
    Preparing search index...

    Variable RelaxedPatentReferenceSchemaConst

    RelaxedPatentReferenceSchema: TIntersect<
        [
            TObject<
                {
                    type: TUnion<
                        [
                            TLiteral<"Book">,
                            TLiteral<"Website">,
                            TLiteral<"BookChapter">,
                            TLiteral<"Handbook">,
                            TLiteral<"TechnicalReport">,
                            TLiteral<"Standard">,
                            TLiteral<"Thesis">,
                        ],
                    >;
                },
            >,
            TObject<
                {
                    country: TString;
                    date: TDateType;
                    inventors: TArray<
                        TObject<
                            {
                                familyName: TString;
                                givenNames: TString;
                                suffix: TOptional<TString>;
                            },
                        >,
                    >;
                    patentNumber: TString;
                    title: TString;
                    type: TLiteral<"Patent">;
                },
            >,
        ],
    > = ...