AttributeContainerDTO

DTO that represents an AttributeContainer.

Fields

Type
Name
Description
Optional
Default Value
String  
pk
The primary key of the AttributeContainer.
false
 
String  
entity
The entity of the AttributeContainer.
false
 
String  
displayName
The displayName of the AttributeContainer.
false
 
String  
identifyingDisplayName
The displayName generated from the entity's id fields.
false
 
updateDate
The last modification date of the AttributeContainer.
false
 
Boolean  
writable
Flag to indicate if the AttributeContainer is writable.
false
 
Boolean  
favorite
Flag to indicate if the AttributeContainer is marked as a favorite.
false
 
Boolean  
observed
Flag to indicate if the AttributeContainer is observed.
false
 
String  
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
 
String  
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"
			}
		]
	}
}