Atlassian · Schema

ProjectAvatars

List of project avatars.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
custom array List of avatars added to Jira. These avatars may be deleted.
system array List of avatars included with Jira. These avatars cannot be deleted.
View JSON Schema on GitHub

JSON Schema

atlassian-projectavatars-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectAvatars",
  "title": "ProjectAvatars",
  "additionalProperties": false,
  "description": "List of project avatars.",
  "properties": {
    "custom": {
      "description": "List of avatars added to Jira. These avatars may be deleted.",
      "items": {
        "$ref": "#/components/schemas/Avatar"
      },
      "readOnly": true,
      "type": "array"
    },
    "system": {
      "description": "List of avatars included with Jira. These avatars cannot be deleted.",
      "items": {
        "$ref": "#/components/schemas/Avatar"
      },
      "readOnly": true,
      "type": "array"
    }
  },
  "type": "object"
}