Skip to content

Commit 6ca10d0

Browse files
authored
Create query_issue.yml
1 parent 867e8d6 commit 6ca10d0

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: Query Issue Report
2+
description: Report regarding query issues.
3+
title: "[QUERY]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Please use this form to report any issues with the JSONPath query results.
10+
- type: textarea
11+
id: description
12+
attributes:
13+
label: Description
14+
description: Provide a clear and concise description of the issue.
15+
placeholder: Describe the issue here...
16+
validations:
17+
required: false
18+
- type: input
19+
id: query
20+
attributes:
21+
label: JSONPath Query
22+
placeholder: ex. $.phoneNumbers[:1].type
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: json
27+
attributes:
28+
label: JSON
29+
placeholder: {}
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: expected
34+
attributes:
35+
label: Expected Result
36+
placeholder: []
37+
validations:
38+
required: true
39+
- type: textarea
40+
id: actual
41+
attributes:
42+
label: Actual Result
43+
placeholder: []
44+
validations:
45+
required: true
46+
- type: dropdown
47+
id: engine
48+
attributes:
49+
label: Version
50+
description: Which JSONPath engine are you using?
51+
options:
52+
- RFC 9535 (Default)
53+
- JSONPath Plus
54+
default: 0
55+
validations:
56+
required: true

0 commit comments

Comments
 (0)