Variable RelaxedBlogReferenceSchemaConst
RelaxedBlogReferenceSchema: 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>;
author: TObject<
{
familyName: TString;
givenNames: TString;
suffix: TOptional<TString>;
},
>;
blogName: TString;
date: TCodec<TRefine<TUnsafe<Date>>, Date>;
postTitle: TString;
type: TLiteral<"Blog">;
url: TString;
},
>,
],
> = ...