Atlassian · Schema

ProjectType

Details about a project type.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
color string The color of the project type.
descriptionI18nKey string The key of the project type's description.
formattedKey string The formatted key of the project type.
icon string The icon of the project type.
key string The key of the project type.
View JSON Schema on GitHub

JSON Schema

atlassian-projecttype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectType",
  "title": "ProjectType",
  "additionalProperties": false,
  "description": "Details about a project type.",
  "properties": {
    "color": {
      "description": "The color of the project type.",
      "readOnly": true,
      "type": "string"
    },
    "descriptionI18nKey": {
      "description": "The key of the project type's description.",
      "readOnly": true,
      "type": "string"
    },
    "formattedKey": {
      "description": "The formatted key of the project type.",
      "readOnly": true,
      "type": "string"
    },
    "icon": {
      "description": "The icon of the project type.",
      "readOnly": true,
      "type": "string"
    },
    "key": {
      "description": "The key of the project type.",
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object"
}