JsonDataContainerDTO
Container that holds the result entries as AttributeContainerDTO, which leads to a JSON representation.
Sub Type Property: "_type" : "JSON"
Fields
Type
Name
Description
Optional
Default Value
rows
The list of AttributeContainerDTOs.
false
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" : "JSON",
"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" : [
{
"pk" : "oanikujaksjlo8921ghbAc",
"entity" : "Activity",
"updateDate" : "2025-12-11T08:19:13+00:00",
"values" : {
"Subject.Activity" : {
"_type" : "String",
"value" : "John Doe called",
"writable" : true,
"readable" : true,
"status" : null
},
"ActTypeKey.Activity" : {
"_type" : "Lookup",
"value" : {
"pk" : "S_ACTTYPE_TE",
"key" : "TELEIN",
"description" : "Incoming call",
"symbol" : {
"type" : "NONE"
}
},
"writable" : true,
"readable" : true,
"status" : null
}
},
"displayName" : "John Doe called",
"identifyingDisplayName" : "John Doe called",
"writable" : true,
"favorite" : false,
"observed" : false,
"status" : { }
},
{
"pk" : "a817gbkas9hblkusad82Ac",
"entity" : "Activity",
"updateDate" : "2025-12-11T08:19:13+00:00",
"values" : {
"Subject.Activity" : {
"_type" : "String",
"value" : "Meeting for lunch",
"writable" : true,
"readable" : true,
"status" : null
},
"ActTypeKey.Activity" : {
"_type" : "Lookup",
"value" : {
"pk" : "S_ACTTYPE_MA",
"key" : "MAILAUS",
"description" : "Outgoing email",
"symbol" : {
"type" : "IMAGE_ID",
"data" : {
"IMAGE_ID" : "USER_IMAGE:OutMail:16:16"
}
}
},
"writable" : true,
"readable" : true,
"status" : null
}
},
"displayName" : "Meeting for lunch",
"identifyingDisplayName" : "Meeting for lunch",
"writable" : true,
"favorite" : false,
"observed" : false,
"status" : { }
}
]
}