Variable PodcastReferenceSchemaConst
PodcastReferenceSchema: 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>;
},
>,
>,
>;
episodeTitle: TString;
platform: TString;
seriesTitle: TString;
type: TLiteral<"Podcast">;
url: TString;
},
>,
],
> = ...