From 96ec516c85fa499a7ff7d40e24e48f0b94f67a03 Mon Sep 17 00:00:00 2001 From: Brusk Hamarash Date: Tue, 5 Apr 2022 15:31:37 +0300 Subject: [PATCH] Adds pagination start number --- .../09-Checklist For Microservices.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/Software Development/04-Software Application Specifications/09-Checklist For Microservices.md b/docs/Software Development/04-Software Application Specifications/09-Checklist For Microservices.md index e75496c..8d824f4 100644 --- a/docs/Software Development/04-Software Application Specifications/09-Checklist For Microservices.md +++ b/docs/Software Development/04-Software Application Specifications/09-Checklist For Microservices.md @@ -20,6 +20,7 @@ Use the following checklist when dealing with a microservices architecture inter | SMR-14 | REST: Use Idempotency Key | For POST, DELETE and PATCH requests, require header Idempotency-Key to be present. Process requests with the same idempotency key only once. | | SMR-15 | Use Open API for REST Documentation | Use Open API >= 3 to document REST endpoint | | SMR-16 | Use AsyncAPI For Events Documentation | Use AsyncAPI >= 2 to document Events. | +| SMR-17 | Pagination must start from 1, not 0 | Pagination must start from page 1. This means that at Page 1, the offset is 0. |