AttributeContainerDTO
DTO that represents an AttributeContainer.
Fields
Type
Name
Description
Optional
Default Value
pk
The primary key of the AttributeContainer.
false
entity
The entity of the AttributeContainer.
false
displayName
The displayName of the AttributeContainer.
false
identifyingDisplayName
The displayName generated from the entity's id fields.
false
updateDate
The last modification date of the AttributeContainer.
false
writable
Flag to indicate if the AttributeContainer is writable.
false
favorite
Flag to indicate if the AttributeContainer is marked as a favorite.
false
observed
Flag to indicate if the AttributeContainer is observed.
false
rightPk
The primary key of the AttributeContainers right template.
false
status
DTO that may contain status messages for the AttributeContainer.
false
values
The values of the AttributeContainer.
false
luceneDescription
The lucene description of the AttributeContainer.
false
Example
{
"pk" : "123abc",
"entity" : "Activity",
"updateDate" : "2025-12-11T08:16:20+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" : "TELEIN, John Doe called",
"writable" : true,
"rightPk" : "xyz789",
"favorite" : true,
"observed" : false,
"status" : {
"messages" : [
{
"_type" : "Default",
"message" : "This is just an example.",
"severity" : "INFO"
}
]
}
}