Variable customObjectSchemaConst
customObjectSchema: ZodObject<
{
created_at: ZodOptional<ZodString>;
fields: ZodOptional<ZodRecord<ZodString, ZodUnknown>>;
id: ZodString;
org: ZodOptional<ZodString>;
row_key: ZodOptional<ZodString>;
sandbox: ZodOptional<ZodString>;
schema_type: ZodOptional<ZodString>;
team: ZodOptional<ZodString>;
updated_at: ZodOptional<ZodString>;
user: ZodOptional<ZodString>;
version: ZodOptional<ZodNumber>;
},
"strip",
ZodTypeAny,
{
created_at?: string;
fields?: Record<string, unknown>;
id: string;
org?: string;
row_key?: string;
sandbox?: string;
schema_type?: string;
team?: string;
updated_at?: string;
user?: string;
version?: number;
},
{
created_at?: string;
fields?: Record<string, unknown>;
id: string;
org?: string;
row_key?: string;
sandbox?: string;
schema_type?: string;
team?: string;
updated_at?: string;
user?: string;
version?: number;
},
> = ...
Runtime validator for CustomObject.