Atlassian · Schema

IssueTypeSchemeProjects

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

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

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