Properties
| Name | Type | Description |
|---|---|---|
| uuid | string | The public UUID of the avatar. |
| anchor_uuid | string | The public UUID of object this avatar is anchored to. |
| image | array | The actual image information of this avatar. |
| style | string | The style (if applicable) for this Avatar. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Avatar",
"title": "Avatar",
"type": "object",
"properties": {
"uuid": {
"type": "string",
"description": "The public UUID of the avatar.",
"readOnly": false,
"writeOnly": false
},
"anchor_uuid": {
"type": "string",
"description": "The public UUID of object this avatar is anchored to.",
"readOnly": true,
"writeOnly": false
},
"image": {
"type": "array",
"description": "The actual image information of this avatar.",
"readOnly": true,
"writeOnly": false,
"items": {
"$ref": "#/components/schemas/Image"
}
},
"style": {
"type": "string",
"description": "The style (if applicable) for this Avatar.",
"readOnly": true,
"writeOnly": false
}
}
}