From f991df206c6665aa5f10b42cd885863cb8a7eb5e Mon Sep 17 00:00:00 2001 From: Ashley Svetlik Date: Tue, 2 Jul 2019 15:24:56 -0500 Subject: [PATCH] Made Schema check into note --- docs/getting-started.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 6b84f1ac1..7199acd39 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -46,7 +46,8 @@ Although Pilosa doesn't keep the data in a tabular format, we still use the term Pilosa officially supports three client libraries, for Go, Java and Python. You can also use any HTTP client, such as curl, for quick testing, but official client libraries are the preferred method in production code. -If at any time you want to verify the data structure, you can request the schema as follows: +
+

If at any time you want to verify the data structure, you can request the schema as follows: ``` request curl localhost:10101/schema @@ -85,7 +86,9 @@ curl localhost:10101/schema ] } ``` -Note: This is the response you should receive once completing this project. It has also been formatted using `jq`. + +Note: This is the response you should receive once completing this project. It has also been formatted using `jq`. <\p> +

#### Using Curl