validator

package
v0.1.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 14, 2026 License: MIT Imports: 7 Imported by: 0

Documentation

Overview

Package validator provides the Validator contract plus a go-playground/validator implementation that maps violations to apperror.

Index

Constants

This section is empty.

Variables

Functions

This section is empty.

Types

type Option

type Option func(v *playgroundLib.Validate)

Option extends the underlying validator with service-specific aliases or custom validation functions.

func WithAlias

func WithAlias(alias, tags string) Option

WithAlias registers a tag alias (e.g. "asset_category" → "required,oneof=...").

func WithValidation

func WithValidation(tag string, fn playgroundLib.Func) Option

WithValidation registers a custom validation function under the given tag.

type Playground

type Playground struct {
	// contains filtered or unexported fields
}

Playground validates structs using github.com/go-playground/validator.

func NewPlayground

func NewPlayground(opts ...Option) *Playground

func (*Playground) Validate

func (v *Playground) Validate(i interface{}) error

type Validator

type Validator interface {
	Validate(s interface{}) error
}

Validator is an interface for validating structs, typically implemented by a struct validator library.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL