Atlassian · Schema

UpdateUiModificationDetails

The details of a UI modification.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
contexts array List of contexts of the UI modification. The maximum number of contexts is 1000. If provided, replaces all existing contexts.
data string The data of the UI modification. The maximum size of the data is 50000 characters.
description string The description of the UI modification. The maximum length is 255 characters.
name string The name of the UI modification. The maximum length is 255 characters.
View JSON Schema on GitHub

JSON Schema

atlassian-updateuimodificationdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateUiModificationDetails",
  "title": "UpdateUiModificationDetails",
  "additionalProperties": false,
  "description": "The details of a UI modification.",
  "properties": {
    "contexts": {
      "description": "List of contexts of the UI modification. The maximum number of contexts is 1000. If provided, replaces all existing contexts.",
      "items": {
        "$ref": "#/components/schemas/UiModificationContextDetails"
      },
      "type": "array",
      "writeOnly": true
    },
    "data": {
      "description": "The data of the UI modification. The maximum size of the data is 50000 characters.",
      "type": "string",
      "writeOnly": true
    },
    "description": {
      "description": "The description of the UI modification. The maximum length is 255 characters.",
      "type": "string",
      "writeOnly": true
    },
    "name": {
      "description": "The name of the UI modification. The maximum length is 255 characters.",
      "type": "string",
      "writeOnly": true
    }
  },
  "type": "object"
}