Atlassian · Schema

ScreenableTab

A screen tab.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id integer The ID of the screen tab.
name string The name of the screen tab. The maximum length is 255 characters.
View JSON Schema on GitHub

JSON Schema

atlassian-screenabletab-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScreenableTab",
  "title": "ScreenableTab",
  "additionalProperties": false,
  "description": "A screen tab.",
  "properties": {
    "id": {
      "description": "The ID of the screen tab.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "name": {
      "description": "The name of the screen tab. The maximum length is 255 characters.",
      "type": "string"
    }
  },
  "required": [
    "name"
  ],
  "type": "object"
}