Atlassian · Schema

ContextForProjectAndIssueType

The project and issue type mapping with a matching custom field context.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
contextId string The ID of the custom field context.
issueTypeId string The ID of the issue type.
projectId string The ID of the project.
View JSON Schema on GitHub

JSON Schema

atlassian-contextforprojectandissuetype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContextForProjectAndIssueType",
  "title": "ContextForProjectAndIssueType",
  "additionalProperties": false,
  "description": "The project and issue type mapping with a matching custom field context.",
  "properties": {
    "contextId": {
      "description": "The ID of the custom field context.",
      "type": "string"
    },
    "issueTypeId": {
      "description": "The ID of the issue type.",
      "type": "string"
    },
    "projectId": {
      "description": "The ID of the project.",
      "type": "string"
    }
  },
  "required": [
    "contextId",
    "issueTypeId",
    "projectId"
  ],
  "type": "object"
}