{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Status", "title": "Status", "additionalProperties": true, "description": "The status of the item.", "properties": { "icon": { "allOf": [ { "$ref": "#/components/schemas/Icon" } ], "description": "Details of the icon representing the status. If not provided, no status icon displays in Jira." }, "resolved": { "description": "Whether the item is resolved. If set to \"true\", the link to the issue is displayed in a strikethrough font, otherwise the link displays in normal font.", "type": "boolean" } }, "type": "object" }