blob: 71ada48ffa7abad31916be75bbc6386bdc2e6df3 [file] [log] [blame]
module binarytest {
yang-version 1;
namespace "ydt.binarytest";
prefix "binarytest";
organization "ON-LAB";
description "This module defines for binarytest classifier.";
revision "2016-05-24" {
description "Initial revision.";
}
list binaryList {
config false;
leaf binary {
type binary;
}
leaf binaryWithRange {
type binary {
length "2 .. 10";
}
}
leaf binaryWithMultiRange {
type binary {
length "min..10 | 20 | 30..max";
}
}
}
}