Skip to content

Instantly share code, notes, and snippets.

@einarwh
Created April 8, 2026 10:15
Show Gist options
  • Select an option

  • Save einarwh/d5874e144a21fdb9189a4cba277db8f1 to your computer and use it in GitHub Desktop.

Select an option

Save einarwh/d5874e144a21fdb9189a4cba277db8f1 to your computer and use it in GitHub Desktop.
Customer Schema (first version), published 01.01.2026.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "/hellish-enterprise/customer-schema-20260101.json",
"title": "Customer",
"description": "Validation schema for customers.",
"type": "object",
"required": ["userId", "email", "birthDate"],
"properties": {
"userId": {
"type": "string",
"minLength": 1
},
"email": {
"type": "string",
"format": "email"
},
"birthDate": {
"type": "string",
"format": "datetime"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment