proposit-core
    Preparing search index...

    Variable RelaxedSoftwareReferenceSchemaConst

    RelaxedSoftwareReferenceSchema: TIntersect<
        [
            TObject<
                {
                    type: TUnion<
                        [
                            TLiteral<"Book">,
                            TLiteral<"Website">,
                            TLiteral<"BookChapter">,
                            TLiteral<"Handbook">,
                            TLiteral<"TechnicalReport">,
                            TLiteral<"Standard">,
                            TLiteral<"Thesis">,
                        ],
                    >;
                },
            >,
            TObject<
                {
                    authors: TOptional<
                        TArray<
                            TObject<
                                {
                                    familyName: TString;
                                    givenNames: TString;
                                    suffix: TOptional<TString>;
                                },
                            >,
                        >,
                    >;
                    doi: TOptional<TString>;
                    publisher: TOptional<TString>;
                    title: TString;
                    type: TLiteral<"Software">;
                    url: TString;
                    version: TOptional<TString>;
                    year: TString;
                },
            >,
        ],
    > = ...