forked from jsightapi/online-editor-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon-syntax-test.jst
78 lines (68 loc) · 1.41 KB
/
common-syntax-test.jst
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
JSIGHT 0.3
GET /test-directive/parameters-escaping
Query "check quotation mark escaping \" and backslash escaping \\ "
null
GET /test-directive/explicit-boundaries
Description
(
Start of description.
200 - directive name in the description.
And closing bracket in the description: )
End of description.
)
200
(
Headers
(
{
"x-header": "header" // Headers with explicit boundaries.
}
)
Body
(
{
"id": 1 // Body with explicit boundaries.
}
)
)
URL /json-rpc
Protocol json-rpc-2.0
Method method1
Method method2
(
Params
(
[1]
)
Result
(
2
)
)
GET /test-comments # single-line comment
# single-line comment
200 // Annotation # single-line comment
###
multy-line comment
###
Headers # single-line comment
{
"My-header": "header value" # single-line comment
}
###
multy-line comment
###
Body
{
"field1": 1, // {min: 1} # single-line comment
###
multy-line comment
###
"field2": 2, // {min: 1} - Annotation # TODO: Must it be comment??
# TODO: can I insert comments inside the enum rule?
"field3": "1" /* {enum: [
"1",
"2",
"3"
]} */
}