Atlassian · Schema

UpdateScreenTypes

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

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
create string The ID of the create screen. To remove the screen association, pass a null.
default string The ID of the default screen. When specified, must include a screen ID as a default screen is required.
edit string The ID of the edit screen. To remove the screen association, pass a null.
view string The ID of the view screen. To remove the screen association, pass a null.
View JSON Schema on GitHub

JSON Schema

atlassian-updatescreentypes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateScreenTypes",
  "title": "UpdateScreenTypes",
  "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. To remove the screen association, pass a null.",
      "type": "string",
      "writeOnly": true
    },
    "default": {
      "description": "The ID of the default screen. When specified, must include a screen ID as a default screen is required.",
      "type": "string",
      "writeOnly": true
    },
    "edit": {
      "description": "The ID of the edit screen. To remove the screen association, pass a null.",
      "type": "string",
      "writeOnly": true
    },
    "view": {
      "description": "The ID of the view screen. To remove the screen association, pass a null.",
      "type": "string",
      "writeOnly": true
    }
  },
  "type": "object",
  "writeOnly": true
}