From cca5907174f4ec275a1077c491346bd95efa47f2 Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Thu, 9 Nov 2023 09:52:25 -0400 Subject: [PATCH] fix: camelCase vs snake_case --- 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