From 04401bf8918a7289ba7811d68d9eeb7caec20c42 Mon Sep 17 00:00:00 2001 From: Muhammad Nawzad Date: Thu, 26 Sep 2024 16:22:17 +0300 Subject: [PATCH] Adds optionality record fields to the readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index fccdd2e..f19745b 100644 --- a/README.md +++ b/README.md @@ -337,6 +337,8 @@ Some examples' attributes can be overwritten via RSpec metadata options. Example description: 'list all posts ordered by pub_date', tags: %w[v1 posts], required_request_params: %w[limit], + optional_request_params: %w[data optional_address], # request body parameters that will NOT be set as required + optional_headers: %w[Accept-Languages rowsPerPage], # request header params that can be optional security: [{"MyToken" => []}], } do # ...