From d5ab3e91e3ad47786693a5186bd9c1fd638714d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?rich=CE=9Brd?= Date: Tue, 14 Nov 2023 08:34:42 -0400 Subject: [PATCH] fix: camelCase vs snake_case (#3) --- api-spec/schemas/apitypes.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/api-spec/schemas/apitypes.yaml b/api-spec/schemas/apitypes.yaml index d5c0657..bfe917a 100644 --- a/api-spec/schemas/apitypes.yaml +++ b/api-spec/schemas/apitypes.yaml @@ -174,16 +174,16 @@ StoreResponse: HistoryCursor: type: object properties: - pubsub_topic: + pubsubTopic: type: string - sender_time: + senderTime: type: string - store_time: + storeTime: type: string digest: type: string required: - - pubsub_topic - - sender_time - - store_time + - pubsubTopic + - senderTime + - storeTime - digest