MapDataContainerDTO

Container that holds the result entries as maps with :.

Sub Type Property: "_type" : "MAP"

Fields

Type
Name
Description
Optional
Default Value
rows
The list of the map representations.
false
 
String  
entity
The entity of the data container.
false
 
columnInfo
The meta data of the result fields (may be empty).
true
null
rows
The result entries. The concrete type of the entries is defined by the sub type.
true
null

Example

{
	"_type" : "MAP",
	"entity" : "Activity",
	"columnInfo" : [
		{
			"_type" : "TEXT_FIELD",
			"id" : "Subject.Activity",
			"displayName" : "Subject",
			"delegated" : false
		},
		{
			"_type" : "LOOKUP_FIELD",
			"id" : "ActTypeKey.Activity",
			"displayName" : "Activity type",
			"delegated" : false
		}
	],
	"rows" : [
		{
			"Subject.Activity" : "John Doe called",
			"ActTypeKey.Activity" : "TELEIN"
		},
		{
			"Subject.Activity" : "Meeting for lunch",
			"ActTypeKey.Activity" : "MAILAUS"
		}
	]
}