Variable MJCountrySchemaConst
MJCountrySchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
BoundaryGeoJSON: ZodNullable<ZodString>;
CommonAliases: ZodNullable<ZodString>;
ID: ZodString;
ISO2: ZodString;
ISO3: ZodString;
Latitude: ZodNullable<ZodNumber>;
Longitude: ZodNullable<ZodNumber>;
Name: ZodString;
NumericCode: ZodNullable<ZodNumber>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
BoundaryGeoJSON?: string;
CommonAliases?: string;
ID?: string;
ISO2?: string;
ISO3?: string;
Latitude?: number;
Longitude?: number;
Name?: string;
NumericCode?: number;
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
BoundaryGeoJSON?: string;
CommonAliases?: string;
ID?: string;
ISO2?: string;
ISO3?: string;
Latitude?: number;
Longitude?: number;
Name?: string;
NumericCode?: number;
},
> = ...
zod schema definition for the entity MJ: Countries