Bunq · Schema

AvatarRead

Banking

Properties

Name Type Description
uuid string The UUID of the created avatar.
image array The content type of the image.
View JSON Schema on GitHub

JSON Schema

bunq-avatarread-schema.json Raw ↑
{
  "$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"
      }
    }
  }
}