mirror of
https://github.com/LukeHagar/varsity.git
synced 2025-12-06 04:22:00 +00:00
24 lines
361 B
JSON
24 lines
361 B
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"street": {
|
|
"type": "string"
|
|
},
|
|
"city": {
|
|
"type": "string"
|
|
},
|
|
"state": {
|
|
"type": "string"
|
|
},
|
|
"zipCode": {
|
|
"type": "string",
|
|
"pattern": "^[0-9]{5}(-[0-9]{4})?$"
|
|
},
|
|
"country": {
|
|
"type": "string",
|
|
"minLength": 2,
|
|
"maxLength": 2
|
|
}
|
|
}
|
|
}
|