Skip to content

Instantly share code, notes, and snippets.

@robertdempsey
Last active February 28, 2020 10:42
Show Gist options
  • Save robertdempsey/6eb94aeb9b86eb242d64557a991191b0 to your computer and use it in GitHub Desktop.
Save robertdempsey/6eb94aeb9b86eb242d64557a991191b0 to your computer and use it in GitHub Desktop.
{
"$id": "https://example.com/person.schema.json",
"$schema": "http://json-schema.org/draft-07/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