summaryrefslogtreecommitdiffstats
path: root/infra/it/it-test/src/test/resources/models/test-validate.yang
diff options
context:
space:
mode:
Diffstat (limited to 'infra/it/it-test/src/test/resources/models/test-validate.yang')
-rw-r--r--infra/it/it-test/src/test/resources/models/test-validate.yang27
1 files changed, 27 insertions, 0 deletions
diff --git a/infra/it/it-test/src/test/resources/models/test-validate.yang b/infra/it/it-test/src/test/resources/models/test-validate.yang
new file mode 100644
index 000000000..144045661
--- /dev/null
+++ b/infra/it/it-test/src/test/resources/models/test-validate.yang
@@ -0,0 +1,27 @@
+module test-validate {
+ yang-version 1;
+ namespace "urn:honeycomb:params:xml:ns:yang:test:validate";
+ prefix "td";
+
+ revision "2018-06-08" {
+ description "Initial revision";
+ }
+
+ container top-container {
+ leaf name {
+ type string;
+ }
+ list list-in-container {
+ key "name";
+
+ leaf name {
+ type string;
+ }
+
+ leaf description {
+ type string;
+ mandatory true;
+ }
+ }
+ }
+}