Files
varsity/test/shared/schemas/address-schema.json
2025-10-01 20:01:42 +00:00

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
}
}
}