Atlassian · Schema

ScreenTypes

The IDs of the screens for the screen types of the screen scheme.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
create integer The ID of the create screen.
default integer The ID of the default screen. Required when creating a screen scheme.
edit integer The ID of the edit screen.
view integer The ID of the view screen.
View JSON Schema on GitHub

JSON Schema

atlassian-screentypes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScreenTypes",
  "title": "ScreenTypes",
  "additionalProperties": false,
  "description": "The IDs of the screens for the screen types of the screen scheme.",
  "properties": {
    "create": {
      "description": "The ID of the create screen.",
      "format": "int64",
      "type": "integer"
    },
    "default": {
      "description": "The ID of the default screen. Required when creating a screen scheme.",
      "format": "int64",
      "type": "integer"
    },
    "edit": {
      "description": "The ID of the edit screen.",
      "format": "int64",
      "type": "integer"
    },
    "view": {
      "description": "The ID of the view screen.",
      "format": "int64",
      "type": "integer"
    }
  },
  "required": [
    "defaultScreen"
  ],
  "type": "object",
  "writeOnly": true
}