Atlassian · Schema

TransitionScreenDetails

The details of a transition screen.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

atlassian-transitionscreendetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransitionScreenDetails",
  "title": "TransitionScreenDetails",
  "additionalProperties": false,
  "description": "The details of a transition screen.",
  "properties": {
    "id": {
      "description": "The ID of the screen.",
      "type": "string"
    },
    "name": {
      "description": "The name of the screen.",
      "type": "string"
    }
  },
  "required": [
    "id"
  ],
  "type": "object"
}