Skip to content

Instantly share code, notes, and snippets.

@madhikarma
Created April 15, 2022 06:36
Show Gist options
  • Save madhikarma/4c0ad0918e2a144d6b9426f56b2f1515 to your computer and use it in GitHub Desktop.
Save madhikarma/4c0ad0918e2a144d6b9426f56b2f1515 to your computer and use it in GitHub Desktop.
example json schema person
{
"$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