AppEntityMetaDataDTO

A DTO that represents the entity meta data for the apps.

Sub Type Property: "_type" : "APP"

Fields

Type
Name
Description
Optional
Default Value
Boolean  
creatable
Flag that indicates whether the entity is configured for creation.
false
 
Boolean  
editable
Flag that indicates whether the entity is configured for editing.
false
 
String  
id
The internal entity name.
false
 
String  
displayName
The display name.
false
 
String  
shortCut
The entity short cut.
false
 
String  
searchShortCut
The simple search short cut.
true
 
Boolean  
favoritable
Flag that indicates whether the entity is enabled for favorite handling.
false
 
Boolean  
observable
Flag that indicates whether the entity is enabled for observation feature.
false
 

Example

{
	"_type": "APP",
	"id": "Activity",
	"displayName": "Activities",
	"shortCut": "Ac",
	"searchShortCut": "ACT",
	"favoritable": true,
	"observable": true,
	"creatable": true,
	"editable": true
}