Variable RelaxedNewspaperArticleReferenceSchemaConst
RelaxedNewspaperArticleReferenceSchema: 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>;
},
>,
>;
date: TCodec<TRefine<TUnsafe<Date>>, Date>;
newspaperTitle: TString;
pages: TOptional<TString>;
title: TString;
type: TLiteral<"NewspaperArticle">;
},
>,
],
> = ...