From 272e23b027b8739d0a658b81864848870689aa39 Mon Sep 17 00:00:00 2001 From: BigBlueHat Date: Wed, 5 Jun 2024 11:15:03 -0400 Subject: [PATCH] Use jsonc for JSON with comments in README. --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 88651b3..de1612f 100644 --- a/README.md +++ b/README.md @@ -185,31 +185,31 @@ on your issuer and verifier endpoints. You can specify the key types supported by your implementation in the issuer and verifier configs as shown in this example: - ```json + ```jsonc { "issuers": [{ - ... + // ... "supportedEcdsaKeyTypes": ["P-256", "P-384"] "tags": ["ecdsa-rdfc-2019"] }, { - ... + // ... "supportedEcdsaKeyTypes": ["P-256", "P-384"] "tags": ["ecdsa-jcs-2019"] }, { - ... + // ... "supportedEcdsaKeyTypes": ["P-256"] "tags": ["ecdsa-sd-2023"] }], "verifiers": [{ - ... + // ... "supportedEcdsaKeyTypes": ["P-256", "P-384"] "tags": ["ecdsa-rdfc-2019"] }, { - ... + // ... "supportedEcdsaKeyTypes": ["P-256", "P-384"] "tags": ["ecdsa-jcs-2019"] }, { - ... + // ... "supportedEcdsaKeyTypes": ["P-256"] "tags": ["ecdsa-sd-2023"] }]