From 2a403a601e686cbc181e75830d6d2d8854c519ab Mon Sep 17 00:00:00 2001 From: Alexandre Girard Date: Wed, 27 Mar 2024 09:16:29 -0700 Subject: [PATCH] docs: Explain why recordCount is a number instead of an integer (#71) --- .../src/main/resources/airbyte_protocol/airbyte_protocol.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol-models/src/main/resources/airbyte_protocol/airbyte_protocol.yaml b/protocol-models/src/main/resources/airbyte_protocol/airbyte_protocol.yaml index 563632a..2f33a4f 100644 --- a/protocol-models/src/main/resources/airbyte_protocol/airbyte_protocol.yaml +++ b/protocol-models/src/main/resources/airbyte_protocol/airbyte_protocol.yaml @@ -196,7 +196,7 @@ definitions: additionalProperties: true properties: recordCount: - description: "the number of records which were emitted for this state message, for this stream or global" + description: "the number of records which were emitted for this state message, for this stream or global. While the value should always be a round number, it is defined as a double to account for integer overflows, and the value should always have a decimal point for proper serialization." type: number AirbyteLogMessage: type: object