Variable RelaxedVideoReferenceSchemaConst
RelaxedVideoReferenceSchema: 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>;
},
>,
>,
>;
platform: TString;
releaseDate: TOptional<TCodec<TRefine<TUnsafe<Date>>, Date>>;
title: TString;
type: TLiteral<"Video">;
url: TString;
},
>,
],
> = ...