MapType Data Type

A type to represent key, value pairs.

Java class for map_type complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="map_type">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="key" type="{uri:lens:job:0.1}non_empty_string"/>
         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

Properties
name data type description
key string
value string

Example

{
  "key" : "...",
  "value" : "..."
}