From e319ff632b69d03a9444a9d8206f9703752d0ca8 Mon Sep 17 00:00:00 2001 From: Dani Catalan Date: Fri, 31 Jan 2020 15:11:49 +0100 Subject: [PATCH] Update Pagination example with naming conventions --- rest-api-guidelines/execution/pagination.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest-api-guidelines/execution/pagination.md b/rest-api-guidelines/execution/pagination.md index 693d8a1..e149bfc 100644 --- a/rest-api-guidelines/execution/pagination.md +++ b/rest-api-guidelines/execution/pagination.md @@ -15,7 +15,7 @@ The Collection of Orders using the collection navigation link and `offset` and ` "first": { "href": "/orders?limit=10" }, "last": { "href": "/orders?offset=900&limit=10" } }, - "total_count": 910, + "totalCount": 910, "_embedded": { "order": [ { ... },