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

JNC.examples.yang.mini.yang Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
module mini {
  namespace "http://example.com/ns/mini/1.0";
  prefix mini;
  typedef my-type {
    type string;
  }
  container c;
  container no-key {
    leaf-list ll {
      type my-type;
    }
  }
  list l {
    key k;
    leaf k {
      type string;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy