All Downloads are FREE. Search and download functionalities are using the official Maven repository.

[email protected] Maven / Gradle / Ivy

There is a newer version: 10.0.2
Show newest version
module car-people {
  yang-version 1;

  namespace "urn:opendaylight:params:xml:ns:yang:controller:config:sal-clustering-it:car-people";

  prefix car;

  import car { prefix "c"; revision-date 2014-08-18; }
  import people { prefix "people"; revision-date 2014-08-18; }

  organization "Netconf Central";

  contact
    "Harman Singh ";

  description
    "YANG model for car for test application";

  revision "2014-08-18" {
    description
      "Clustering sample app";
  }

  container car-people {
    description
     "Top-level container for all people car map";

    list car-person {
      key "car-id person-id";
      description "A mapping of cars and people.";
      leaf car-id {
        type c:car-id;
      }

      leaf person-id {
        type people:person-id;
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy