Migrate query tests to integration-test module #5
[cps.git] / integration-test / src / test / resources / data / bookstore / bookstore.yang
index c3bfc50..62ebc73 100644 (file)
@@ -21,6 +21,25 @@ module stores {
             type string;
         }
 
+        container premises {
+            list addresses {
+                key "house-number street";
+
+                leaf house-number {
+                    type uint16;
+                }
+                leaf street {
+                    type string;
+                }
+                leaf town {
+                    type string;
+                }
+                leaf county {
+                    type string;
+                }
+            }
+        }
+
         list categories {
 
             key "code";