addedInput schema / $defs
Added value: +{
+ "QueueFieldsEnum": {
+ "enum": [
+ "id",
+ "key",
+ "name",
+ "description",
+ "defaultType",
+ "defaultPriority",
+ "issueTypesConfig"
+ ],
+ "title": "QueueFieldsEnum",
+ "type": "string"
+ }
+}
addedInput schema / properties / fields
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "$ref": "#/$defs/QueueFieldsEnum"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Fields to include in the response. In order to not pollute context window - select appropriate fields beforehand. Not specifying fields will return all available. Most of the time one needs key and name only.",
+ "title": "Fields"
+}
addedInput schema / properties / page
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Page number to return, default is None which means to retrieve all pages. Specify page number to retrieve a specific page when context limit is reached.",
+ "title": "Page"
+}
addedInput schema / properties / per_page
Added value: +{
+ "default": 100,
+ "description": "The number of items per page. May be decreased if results exceed context window. If there is a change in per_page argument - retrieval must be started over with page = 1, as the paging could have changed.",
+ "minimum": 1,
+ "title": "Per Page",
+ "type": "integer"
+}
addedOutput schema / $defs / Queue / properties / id / anyOf
Added value: +[
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+]
addedOutput schema / $defs / Queue / properties / id / default
Added value: +null
removedOutput schema / $defs / Queue / properties / id / type
Removed value: -"integer"
addedOutput schema / $defs / Queue / properties / issueTypesConfig
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "$ref": "#/$defs/QueueIssueTypeConfig"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Issuetypesconfig"
+}
removedOutput schema / $defs / Queue / required
Removed value: -[
- "id"
-]
addedOutput schema / $defs / QueueIssueTypeConfig
Added value: +{
+ "description": "Issue type configuration within a queue, including available resolutions.",
+ "properties": {
+ "issueType": {
+ "anyOf": [
+ {
+ "$ref": "#/$defs/IssueTypeReference"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Issue type reference"
+ },
+ "resolutions": {
+ "anyOf": [
+ {
+ "items": {
+ "$ref": "#/$defs/Resolution"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Available resolutions for this issue type",
+ "title": "Resolutions"
+ }
+ },
+ "title": "QueueIssueTypeConfig",
+ "type": "object"
+}
addedOutput schema / $defs / Resolution
Added value: +{
+ "properties": {
+ "description": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Resolution description",
+ "title": "Description"
+ },
+ "id": {
+ "description": "Unique resolution identifier",
+ "title": "Id",
+ "type": "integer"
+ },
+ "key": {
+ "description": "Resolution key",
+ "title": "Key",
+ "type": "string"
+ },
+ "name": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Displayed resolution name",
+ "title": "Name"
+ },
+ "order": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Display weight for ordering resolutions",
+ "title": "Order"
+ },
+ "version": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Resolution version",
+ "title": "Version"
+ }
+ },
+ "required": [
+ "id",
+ "key"
+ ],
+ "title": "Resolution",
+ "type": "object"
+}