Details about a licensed Jira application.
{ "$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" }