Atlassian · Schema

License

Details about a license for the Jira instance.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
applications array The applications under this license.
View JSON Schema on GitHub

JSON Schema

atlassian-license-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/License",
  "title": "License",
  "additionalProperties": false,
  "description": "Details about a license for the Jira instance.",
  "properties": {
    "applications": {
      "description": "The applications under this license.",
      "items": {
        "$ref": "#/components/schemas/LicensedApplication"
      },
      "readOnly": true,
      "type": "array"
    }
  },
  "required": [
    "applications"
  ],
  "type": "object"
}