We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26c8aa5 commit 5d1a1aeCopy full SHA for 5d1a1ae
1 file changed
src/jsoniq/sequence.py
@@ -10,12 +10,12 @@ class SequenceOfItems:
10
11
This is an example of how you can simply define a schema and wrap your query in a validate expression:
12
13
-declare type mytype as {
+declare type local:mytype as {
14
"product" : "string",
15
"store-number" : "int",
16
"quantity" : "decimal"
17
};
18
-validate type mytype* {
+validate type local:mytype* {
19
for $product in json-lines("http://rumbledb.org/samples/products-small.json", 10)
20
where $product.quantity ge 995
21
return $product
0 commit comments