Shareable Link
Share this link with your team to access this content element schema.
Element Information
test
Hash:
megamfv5opzaCreated:9/22/2025
Updated:9/22/2025
Fields (3)
Headline
text
headline
Subline
datetimeRequired
subline
Image
image
image
Generated Code
Copy the generated code for your frontend and backend implementations.
Zod Schema & TypeScript Types
Frontend validation schema with TypeScript types
mega-headline-schema.ts
import { z } from 'zod'
export const MegaHeadlineSchema = z.object({
headline: z.string().optional(),
subline: z.string(),
image: z.string().optional()
})
export type MegaHeadline = z.infer<typeof MegaHeadlineSchema>