Variable OnlineDocumentReferenceSchemaConst
OnlineDocumentReferenceSchema: TIntersect<
[
TObject<
{
type: TUnion<
[
TLiteral<"Book">,
TLiteral<"Website">,
TLiteral<"BookChapter">,
TLiteral<"Handbook">,
TLiteral<"TechnicalReport">,
TLiteral<"Standard">,
TLiteral<"Thesis">,
],
>;
},
>,
TObject<
{
accessedDate: TCodec<TRefine<TUnsafe<Date>>, Date>;
authors: TOptional<
TArray<
TObject<
{
familyName: TString;
givenNames: TString;
suffix: TOptional<TString>;
},
>,
>,
>;
publisher: TOptional<TString>;
title: TString;
type: TLiteral<"OnlineDocument">;
url: TString;
},
>,
],
> = ...