Shopware 5 API: Mit Tabelle/Spalten erweitern?

Hallo,

die Spalten attribute1, attribute2, attribute3 der Tabelle s_articles_img_attributes können mit der API weder gelesen noch geschrieben werden.

Brauche ich dazu bereits ein Plug-In, der mindestens die Methoden getOne und update überschreibt?
Die Anleitung habe ich hier bereits gesehen: Extend a REST API resource

Oder gibt es eine Konfigurationsdatei in Shopware, in die ich die Tabelle nur hinzufügen muss und schon wird sie in der API bereitgestellt?

Die Tabelle ist wie folgt definiert:

CREATE TABLE `s_articles_img_attributes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `imageID` int(11) DEFAULT NULL,
  `attribute1` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `attribute2` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `attribute3` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `imageID` (`imageID`),
  CONSTRAINT `s_articles_img_attributes_ibfk_1` FOREIGN KEY (`imageID`) REFERENCES `s_articles_img` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
) ENGINE=InnoDB;