Variable ConferenceProceedingsReferenceSchemaConst
ConferenceProceedingsReferenceSchema: TIntersect<
[
TObject<
{
type: TUnion<
[
TLiteral<"Book">,
TLiteral<"Website">,
TLiteral<"BookChapter">,
TLiteral<"Handbook">,
TLiteral<"TechnicalReport">,
TLiteral<"Standard">,
TLiteral<"Thesis">,
],
>;
},
>,
TObject<
{
conferenceName: TString;
date: TCodec<TRefine<TUnsafe<Date>>, Date>;
editors: TOptional<
TArray<
TObject<
{
familyName: TString;
givenNames: TString;
suffix: TOptional<TString>;
},
>,
>,
>;
isbn: TOptional<TString>;
location: TString;
publisher: TString;
type: TLiteral<"ConferenceProceedings">;
},
>,
],
> = ...