Atlassian · Schema

LicensedApplication

Details about a licensed Jira application.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id string The ID of the application.
plan string The licensing plan.
View JSON Schema on GitHub

JSON Schema

atlassian-licensedapplication-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LicensedApplication",
  "title": "LicensedApplication",
  "additionalProperties": false,
  "description": "Details about a licensed Jira application.",
  "properties": {
    "id": {
      "description": "The ID of the application.",
      "readOnly": true,
      "type": "string"
    },
    "plan": {
      "description": "The licensing plan.",
      "enum": [
        "UNLICENSED",
        "FREE",
        "PAID"
      ],
      "readOnly": true,
      "type": "string"
    }
  },
  "required": [
    "id",
    "plan"
  ],
  "type": "object"
}