Atlassian · Schema

Avatars

Details about system and custom avatars.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
custom array Custom avatars list.
system array System avatars list.
View JSON Schema on GitHub

JSON Schema

atlassian-avatars-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Avatars",
  "title": "Avatars",
  "additionalProperties": false,
  "description": "Details about system and custom avatars.",
  "properties": {
    "custom": {
      "description": "Custom avatars list.",
      "items": {
        "$ref": "#/components/schemas/Avatar"
      },
      "readOnly": true,
      "type": "array"
    },
    "system": {
      "description": "System avatars list.",
      "items": {
        "$ref": "#/components/schemas/Avatar"
      },
      "readOnly": true,
      "type": "array"
    }
  },
  "type": "object"
}