Base entity definition data type.
| Name | Type | Description |
|---|---|---|
| type | string | The JSON object type. |
| name | string | The name of the setting which correlates to the name of the setting in the entity instance JSON requests/responses. |
| displayName | string | The display name of the setting. For settings displayed in the UEM UI, this correlates to text displayed in the UEM UI. |
| osFamilies | array of string | For device related entities (for example BlackBerry Dynamics profiles) the osFamilies indicates OS Families the setting applies to. |
| description | string | The description of the setting. |
| |
|
|
| conditions | array of Condition attribute | The condition attribute indicates that the setting is conditional on other settings. |
Example
{
"type" : "...",
"name" : "description",
"displayName" : "Enable Face ID from cold start",
"osFamilies" : [ "Android", "..." ],
"description" : "",
"conditions" : [ {
"setting" : "allDisclaimerPolicyEnable",
"operator" : "=",
"value" : "false",
"outcome" : "irrelevant",
"fixedValue" : "true"
}, {
"setting" : "...",
"operator" : "...",
"value" : "...",
"outcome" : "...",
"fixedValue" : "..."
} ]
}