Entity definition Data Type

An Entity Definition is the description of the Entity. It describes the properties, types, sizes, constraints, UI representations, etc.

Properties
Name Type Description
name string The name of the Entity definition.
entityDefId string The id of the Entity definition.
settings array of Property data type The list of property definitions.

Example

{
  "name" : "BlackBerry Dynamics",
  "entityDefId" : "com.blackberry.mdm.common.entity.profile.DynamicsSecurityProfile",
  "settings" : [ {
    "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" : "..."
    } ]
  }, {
    "type" : "...",
    "name" : "...",
    "displayName" : "...",
    "osFamilies" : [ "...", "Android" ],
    "description" : "...",
    "conditions" : [ {
      "setting" : "...",
      "operator" : "...",
      "value" : "...",
      "outcome" : "...",
      "fixedValue" : "..."
    }, {
      "setting" : "...",
      "operator" : "...",
      "value" : "...",
      "outcome" : "...",
      "fixedValue" : "..."
    } ]
  } ]
}