From fd5f4616334f697f8edbb82d9309a4c43be4453d Mon Sep 17 00:00:00 2001 From: Darrel Miller Date: Tue, 26 Jul 2022 22:32:52 -0400 Subject: [PATCH] Tried to fix JSON formatting --- specs/permissions.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/specs/permissions.md b/specs/permissions.md index 4eb828786..7243479ab 100644 --- a/specs/permissions.md +++ b/specs/permissions.md @@ -83,22 +83,22 @@ A pathSet object identifies a set of paths that are accessible via the identifie > Note: The design chosen was intentional to encourage permission creators to ensure support for methods and schemes is as consistent as possible. This produces a better developer experience for API consumers. ```json -      "pathSets": [ -        { -          "schemes": ["DelegatedWork"], -          "methods": ["GET"], -          "paths": { -            "/print/settings": {} -          } -        }, -        { -          "schemes": ["Application"], -          "methods": ["GET,POST"], -          "paths": { -            "/print/settings": {} -          } -        } -      ] + "pathSets": [ +   { +     "schemes": ["DelegatedWork"], +     "methods": ["GET"], +     "paths": { + "/print/settings": {} +     } +   }, +   { +     "schemes": ["Application"], +     "methods": ["GET,POST"], +     "paths": { + "/print/settings": {} +     } +   } + ] ``` ### schemes