forked from cwacek/python-jsonschema-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquery.json
More file actions
31 lines (29 loc) · 833 Bytes
/
Copy pathquery.json
File metadata and controls
31 lines (29 loc) · 833 Bytes
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
{
"$schema": "http://json-schema.org/schema",
"type": "object",
"definitions": {
"_query_ctype": {
"properties": {
"@ctype": {
"enum": [
"query"
]
}
}
},
"query_request": {
"allOf": [
{"$ref": "file:schema.json#/definitions/_base"},
{"$ref": "file:schema.json#/definitions/_request"},
{"$ref": "#/definitions/_query_ctype"}
]
},
"query_reply": {
"allOf": [
{"$ref": "file:schema.json#/definitions/_base"},
{"$ref": "file:schema.json#/definitions/_reply"},
{"$ref": "#/definitions/_query_ctype"}
]
}
}
}