BUG-4688: Rework SchemaContext module lookups
[yangtools.git] / yang / yang-model-export / src / test / resources / bugs / bug2444 / yin / action.yin
1 <module name="action" xmlns="urn:ietf:params:xml:ns:yang:yin:1"
2     xmlns:ac="action">
3     <namespace uri="action" />
4     <prefix value="ac" />
5     <yang-version value="1.1" />
6     <container name="root">
7         <action name="a">
8             <if-feature name="my-feature-1 or my-feature-2" />
9             <status value="deprecated" />
10             <description>
11                 <text>decs</text>
12             </description>
13             <reference>
14                 <text>ref</text>
15             </reference>
16             <typedef name="my-type">
17                 <type name="string" />
18             </typedef>
19             <grouping name="my-grp">
20                 <container name="con-in-grp" />
21             </grouping>
22             <input>
23                 <container name="i" />
24             </input>
25             <output>
26                 <container name="o" />
27             </output>
28             <ac:my-ext ac:my-arg="arg-val" />
29         </action>
30     </container>
31     <extension name="my-ext">
32         <argument name="my-arg" />
33     </extension>
34 </module>