Variable textContentTypesSchemaConst

textContentTypesSchema: ZodEnum<["text/plain", "text/html", "text/css", "text/javascript", "text/csv", "application/x-www-form-urlencoded", "text/xml"]> = ...

Zod schema for text content types

const textContentType = textContentTypesSchema.parse('text/plain');
console.log(textContentType); // text/plain