Variable typeStringSchemaConst

typeStringSchema: ZodUnion<
    [
        ZodLiteral<"boolean">,
        ZodLiteral<"double">,
        ZodLiteral<"int">,
        ZodLiteral<"float">,
        ZodLiteral<"string">,
        ZodLiteral<"json">,
        ZodLiteral<"raw">,
    ],
> = ...

Schema for type strings in the NT protocol.