Atlassian · Schema

Screen

A screen.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the screen.
id integer The ID of the screen.
name string The name of the screen.
scope object The scope of the screen.
View JSON Schema on GitHub

JSON Schema

atlassian-screen-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Screen",
  "title": "Screen",
  "additionalProperties": false,
  "description": "A screen.",
  "properties": {
    "description": {
      "description": "The description of the screen.",
      "readOnly": true,
      "type": "string"
    },
    "id": {
      "description": "The ID of the screen.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "name": {
      "description": "The name of the screen.",
      "readOnly": true,
      "type": "string"
    },
    "scope": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Scope"
        }
      ],
      "description": "The scope of the screen."
    }
  },
  "type": "object"
}