From b4da31831aa601ca6392d61c20dac7322846b256 Mon Sep 17 00:00:00 2001 From: Phil Sturgeon <67381+philsturgeon@users.noreply.github.com> Date: Fri, 2 Feb 2024 14:47:40 +0000 Subject: [PATCH] stop overusing the same uuid everywhere --- components/schemas/Booking.yaml | 4 ++-- components/schemas/Trip.yaml | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/components/schemas/Booking.yaml b/components/schemas/Booking.yaml index a11f244..0629028 100644 --- a/components/schemas/Booking.yaml +++ b/components/schemas/Booking.yaml @@ -6,13 +6,13 @@ properties: description: Unique identifier for the booking readOnly: true examples: - - efdbb9d1-02c2-4bc3-afb7-6788d8782b1e + - 3f3e3e1-c824-4d63-b37a-d8d698862f1d trip_id: type: string format: uuid description: Identifier of the booked trip examples: - - efdbb9d1-02c2-4bc3-afb7-6788d8782b1e + - 4f4e4e1-c824-4d63-b37a-d8d698862f1d passenger_name: type: string description: Name of the passenger diff --git a/components/schemas/Trip.yaml b/components/schemas/Trip.yaml index e45da22..87cc30e 100644 --- a/components/schemas/Trip.yaml +++ b/components/schemas/Trip.yaml @@ -5,8 +5,7 @@ properties: format: uuid description: Unique identifier for the trip examples: - - efdbb9d1-02c2-4bc3-afb7-6788d8782b1e - - b2e783e1-c824-4d63-b37a-d8d698862f1d + - 4f4e4e1-c824-4d63-b37a-d8d698862f1d origin: type: string description: The starting station of the trip