Variable PresentationReferenceSchemaConst
PresentationReferenceSchema: TIntersect<
[
TObject<
{
type: TUnion<
[
TLiteral<"Book">,
TLiteral<"Website">,
TLiteral<"BookChapter">,
TLiteral<"Handbook">,
TLiteral<"TechnicalReport">,
TLiteral<"Standard">,
TLiteral<"Thesis">,
],
>;
},
>,
TObject<
{
date: TCodec<TRefine<TUnsafe<Date>>, Date>;
eventTitle: TString;
location: TString;
presenter: TObject<
{
familyName: TString;
givenNames: TString;
suffix: TOptional<TString>;
},
>;
title: TString;
type: TLiteral<"Presentation">;
},
>,
],
> = ...