Atlassian · Schema

LicenseMetric

A metric that provides insight into the active licence details

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
key string The key of a specific license metric.
value string The calculated value of a licence metric linked to the key. An example licence metric is the approximate number of user accounts.
View JSON Schema on GitHub

JSON Schema

atlassian-licensemetric-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LicenseMetric",
  "title": "LicenseMetric",
  "additionalProperties": false,
  "description": "A metric that provides insight into the active licence details",
  "properties": {
    "key": {
      "description": "The key of a specific license metric.",
      "type": "string"
    },
    "value": {
      "description": "The calculated value of a licence metric linked to the key. An example licence metric is the approximate number of user accounts.",
      "type": "string"
    }
  },
  "type": "object"
}