Atlassian · Schema
ArchivedIssuesFilterRequest
Details of a filter for exporting archived issues.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| archivedBy | array | List archived issues archived by a specified account ID. |
| archivedDateRange | object | |
| issueTypes | array | List archived issues with a specified issue type ID. |
| projects | array | List archived issues with a specified project key. |
| reporters | array | List archived issues where the reporter is a specified account ID. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ArchivedIssuesFilterRequest",
"title": "ArchivedIssuesFilterRequest",
"additionalProperties": true,
"description": "Details of a filter for exporting archived issues.",
"properties": {
"archivedBy": {
"description": "List archived issues archived by a specified account ID.",
"items": {
"type": "string"
},
"type": "array"
},
"archivedDateRange": {
"$ref": "#/components/schemas/DateRangeFilterRequest"
},
"issueTypes": {
"description": "List archived issues with a specified issue type ID.",
"items": {
"type": "string"
},
"type": "array"
},
"projects": {
"description": "List archived issues with a specified project key.",
"items": {
"type": "string"
},
"type": "array"
},
"reporters": {
"description": "List archived issues where the reporter is a specified account ID.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}