Atlassian · Schema
RemoveOptionFromIssuesResult
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| errors | object | A collection of errors related to unchanged issues. The collection size is limited, which means not all errors may be returned. |
| modifiedIssues | array | The IDs of the modified issues. |
| unmodifiedIssues | array | The IDs of the unchanged issues, those issues where errors prevent modification. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RemoveOptionFromIssuesResult",
"title": "RemoveOptionFromIssuesResult",
"additionalProperties": false,
"properties": {
"errors": {
"allOf": [
{
"$ref": "#/components/schemas/SimpleErrorCollection"
}
],
"description": "A collection of errors related to unchanged issues. The collection size is limited, which means not all errors may be returned."
},
"modifiedIssues": {
"description": "The IDs of the modified issues.",
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"unmodifiedIssues": {
"description": "The IDs of the unchanged issues, those issues where errors prevent modification.",
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
},
"type": "object"
}