Variable RelaxedBookReferenceSchemaConst
RelaxedBookReferenceSchema: TIntersect<
[
TObject<
{
type: TUnion<
[
TLiteral<"Book">,
TLiteral<"Website">,
TLiteral<"BookChapter">,
TLiteral<"Handbook">,
TLiteral<"TechnicalReport">,
TLiteral<"Standard">,
TLiteral<"Thesis">,
],
>;
},
>,
TObject<
{
authors: TArray<
TObject<
{
familyName: TString;
givenNames: TString;
suffix: TOptional<TString>;
},
>,
>;
edition: TOptional<TString>;
isbn: TOptional<TString>;
location: TOptional<TString>;
publisher: TString;
title: TString;
type: TLiteral<"Book">;
year: TString;
},
>,
],
> = ...