Skip to content

Instantly share code, notes, and snippets.

@timheuer
Created July 10, 2023 22:50
Show Gist options
  • Save timheuer/56ee85e69b065c5accdf6cf81e89bdb4 to your computer and use it in GitHub Desktop.
Save timheuer/56ee85e69b065c5accdf6cf81e89bdb4 to your computer and use it in GitHub Desktop.
address.json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"Street": {
"type": "string"
},
"City": {
"type": "string"
},
"State": {
"type": "string"
},
"PostalCode": {
"type": "string"
}
},
"required": [ "Street", "City", "State", "PostalCode" ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment