Atlassian · Schema

ResolutionId

The ID of an issue resolution.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id string The ID of the issue resolution.
View JSON Schema on GitHub

JSON Schema

atlassian-resolutionid-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResolutionId",
  "title": "ResolutionId",
  "additionalProperties": true,
  "description": "The ID of an issue resolution.",
  "properties": {
    "id": {
      "description": "The ID of the issue resolution.",
      "readOnly": true,
      "type": "string"
    }
  },
  "required": [
    "id"
  ],
  "type": "object"
}