Atlassian · Schema

ProjectIssueTypeMappings

The project and issue type mappings.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
mappings array The project and issue type mappings.
View JSON Schema on GitHub

JSON Schema

atlassian-projectissuetypemappings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectIssueTypeMappings",
  "title": "ProjectIssueTypeMappings",
  "additionalProperties": false,
  "description": "The project and issue type mappings.",
  "properties": {
    "mappings": {
      "description": "The project and issue type mappings.",
      "items": {
        "$ref": "#/components/schemas/ProjectIssueTypeMapping"
      },
      "type": "array",
      "writeOnly": true
    }
  },
  "required": [
    "mappings"
  ],
  "type": "object"
}