Licensed Usage Data Type

License consumption information and a breakup of consumption per feature

Properties
Name Type Description
id string The license identifier
name string The license name
totalServerLicenses number Total server licenses
availableServerLicenses number Available server licenses
usedServerLicenses number Used server licenses
usedSimLicenses number Used SIM licenses
totalLicensesInUse number Total used licenses (Server and SIM)
trial boolean true if this is a trial license, false otherwise
trialDaysRemaining number Value indicating number of trial days remaining for the trial license. Available only if trial is true
licenseInfo array of License Info List of license information objects
featureUsage array of Feature Usage List of feature usage objects

Example

{
  "id" : "gsc.license.blackberry.com",
  "name" : "BlackBerry Enterprise Mobility Suite - Content Edition",
  "totalServerLicenses" : 500,
  "availableServerLicenses" : 450,
  "usedServerLicenses" : 50,
  "usedSimLicenses" : 25,
  "totalLicensesInUse" : 75,
  "trial" : true,
  "trialDaysRemaining" : 15,
  "licenseInfo" : [ {
    "type" : "SUBSCRIPTION",
    "expirationDate" : "2017-01-01T11:04:30.45Z",
    "aboutToExpire" : false,
    "quantity" : 10
  }, {
    "type" : "TRIAL",
    "expirationDate" : "2017-01-14T16:40:03.54Z",
    "aboutToExpire" : true,
    "quantity" : 12345
  } ],
  "featureUsage" : [ {
    "id" : "MDM_CONTROLS",
    "consumed" : 10
  }, {
    "id" : "...",
    "consumed" : 12345
  } ]
}