Bug 18120: Update field descriptions
[koha.git] / api / v1 / swagger / definitions / city.json
1 {
2   "type": "object",
3   "properties": {
4     "cityid": {
5       "$ref": "../x-primitives.json#/cityid"
6     },
7     "city_name": {
8       "description": "city name",
9       "type": "string"
10     },
11     "city_state": {
12       "description": "city state",
13       "type": ["string", "null"]
14     },
15     "city_zipcode": {
16       "description": "city zipcode",
17       "type": ["string", "null"]
18     },
19     "city_country": {
20       "description": "city country",
21       "type": ["string", "null"]
22     }
23   },
24   "additionalProperties": false,
25   "required": ["city_name", "city_state", "city_zipcode", "city_country"]
26 }