Created
April 8, 2026 10:15
-
-
Save einarwh/d5874e144a21fdb9189a4cba277db8f1 to your computer and use it in GitHub Desktop.
Customer Schema (first version), published 01.01.2026.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$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