summaryrefslogtreecommitdiffstats
path: root/samples/cps-bookstore.yang
blob: 0bfbfb7901e2eefe43550a0435970bfa115949e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
module stores {
    yang-version 1.1;
    namespace "org:onap:ccsdk:sample";

    prefix book-store;

    revision "2020-09-15" {
        description
          "Sample Model";
    }
    container shops {

        container bookstore {

            leaf bookstore-name {
                type string;
            }

            leaf name {
                type string;
            }

            list categories {

                key "code";

                leaf code {
                    type uint16;
                }

                leaf name {
                    type string;
                }

                leaf numberOfBooks {
                    type uint16;
                }

                container books {

                    list book {
                        key title;

                        leaf title {
                            type string;
                        }
                        leaf price {
                            type uint16;
                        }
                        leaf-list label {
                            type string;
                        }
                        leaf-list edition {
                            type string;
                        }
                    }
                }
            }
        }
    }
}