mx-space/core · Archived

zod-patterns

Mix Space project Zod schema patterns. Apply when creating DTOs, validation schemas, or handling request validation.

First seen Jan 24, 2026

Installation

$ npx skills add mx-space/core --skill zod-patterns

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from mx-space/core · top by installs.

npx skills add mx-space/core

Browse all from mx-space/core

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 554
License LICENSE
Default branch master
Open issues 9
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 4,982 B
  • docs SUMMARY.md 136 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 44 installs

SKILL.md

Zod Schema Patterns

Basic Pattern

Nest 12 validates request parameters with StandardSchemaValidationPipe and @Body / @Query / @Param({ schema }). Keep Zod schemas; infer types from them. Do not introduce createZodDto or nestjs-zod.

import { z } from 'zod'

// Define Schema
export const MySchema = z.object({
  name: z.string().min(1),
  email: z.string().email(),
  age: z.number().int().positive().optional(),
})

export type MyInput = z.infer<typeof MySchema>

// Partial schema for updates
export const PartialMySchema = MySchema.partial()
export type PartialMyInput = z.infer<typeof PartialMySchema>

Controller wiring:

@Post('/')
async create(@Body({ schema: MySchema }) body: MyInput) {
  return this.service.create(body)
}

@Patch('/:id')
async patch(
  @Param({ schema: EntityIdSchema }) params: EntityIdInput,
  @Body({ schema: PartialMySchema }) body: PartialMyInput,
) {}

Project Custom Validators

Location: apps/core/src/common/zod/

import {
  // From primitives.ts:
  zNonEmptyString, // Non-empty string (z.string().min(1))
  zCoerceInt, // Coerced integer
  zCoercePositiveInt, // Coerced positive integer
  zCoerceBoolean, // Coerced boolean (handles 'true'/'1'/1/etc.)
  zCoerceDate, // Coerced date
  zOptionalDate, // Optional date (null/empty → undefined)
  zOptionalBoolean, // Optional coerced boolean
  zEmptyStringToNull, // Empty string → null, else string
  zNilOrString, // string | null | undefined
  zHexColor, // Hex color (#fff or #ffffff)
  zAllowedUrl, // HTTP or HTTPS URL
  zStrictUrl, // Strict URL validation
  zHttpsUrl, // HTTPS-only URL
  zPaginationPage, // Coerced int, min 1, default 1
  zPaginationSize, // Coerced int, min 1, max 50, default 20
  zSortOrder, // 1 | -1 | undefined (accepts 'asc'/'desc')
  zArrayUnique, // Unique array elements (generic)
  zUniqueStringArray, // Unique non-empty string array

  // From custom.ts:
  zBooleanOrString, // boolean | string union
  zTransformEmptyNull, // Empty string → null (generic wrapper)
  zTransformBoolean, // Transform to optional boolean
  zPinDate, // Pin date (Date | null | undefined, true=now, false=null)
  zSlug, // Slug string (trimmed)
  zEmail, // Email with custom message
  zUrl, // URL with custom message
  zMaxLengthString, // Max length string factory
  zRefTypeTransform, // Content ref type ('post'→'Post', etc.)
  zPrefer, // 'lexical' enum optional
  zLang, // 2-char language code

  // From shared/id/entity-id.ts:
  zEntityId, // Snowflake entity ID string validation
  zEntityIdOrInt, // Entity ID or positive integer union
} from '~/common/zod'

Entity ID Validation

import { zEntityId } from '~/common/zod'

const Schema = z.object({
  id: zEntityId, // Snowflake ID string
  categoryId: zEntityId, // Foreign key reference
  relatedIds: z.array(zEntityId), // Array of entity IDs
})

// For path params:
import { EntityIdSchema, type EntityIdDto } from '~/shared/dto/id.dto'
// @Param({ schema: EntityIdSchema }) params: EntityIdDto

Extending Base Schemas

// Compose schemas using .extend()
const PostSchema = z.object({
  title: zNonEmptyString,
  slug: zSlug,
  categoryId: zEntityId,
  tags: z.array(z.string()).optional(),
  contentFormat: z.enum(['markdown', 'lexical']),
})

Common Patterns

Optional Fields with Defaults

z.boolean().default(true).optional()
z.number().default(0).optional()
z.array(z.string()).default([]).optional()

Preprocessing

// Empty string to null
z.preprocess(
  (val) => (val === '' ? null : val),
  z.string().nullable(),
).optional()

// String to number
z.preprocess(
  (val) => (typeof val === 'string' ? parseInt(val, 10) : val),
  z.number(),
)

Union Types

z.union([z.string(), z.number()])
z.enum(['draft', 'published', 'archived'])

Array Validation

// Basic array
z.array(z.string())

// Length constraints
z.array(z.string()).min(1).max(10)

// Unique elements
zArrayUnique(z.string())

Nested Objects

const AddressSchema = z.object({
  street: z.string(),
  city: z.string(),
})

const UserSchema = z.object({
  name: z.string(),
  address: AddressSchema.optional(),
  addresses: z.array(AddressSchema).optional(),
})

Conditional Validation

// refine for custom validation
z.object({
  password: z.string(),
  confirmPassword: z.string(),
}).refine((data) => data.password === data.confirmPassword, {
  message: 'Passwords must match',
})

Type Inference

// Infer type from Schema
type MyType = z.infer<typeof MySchema>

// Use in Service
async create(data: z.infer<typeof MySchema>) {
  return this.repository.create(data)
}