Atlassian · Schema
ScreenSchemeDetails
Details of a screen scheme.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| description | string | The description of the screen scheme. The maximum length is 255 characters. |
| name | string | The name of the screen scheme. The name must be unique. The maximum length is 255 characters. |
| screens | object | The IDs of the screens for the screen types of the screen scheme. Only screens used in classic projects are accepted. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ScreenSchemeDetails",
"title": "ScreenSchemeDetails",
"additionalProperties": false,
"description": "Details of a screen scheme.",
"properties": {
"description": {
"description": "The description of the screen scheme. The maximum length is 255 characters.",
"type": "string",
"writeOnly": true
},
"name": {
"description": "The name of the screen scheme. The name must be unique. The maximum length is 255 characters.",
"type": "string",
"writeOnly": true
},
"screens": {
"allOf": [
{
"$ref": "#/components/schemas/ScreenTypes"
}
],
"description": "The IDs of the screens for the screen types of the screen scheme. Only screens used in classic projects are accepted."
}
},
"required": [
"name",
"screens"
],
"type": "object"
}