Bug 29032: Pre-load ILL backends to speed up response
[koha.git] / api / v1 / swagger / definitions / city.json
1 {
2   "type": "object",
3   "properties": {
4     "city_id": {
5       "$ref": "../x-primitives.json#/city_id"
6     },
7     "name": {
8       "description": "city name",
9       "type": "string"
10     },
11     "state": {
12       "description": "city state",
13       "type": ["string", "null"]
14     },
15     "postal_code": {
16       "description": "city postal code",
17       "type": ["string", "null"]
18     },
19     "country": {
20       "description": "city country",
21       "type": ["string", "null"]
22     }
23   },
24   "additionalProperties": false,
25   "required": ["name", "state", "postal_code", "country"]
26 }