session-parameters Schema
licenses Element
session-parameters Schema > session-parameters Element : licenses Element

Glossary Item Box

Description

List of licenses that should be acquired by the session.
Namespace (none)

Diagram

license Element Sequence licenses Element

Overview

licenses optional
List of licenses that should be acquired by the session.
Sequence
license 1..∞ xs:string
License name.

Remarks

In general, you do not need to provide this element when creating a session in your REST API applications.

Licenses are allocated for site sessions by ALM integrations, generally created by HP. The licenses element may be populated when you GET session parameters, but your application need take no action based on this information.

Source

<xs:element name="licenses" minOccurs="0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>
                        List of licenses that should be acquired by the session.
                        </xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element name="license" type="xs:string" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>
                                    License name. 
                                    </xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
</xs:element>

See Also