{ "$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" }