blob: 818d04e326fc5fb0179277dc2433cd0c35172cc5 [file] [log] [blame]
module YtbSimpleChoiceCase {
yang-version 1;
namespace "yms:test:ytb:simple:choice:case";
prefix "sch";
revision "2016-08-26";
container YtbFood {
choice YtbSnack {
case ytb-sports-arena {
leaf pretzel {
type string;
}
leaf beer {
type string;
}
}
case ytb-late-night {
leaf chocolate {
type string;
}
}
}
}
}