Atlassian · Schema

ProjectCategory

A project category.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the project category.
id string The ID of the project category.
name string The name of the project category. Required on create, optional on update.
self string The URL of the project category.
View JSON Schema on GitHub

JSON Schema

atlassian-projectcategory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectCategory",
  "title": "ProjectCategory",
  "additionalProperties": false,
  "description": "A project category.",
  "properties": {
    "description": {
      "description": "The description of the project category.",
      "type": "string"
    },
    "id": {
      "description": "The ID of the project category.",
      "readOnly": true,
      "type": "string"
    },
    "name": {
      "description": "The name of the project category. Required on create, optional on update.",
      "type": "string"
    },
    "self": {
      "description": "The URL of the project category.",
      "format": "uri",
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object"
}