{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StateGet",
"title": "StateGet",
"type": "object",
"required": [
"code",
"name"
],
"properties": {
"code": {
"type": "string",
"example": "CA",
"description": "Two-letter state or province abbreviation (e.g., CA for California)."
},
"name": {
"type": "string",
"example": "California",
"description": "Full name of the state or province."
}
}
}