{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IssueBean", "title": "IssueBean", "additionalProperties": false, "description": "Details about an issue.", "properties": { "changelog": { "allOf": [ { "$ref": "#/components/schemas/PageOfChangelogs" } ], "description": "Details of changelogs associated with the issue.", "readOnly": true }, "editmeta": { "allOf": [ { "$ref": "#/components/schemas/IssueUpdateMetadata" } ], "description": "The metadata for the fields on the issue that can be amended.", "readOnly": true }, "expand": { "description": "Expand options that include additional issue details in the response.", "readOnly": true, "type": "string", "xml": { "attribute": true } }, "fields": { "additionalProperties": {}, "type": "object" }, "fieldsToInclude": { "$ref": "#/components/schemas/IncludedFields" }, "id": { "description": "The ID of the issue.", "readOnly": true, "type": "string" }, "key": { "description": "The key of the issue.", "readOnly": true, "type": "string" }, "names": { "additionalProperties": { "readOnly": true, "type": "string" }, "description": "The ID and name of each field present on the issue.", "readOnly": true, "type": "object" }, "operations": { "allOf": [ { "$ref": "#/components/schemas/Operations" } ], "description": "The operations that can be performed on the issue.", "readOnly": true }, "properties": { "additionalProperties": { "readOnly": true }, "description": "Details of the issue properties identified in the request.", "readOnly": true, "type": "object" }, "renderedFields": { "additionalProperties": { "readOnly": true }, "description": "The rendered value of each field present on the issue.", "readOnly": true, "type": "object" }, "schema": { "additionalProperties": { "$ref": "#/components/schemas/JsonTypeBean" }, "description": "The schema describing each field present on the issue.", "readOnly": true, "type": "object" }, "self": { "description": "The URL of the issue details.", "format": "uri", "readOnly": true, "type": "string" }, "transitions": { "description": "The transitions that can be performed on the issue.", "items": { "$ref": "#/components/schemas/IssueTransition" }, "readOnly": true, "type": "array" }, "versionedRepresentations": { "additionalProperties": { "additionalProperties": { "readOnly": true }, "readOnly": true, "type": "object" }, "description": "The versions of each field on the issue.", "readOnly": true, "type": "object" } }, "type": "object", "xml": { "name": "issue" } }