Skip to content

Commit

Permalink
feat: update api.swagger.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] committed Oct 17, 2024
1 parent 4b20930 commit 3ebb27e
Showing 1 changed file with 49 additions and 49 deletions.
98 changes: 49 additions & 49 deletions doc-assets/api.swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,6 @@ servers:
security:
- smithy.api.httpBearerAuth: []
paths:
/v1/public/helloworld/system/{query}:
get:
operationId: helloworldViaSystem
parameters:
- explode: false
in: path
name: query
required: true
schema:
type: string
style: simple
responses:
"200":
content:
application/json:
schema:
$ref: '#/components/schemas/helloworldViaSystemResponseContent'
description: helloworldViaSystem 200 response
tags:
- ActorSystemAPIController
/v1/public/helloworld/sharding/{query}:
get:
operationId: helloworldViaSharding
Expand Down Expand Up @@ -201,30 +181,26 @@ paths:
description: getCompanyById 200 response
tags:
- CompanyAPIController
/:
get:
operationId: ping
responses:
"200":
description: ping 200 response
tags:
- HealthAPIController
/liveness:
get:
operationId: liveness
responses:
"200":
description: liveness 200 response
tags:
- HealthAPIController
/readiness:
/v1/public/helloworld/system/{query}:
get:
operationId: readiness
operationId: helloworldViaSystem
parameters:
- explode: false
in: path
name: query
required: true
schema:
type: string
style: simple
responses:
"200":
description: readiness 200 response
content:
application/json:
schema:
$ref: '#/components/schemas/helloworldViaSystemResponseContent'
description: helloworldViaSystem 200 response
tags:
- HealthAPIController
- ActorSystemAPIController
/v1/companies/{companyId}/locations:
get:
operationId: getAllLocationsByCompany
Expand Down Expand Up @@ -407,17 +383,32 @@ paths:
description: getLocationById 200 response
tags:
- LocationAPIController
/:
get:
operationId: ping
responses:
"200":
description: ping 200 response
tags:
- HealthAPIController
/liveness:
get:
operationId: liveness
responses:
"200":
description: liveness 200 response
tags:
- HealthAPIController
/readiness:
get:
operationId: readiness
responses:
"200":
description: readiness 200 response
tags:
- HealthAPIController
components:
schemas:
helloworldViaSystemResponseContent:
example:
answer: answer
properties:
answer:
type: string
required:
- answer
type: object
helloworldViaShardingResponseContent:
example:
answer: answer
Expand Down Expand Up @@ -605,6 +596,15 @@ components:
- id
- updated
type: object
helloworldViaSystemResponseContent:
example:
answer: answer
properties:
answer:
type: string
required:
- answer
type: object
LocationRequestBody:
example:
zip: zip
Expand Down

0 comments on commit 3ebb27e

Please sign in to comment.