alepha
Version:
Easy-to-use modern TypeScript framework for building many kind of applications.
32 lines (29 loc) • 812 B
text/typescript
import { type Static, z } from "alepha";
export const errorSchema = z
.object({
error: z.text({ description: "HTTP error name" }),
status: z.integer().describe("HTTP status code"),
message: z.text({
description: "Short text which describe the error",
size: "rich",
}),
details: z
.text({
description: "Detailed description of the error",
size: "rich",
})
.optional(),
requestId: z.text().optional(),
cause: z
.object({
name: z.text(),
message: z.text({
description: "Cause Error message",
size: "rich",
}),
})
.optional(),
})
.meta({ title: "HttpError" })
.describe("Generic response after a failed operation");
export type ErrorSchema = Static<typeof errorSchema>;