Bug 30719: ILL Batch Statuses
[koha.git] / api / v1 / swagger / definitions / city.yaml
1 ---
2 type: object
3 properties:
4   city_id:
5     type: integer
6     description: internally assigned city identifier
7     readOnly: true
8   name:
9     description: city name
10     type: string
11   state:
12     description: city state
13     type:
14       - string
15       - "null"
16   postal_code:
17     description: city postal code
18     type:
19       - string
20       - "null"
21   country:
22     description: city country
23     type:
24       - string
25       - "null"
26 additionalProperties: false
27 required:
28   - name
29   - state
30   - postal_code
31   - country