Created
April 20, 2024 16:47
-
-
Save benbjurstrom/c6740559d376c7b5b59daf4ac48d7908 to your computer and use it in GitHub Desktop.
exmaple json schema
This file contains 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
{ | |
"$id": "https://example.com/person.schema.json", | |
"$schema": "https://json-schema.org/draft/2020-12/schema", | |
"title": "Person", | |
"type": "object", | |
"properties": { | |
"firstName": { | |
"type": "string", | |
"description": "The person's first name." | |
}, | |
"lastName": { | |
"type": "string", | |
"description": "The person's last name." | |
}, | |
"age": { | |
"description": "Age in years which must be equal to or greater than zero.", | |
"type": "integer", | |
"minimum": 0 | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment