Atlassian · Schema

UpdateScreenDetails

Details of a screen.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the screen. The maximum length is 255 characters.
name string The name of the screen. The name must be unique. The maximum length is 255 characters.
View JSON Schema on GitHub

JSON Schema

atlassian-updatescreendetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateScreenDetails",
  "title": "UpdateScreenDetails",
  "additionalProperties": false,
  "description": "Details of a screen.",
  "properties": {
    "description": {
      "description": "The description of the screen. The maximum length is 255 characters.",
      "type": "string",
      "writeOnly": true
    },
    "name": {
      "description": "The name of the screen. The name must be unique. The maximum length is 255 characters.",
      "type": "string",
      "writeOnly": true
    }
  },
  "type": "object"
}