Skip to content

Commit

Permalink
241 city council district endpoint documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
horatiorosa committed May 24, 2024
1 parent 08e2960 commit 45f6bd5
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion openapi/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,31 @@ paths:
'404':
$ref: "#/components/responses/NotFound"
'500':
$ref: "#/components/responses/InternalServerError"
$ref: "#/components/responses/InternalServerError"
/city-council-districts:
get:
summary: Find city council districts
operationId: findCityCouncilDistricts
tags:
- City Council Districts
responses:
'200':
description: an object of city council districts
content:
application/json:
schema:
type: object
properties:
cityCouncilDistricts:
type: array
items:
$ref: '#/components/schemas/CityCouncilDistrict'
required:
- cityCouncilDistricts
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/land-uses:
get:
summary: List land uses
Expand Down

0 comments on commit 45f6bd5

Please sign in to comment.