From fe9d9705f1989e96b45382f665333c614a48b222 Mon Sep 17 00:00:00 2001 From: Ben Bierens <39762930+benbierens@users.noreply.github.com> Date: Thu, 6 Jun 2024 11:44:58 +0200 Subject: [PATCH] Fix/spec intsizes (#829) * Sets int64 formats for byte-counting integers in openapi spec * uints instead of ints * uint64 not supported by every openAPI client --- openapi.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/openapi.yaml b/openapi.yaml index 6887de96..94450bf3 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -289,7 +289,7 @@ components: description: "Root hash of the content" originalBytes: type: integer - format: uint64 + format: int64 description: "Length of original content in bytes" blockSize: type: integer @@ -304,18 +304,18 @@ components: totalBlocks: description: "Number of blocks stored by the node" type: integer - format: uint64 + format: int64 quotaMaxBytes: type: integer - format: uint64 + format: int64 description: "Maximum storage space used by the node" quotaUsedBytes: type: integer - format: uint64 + format: int64 description: "Amount of storage space currently in use" quotaReservedBytes: type: integer - format: uint64 + format: int64 description: "Amount of storage space reserved" servers: