Skip to content

Instantly share code, notes, and snippets.

@goxiaoy
Created March 14, 2023 06:12
Show Gist options
  • Save goxiaoy/b5b8444fe7a3f904b8806bb9db62d55c to your computer and use it in GitHub Desktop.
Save goxiaoy/b5b8444fe7a3f904b8806bb9db62d55c to your computer and use it in GitHub Desktop.
{
"$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