diff --git a/docs/getting-started.md b/docs/getting-started.md index 52803bac2..61a86890e 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -46,11 +46,12 @@ Although Pilosa doesn't keep the data in a tabular format, we still use the term
If at any time you want to verify the data structure, you can request the schema as follows:
+
+```request
curl localhost:10101/schema
-
-
+```
+```response
{
"indexes": [
{
@@ -83,8 +84,9 @@ curl localhost:10101/schema
}
]
}
-
- Note: This is the response you should receive once completing this project. It has also been formatted using [`jq`](https://stedolan.github.io/jq/). <\p> +``` +
Note: This is the response you should receive once completing this project. It has also been formatted using [jq](https://stedolan.github.io/jq/).