Skip to content

Commit

Permalink
fix(bookings): rename BookingSeat to BookingSeatCell to avoid overlap…
Browse files Browse the repository at this point in the history
…ping type name
  • Loading branch information
lpezzolla committed Oct 24, 2023
1 parent 6134f08 commit 2141921
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3303,6 +3303,7 @@ components:
type: array
items:
$ref: '#/components/schemas/BookingSeatsRow'
required: [ totalCount, availableCount, rows ]
BookingSeatsRow:
type: object
properties:
Expand All @@ -3315,8 +3316,9 @@ components:
seats:
type: array
items:
$ref: '#/components/schemas/BookingSeat'
BookingSeat:
$ref: '#/components/schemas/BookingSeatCell'
required: [ label, seats ]
BookingSeatCell:
type: object
properties:
id:
Expand All @@ -3331,6 +3333,7 @@ components:
label:
type: string
example: B12
required: [ id, status, label ]

BookingLocationCheck:
type: object
Expand Down

0 comments on commit 2141921

Please sign in to comment.