Atlassian · Schema

ScreenSchemeId

The ID of a screen scheme.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id integer The ID of the screen scheme.
View JSON Schema on GitHub

JSON Schema

atlassian-screenschemeid-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScreenSchemeId",
  "title": "ScreenSchemeId",
  "additionalProperties": false,
  "description": "The ID of a screen scheme.",
  "properties": {
    "id": {
      "description": "The ID of the screen scheme.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    }
  },
  "required": [
    "id"
  ],
  "type": "object"
}