Skip to content

Commit a1ac824

Browse files
committed
fix index.html bug, update docs in swagger
1 parent eff1deb commit a1ac824

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

jsonparse/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.11.2
1+
0.11.3

jsonparse/static/openapi.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ info:
77
contact:
88
name: Github
99
url: 'https://github.com/ctomkow/jsonparse'
10-
version: 0.11.0
10+
version: 0.11.3
1111
servers:
1212
- url: 'https://jsonparse.dev/v1'
1313
tags:
@@ -97,13 +97,13 @@ paths:
9797
tags:
9898
- jsonparse
9999
summary: Find all instances of keys
100-
description: Find all instances of keys
100+
description: Find all instances of keys. While the swagger interface only shows one query parameter 'key', you can specify as many query 'key' parameters as needed. e.g. /v1/keys?key=first&key=second&key=third&group=false
101101
parameters:
102102
- schema:
103103
type: string
104104
in: query
105105
name: key
106-
description: Any number of query parameter keys to search for
106+
description: Key to search for
107107
required: true
108108
- schema:
109109
type: string
@@ -173,13 +173,13 @@ paths:
173173
tags:
174174
- jsonparse
175175
summary: Find all instances of ordered key chain
176-
description: 'Find all instances of ordered key chain'
176+
description: Find all instances of ordered key chain. While the swagger interface only shows one query parameter 'key', the key chain can be arbitrarily long by specifying as many 'key' as needed. e.g. /v1/keychain?key=first&key=second&key=third
177177
parameters:
178178
- schema:
179179
type: string
180180
in: query
181181
name: key
182-
description: Any number of query parameter keys to search for
182+
description: First key in key chain
183183
required: true
184184
requestBody:
185185
description: JSON data to be searched

jsonparse/templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<meta http-equiv="refresh" content="0; url='https:/jsonparse.readthedocs.io/'" />
4+
<meta http-equiv="refresh" content="0; url='https://jsonparse.readthedocs.io/'" />
55
</head>
66
<body>
77
</body>

0 commit comments

Comments
 (0)