{ "$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" }