Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
[![License](https://img.shields.io/badge/License-BSD%203%20Clause-blue.svg)](https://github.com/proto-studio/protovalidate/blob/main/LICENSE)
[![GoDoc](https://godoc.org/github.com/golang/gddo?status.svg)](https://pkg.go.dev/proto.zip/studio/validate)
[![codecov](https://codecov.io/gh/proto-studio/protovalidate/graph/badge.svg?token=K6MR10DKYX)](https://codecov.io/gh/proto-studio/protovalidate)
[![Go Report Card](https://goreportcard.com/badge/proto.zip/studio/validate)](https://goreportcard.com/report/proto.zip/studio/validate)
[![Discord Chat](https://img.shields.io/badge/Discord-chat-blue?logo=Discord&logoColor=white)](https://proto.studio/social/discord)

ProtoValidate is a fluent data validation library for Go.
Expand Down Expand Up @@ -43,12 +42,18 @@ Supported data types out of the box:
- `uint` / `uint8` / `uint16` / `uint32` / `uint64`
- `float32` / `float64`
- `struct` / `map` / `[]`
- `time.Time`
- `time.Time` / `time.Duration`
- Email addresses
- Domains
- IPs / CIDR blocks

Easily customize to support your own data types.

## Projects Using ProtoValidate

- [jsonapi](https://github.com/proto-studio/jsonapi) A Json:API implementation in Go.
- [jose](https://github.com/proto-studio/jose) A Jose implementation suporting JWT/JWS signing and validating.

## Versioning

This package follows conventional Go versioning. Any version up to version 1.0.0 is considered "unstable" and the API may change.
Expand Down