Variable contentTypesSchemaConst

contentTypesSchema: ZodUnion<[ZodEnum<["text/plain", "text/html", "text/css", "text/javascript", "text/csv", "application/x-www-form-urlencoded", "text/xml"]>, ZodEnum<["application/json", "application/ld+json"]>, ZodEnum<["multipart/form-data"]>, ZodEnum<["image/jpeg", "image/png", "image/gif", "image/webp", "image/svg+xml", "application/pdf", "application/zip", "application/vnd.ms-excel", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "application/atom+xml", "application/rss+xml"]>, ZodEnum<["application/octet-stream", "audio/mpeg", "audio/ogg", "audio/wav", "video/mp4", "video/ogg", "video/webm", "font/woff", "font/woff2", "application/font-woff", "application/xml", "application/xhtml+xml", "application/x-yaml"]>]> = ...

Zod schema for all content types

const contentType = contentTypeSchema.parse('text/plain');
console.log(contentType); // text/plain