NVs Element
<nvs>
The <nvs> element is a container element for the device datapoints defined for each <attribute> element, and is also the container element for the device datapoint definitions contained within an <nvs> element defined within the <device> container element.
Example
<device pid="9FFFFF05006F0002" name="LED" type="color_lamp_controller" brand="Echelon"> Â Â <attributes> Â Â Â Â <attribute ... > Â Â Â Â Â Â <nvs> Â Â Â Â Â Â Â Â <nv ... /> Â Â Â Â Â Â </nvs> Â Â Â Â </attribute> Â Â </attributes> Â Â <nvs> Â Â Â Â <nv ... > Â Â Â Â Â Â <byte ... > Â Â Â Â Â Â Â Â <attribute ... /> Â Â Â Â Â Â </byte> Â Â Â Â </nv> Â Â </nvs> </device>
XML Schema Definition
  <xs:element name="nvs">     <xs:complexType>       <xs:sequence>         <xs:element ref="nv" maxOccurs="4095" />       </xs:sequence>     </xs:complexType>   </xs:element>