Atlassian · Schema

IssueTypeScreenSchemesProjects

Issue type screen scheme with a list of the projects that use it.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
issueTypeScreenScheme object Details of an issue type screen scheme.
projectIds array The IDs of the projects using the issue type screen scheme.
View JSON Schema on GitHub

JSON Schema

atlassian-issuetypescreenschemesprojects-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueTypeScreenSchemesProjects",
  "title": "IssueTypeScreenSchemesProjects",
  "additionalProperties": false,
  "description": "Issue type screen scheme with a list of the projects that use it.",
  "properties": {
    "issueTypeScreenScheme": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IssueTypeScreenScheme"
        }
      ],
      "description": "Details of an issue type screen scheme."
    },
    "projectIds": {
      "description": "The IDs of the projects using the issue type screen scheme.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "issueTypeScreenScheme",
    "projectIds"
  ],
  "type": "object"
}