Atlassian · Schema
ScreenScheme
A screen scheme.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| description | string | The description of the screen scheme. |
| id | integer | The ID of the screen scheme. |
| issueTypeScreenSchemes | object | Details of the issue type screen schemes associated with the screen scheme. |
| name | string | The name of the screen scheme. |
| screens | object | The IDs of the screens for the screen types of the screen scheme. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ScreenScheme",
"title": "ScreenScheme",
"additionalProperties": false,
"description": "A screen scheme.",
"properties": {
"description": {
"description": "The description of the screen scheme.",
"type": "string"
},
"id": {
"description": "The ID of the screen scheme.",
"format": "int64",
"type": "integer"
},
"issueTypeScreenSchemes": {
"allOf": [
{
"$ref": "#/components/schemas/PageBeanIssueTypeScreenScheme"
}
],
"description": "Details of the issue type screen schemes associated with the screen scheme."
},
"name": {
"description": "The name of the screen scheme.",
"type": "string"
},
"screens": {
"allOf": [
{
"$ref": "#/components/schemas/ScreenTypes"
}
],
"description": "The IDs of the screens for the screen types of the screen scheme."
}
},
"type": "object"
}