Atlassian · Schema
ScreenWithTab
A screen with tab details.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| description | string | The description of the screen. |
| id | integer | The ID of the screen. |
| name | string | The name of the screen. |
| scope | object | The scope of the screen. |
| tab | object | The tab for the screen. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ScreenWithTab",
"title": "ScreenWithTab",
"additionalProperties": false,
"description": "A screen with tab details.",
"properties": {
"description": {
"description": "The description of the screen.",
"readOnly": true,
"type": "string"
},
"id": {
"description": "The ID of the screen.",
"format": "int64",
"readOnly": true,
"type": "integer"
},
"name": {
"description": "The name of the screen.",
"readOnly": true,
"type": "string"
},
"scope": {
"allOf": [
{
"$ref": "#/components/schemas/Scope"
}
],
"description": "The scope of the screen."
},
"tab": {
"allOf": [
{
"$ref": "#/components/schemas/ScreenableTab"
}
],
"description": "The tab for the screen."
}
},
"type": "object"
}