Atlassian · Schema
CreateUiModificationDetails
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. |
| 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. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateUiModificationDetails",
"title": "CreateUiModificationDetails",
"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.",
"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
}
},
"required": [
"name"
],
"type": "object"
}