REST API docs: Remove quotes around booleans in example responses

Booleans are not surrounded by quotes in JSON.

Signed-off-by: Edwin Kempin <ekempin@google.com>
Change-Id: I1ce2fe63b05c16e785b262bb8d1b511c3d9fd03c
diff --git a/resources/Documentation/rest-api.md b/resources/Documentation/rest-api.md
index df39f6f..2cfa2f7 100644
--- a/resources/Documentation/rest-api.md
+++ b/resources/Documentation/rest-api.md
@@ -79,7 +79,7 @@
   Content-Type: application/json; charset=UTF-8
 
   {
-    "disabled": "true"
+    "disabled": true
   }
 ```
 
@@ -96,7 +96,7 @@
   )]}'
   {
     "status": {
-      "disabled": "true"
+      "disabled": true
     }
   }
 ```
@@ -299,15 +299,15 @@
 
   )]}'
   {
-    "is_code_owner": "false",
-    "is_resolvable": "false",
-    "can_read_ref": "true",
+    "is_code_owner": false,
+    "is_resolvable": false,
+    "can_read_ref": true,
     "code_owner_config_file_paths": [
       "/OWNERS",
     ],
-    "is_fallback_code_owner": "false",
-    "is_default_code_owner": "false",
-    "is_global_code_owner": "false",
+    "is_fallback_code_owner": false,
+    "is_default_code_owner": false,
+    "is_global_code_owner": false,
     "debug_logs": [
       "checking code owner config file foo/bar:master:/OWNERS",
       "found email xyz@example.com as code owner in /OWNERS",