Skip to content

Commit

Permalink
Add capital projects in community district endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarchena committed May 28, 2024
1 parent 08e2960 commit 97c0645
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion openapi/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,36 @@ paths:
'404':
$ref: "#/components/responses/NotFound"
'500':
$ref: "#/components/responses/InternalServerError"
$ref: "#/components/responses/InternalServerError"
/boroughs/{boroughId}/community-districts/{communityDistrictId}/capital-projects:
get:
summary: Find paginated capital projects within a specified community district
operationId: findCapitalProjectsByBoroughIdCommunityDistrictId
tags:
- Capital Projects
parameters:
- $ref: "#/components/parameters/boroughIdParam"
- $ref: "#/components/parameters/communityDistrictIdParam"
responses:
'200':
description: An array of capital projects for the community district
content:
application/json:
schema:
type: object
properties:
capitalProjectPage:
type: array
items:
$ref: "#/components/schemas/CapitalProjectPage"
required:
- capitalProjectPage
'400':
$ref: "#/components/responses/BadRequest"
'404':
$ref: "#/components/responses/NotFound"
'500':
$ref: "#/components/responses/InternalServerError"
/land-uses:
get:
summary: List land uses
Expand Down

0 comments on commit 97c0645

Please sign in to comment.