<prodinfo>
  
Product information is detailed information about a product, such as the product name, version number, brand name, associated components, and more.
Content model
<prodname>, <vrmlist>?, (<brand> | <component> | <featnum> | <platform> | <prognum> | <series>)*
Contained by
- <prodname>
- Optional <vrmlist>
- Zero or more of the following
Contained by
Inheritance
- topic/prodinfo
The <prodinfo> element is a base element type. It is defined in the topic module.
Attributes
The following attributes are available on this element: universal attributes.
The following attributes are available on this element: universal attributes.
Examples
This section is non-normative.
This section contains examples of how the
          <prodinfo> element can be used.
The following code sample shows the
            <prodinfo> element can contain several
          elements that specify metadata about an item of cookware:
<prolog>
  <metadata>
    <prodinfo>
      <prodname>12'' Stainless Steel Skillet</prodname>
      <brand>Chef's Gourmet Kitchenware</brand>
      <prognum>4545455-AD</prognum>
      <platform>Electric</platform>
      <platform>Gas</platform>
      <platform>Induction</platform>
      <series>Stainless Cookware</series>
    </prodinfo>
  </metadata>
</prolog>The following code sample shows that a topic is about the product Transcription Assistant. The product is at version number 1.3.1, operates on the Linux platform, and has the program number SN-12345T.
<prolog>
  <metadata>
    <prodinfo>
      <prodname>Transcription Assistant</prodname>
      <vrmlist>
        <vrm version="1" release="3" modification="1"/>
      </vrmlist>
      <featnum>SN-12345T</featnum>
      <component>Voice Activation</component>
      <platform>Linux</platform>
      <platform>Windows</platform>
    </prodinfo>
  </metadata>
</prolog>