{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Fields", "title": "Fields", "additionalProperties": false, "description": "Key fields from the linked issue.", "properties": { "assignee": { "allOf": [ { "$ref": "#/components/schemas/UserDetails" } ], "description": "The assignee of the linked issue.", "readOnly": true }, "issueType": { "allOf": [ { "$ref": "#/components/schemas/IssueTypeDetails" } ], "description": "The type of the linked issue.", "readOnly": true }, "issuetype": { "description": "The type of the linked issue.", "$ref": "#/components/schemas/IssueTypeDetails" }, "priority": { "allOf": [ { "$ref": "#/components/schemas/Priority" } ], "description": "The priority of the linked issue.", "readOnly": true }, "status": { "allOf": [ { "$ref": "#/components/schemas/StatusDetails" } ], "description": "The status of the linked issue.", "readOnly": true }, "summary": { "description": "The summary description of the linked issue.", "readOnly": true, "type": "string" }, "timetracking": { "allOf": [ { "$ref": "#/components/schemas/TimeTrackingDetails" } ], "description": "The time tracking of the linked issue.", "readOnly": true } }, "type": "object" }