Variable: AuditResponseSchema
const AuditResponseSchema: ZodObject<{
created_at: ZodOptional<ZodNullable<ZodUnion<[ZodString, ZodNumber]>>>;
created_by: ZodOptional<ZodNullable<ZodString>>;
updated_at: ZodOptional<ZodNullable<ZodUnion<[ZodString, ZodNumber]>>>;
updated_by: ZodOptional<ZodNullable<ZodString>>;
}, "passthrough", ZodTypeAny, objectOutputType<{
created_at: ZodOptional<ZodNullable<ZodUnion<[ZodString, ZodNumber]>>>;
created_by: ZodOptional<ZodNullable<ZodString>>;
updated_at: ZodOptional<ZodNullable<ZodUnion<[ZodString, ZodNumber]>>>;
updated_by: ZodOptional<ZodNullable<ZodString>>;
}, ZodTypeAny, "passthrough">, objectInputType<{
created_at: ZodOptional<ZodNullable<ZodUnion<[ZodString, ZodNumber]>>>;
created_by: ZodOptional<ZodNullable<ZodString>>;
updated_at: ZodOptional<ZodNullable<ZodUnion<[ZodString, ZodNumber]>>>;
updated_by: ZodOptional<ZodNullable<ZodString>>;
}, ZodTypeAny, "passthrough">>;
Defined in: src/models/dlp-audit.ts:11
Audit metadata block shared by every DLP resource response. Tracks who created and last updated the resource.
All fields are nullish (the live API emits null for unset values, not undefined).
Timestamps accept either ISO string or numeric epoch (ms) — the API has been
observed to emit both shapes across different records.