Validators

6 input validation tools: email addresses, URLs, IP addresses, color codes, semantic versions, and Kubernetes manifests.

Frequently Asked Questions

What does the JSON validator check?
Syntax correctness: missing commas, unquoted keys, trailing commas, and similar issues. It points to the exact line where the problem is.
Can I validate an email address format here?
Yes. The email validator checks against the RFC 5322 standard. Keep in mind format validation doesn't confirm the address actually exists: only a test send can verify that.
What's the semantic version validator for?
Checking that a version string like 1.2.3-beta.1 follows the semver spec correctly. Handy in CI scripts or when publishing packages.
Is the Kubernetes YAML validator checking against an actual schema?
Yes: it validates against the Kubernetes API spec, which helps catch resource definition errors before you run kubectl apply.
Does the URL validator check if a URL is actually live?
It checks format and structure: protocol, domain, path syntax. It doesn't make a network request to verify the URL is reachable.