{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreatedIssue", "title": "CreatedIssue", "additionalProperties": false, "description": "Details about a created issue or subtask.", "properties": { "id": { "description": "The ID of the created issue or subtask.", "readOnly": true, "type": "string" }, "key": { "description": "The key of the created issue or subtask.", "readOnly": true, "type": "string" }, "self": { "description": "The URL of the created issue or subtask.", "readOnly": true, "type": "string" }, "transition": { "allOf": [ { "$ref": "#/components/schemas/NestedResponse" } ], "description": "The response code and messages related to any requested transition.", "readOnly": true }, "watchers": { "allOf": [ { "$ref": "#/components/schemas/NestedResponse" } ], "description": "The response code and messages related to any requested watchers.", "readOnly": true } }, "type": "object" }