From 663d9a75bd8d5de16bec1d78d071a71b2c4ba150 Mon Sep 17 00:00:00 2001 From: Markus Zehnder Date: Tue, 7 Apr 2026 13:07:28 +0200 Subject: [PATCH] feat: Allow integrations to provide entity icon and description Relates to unfoldedcircle/core-api#82 --- src/intg/entity.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/intg/entity.rs b/src/intg/entity.rs index 280bbb6..170f0f7 100644 --- a/src/intg/entity.rs +++ b/src/intg/entity.rs @@ -203,6 +203,8 @@ pub struct AvailableIntgEntity { #[validate(length(max = 36, message = "Invalid length (max = 36)"))] #[validate(regex(path = "*REGEX_ICON_ID"))] pub icon: Option, + /// Optional description of the entity. + pub description: Option>, /// Supported features of the entity. /// See entity-specific feature enums and the entity documentation for available features. pub features: Option>,