From bfa215a8c2902ddb7f6080f9eb52b3fb28c915c0 Mon Sep 17 00:00:00 2001 From: Wiktor Kwapisiewicz Date: Mon, 18 Dec 2017 12:28:37 +0100 Subject: [PATCH] Fix README example API response API uses JSON booleans and numbers instead of strings. Adjust example JSON output to reflect that. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1b7aaee..89ee02f 100644 --- a/README.md +++ b/README.md @@ -89,17 +89,17 @@ GET /api/v1/key?email=user@example.com { "name": "Jon Smith", "email": "jon@smith.com", - "verified": "true" + "verified": true }, { "name": "Jon Smith", "email": "jon@organization.com", - "verified": "false" + "verified": false } ], "created": "Sat Oct 17 2015 12:17:03 GMT+0200 (CEST)", "algorithm": "rsa_encrypt_sign", - "keySize": "4096", + "keySize": 4096, "publicKeyArmored": "-----BEGIN PGP PUBLIC KEY BLOCK----- ... -----END PGP PUBLIC KEY BLOCK-----" } ```