summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/cfg/application/validation/search_alltypes/schemas/simple.sd
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/test/cfg/application/validation/search_alltypes/schemas/simple.sd')
-rw-r--r--config-model/src/test/cfg/application/validation/search_alltypes/schemas/simple.sd18
1 files changed, 18 insertions, 0 deletions
diff --git a/config-model/src/test/cfg/application/validation/search_alltypes/schemas/simple.sd b/config-model/src/test/cfg/application/validation/search_alltypes/schemas/simple.sd
new file mode 100644
index 00000000000..242a7493df3
--- /dev/null
+++ b/config-model/src/test/cfg/application/validation/search_alltypes/schemas/simple.sd
@@ -0,0 +1,18 @@
+# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+search simple {
+ document simple {
+ field my_pos type position { indexing: summary }
+ field my_int type int { indexing: summary }
+ field my_float type float { indexing: summary }
+ field my_str type string { indexing: summary }
+ field my_raw type raw { indexing: summary }
+ field my_long type long { indexing: summary }
+ field my_double type double { indexing: summary }
+ field my_uri type uri { indexing: summary }
+ field my_byte type byte { indexing: summary }
+ field my_bool type bool { indexing: summary }
+ field my_predicate type predicate { indexing: summary }
+ field my_tensor type tensor(x{}) { indexing: summary }
+ field my_reference type reference<parent> { indexing: summary | attribute }
+ }
+}