Atlassian · Schema

UiModificationIdentifiers

Identifiers for a UI modification.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id string The ID of the UI modification.
self string The URL of the UI modification.
View JSON Schema on GitHub

JSON Schema

atlassian-uimodificationidentifiers-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UiModificationIdentifiers",
  "title": "UiModificationIdentifiers",
  "additionalProperties": false,
  "description": "Identifiers for a UI modification.",
  "properties": {
    "id": {
      "description": "The ID of the UI modification.",
      "readOnly": true,
      "type": "string"
    },
    "self": {
      "description": "The URL of the UI modification.",
      "readOnly": true,
      "type": "string"
    }
  },
  "required": [
    "id",
    "self"
  ],
  "type": "object"
}