Atlassian · Schema
Fields
Key fields from the linked issue.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| assignee | object | The assignee of the linked issue. |
| issueType | object | The type of the linked issue. |
| issuetype | object | The type of the linked issue. |
| priority | object | The priority of the linked issue. |
| status | object | The status of the linked issue. |
| summary | string | The summary description of the linked issue. |
| timetracking | object | The time tracking of the linked issue. |
JSON Schema
{
"$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"
}