Atlassian · Schema

UpdateScreenSchemeDetails

Details of a screen scheme.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the screen scheme. The maximum length is 255 characters.
name string The name of the screen scheme. The name must be unique. The maximum length is 255 characters.
screens object The IDs of the screens for the screen types of the screen scheme. Only screens used in classic projects are accepted.
View JSON Schema on GitHub

JSON Schema

atlassian-updatescreenschemedetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateScreenSchemeDetails",
  "title": "UpdateScreenSchemeDetails",
  "additionalProperties": false,
  "description": "Details of a screen scheme.",
  "properties": {
    "description": {
      "description": "The description of the screen scheme. The maximum length is 255 characters.",
      "type": "string",
      "writeOnly": true
    },
    "name": {
      "description": "The name of the screen scheme. The name must be unique. The maximum length is 255 characters.",
      "type": "string",
      "writeOnly": true
    },
    "screens": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UpdateScreenTypes"
        }
      ],
      "description": "The IDs of the screens for the screen types of the screen scheme. Only screens used in classic projects are accepted."
    }
  },
  "type": "object"
}