Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some objects didn't have a clear type described #27

Merged
merged 1 commit into from
Apr 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,7 @@ components:
example: 25
CreateSpecialEventRequest:
description: Request payload for creating new special events at the museum.
type: object
properties:
name:
$ref: "#/components/schemas/EventName"
Expand All @@ -375,6 +376,7 @@ components:
- price
UpdateSpecialEventRequest:
description: Request payload for updating an existing special event. Only included fields are updated in the event.
type: object
properties:
name:
$ref: "#/components/schemas/EventName"
Expand All @@ -393,6 +395,7 @@ components:
$ref: "#/components/schemas/SpecialEventResponse"
SpecialEventResponse:
description: Information about a special event.
type: object
properties:
eventId:
$ref: "#/components/schemas/EventId"
Expand Down