Details about system and custom avatars.
{ "$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" }