{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AvatarRead", "title": "AvatarRead", "type": "object", "properties": { "uuid": { "type": "string", "description": "The UUID of the created avatar.", "readOnly": true, "writeOnly": false }, "image": { "type": "array", "description": "The content type of the image.", "readOnly": true, "writeOnly": false, "items": { "$ref": "#/components/schemas/Image" } } } }