diff --git a/ccm-cms/src/main/java/org/librecms/pages/models/ExternalVideoAssetModel.java b/ccm-cms/src/main/java/org/librecms/pages/models/ExternalVideoAssetModel.java
new file mode 100644
index 000000000..1d7f513c6
--- /dev/null
+++ b/ccm-cms/src/main/java/org/librecms/pages/models/ExternalVideoAssetModel.java
@@ -0,0 +1,42 @@
+/*
+ * Copyright (C) 2021 LibreCCM Foundation.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301 USA
+ */
+package org.librecms.pages.models;
+
+/**
+ *
+ * @author Jens Pelzetter
+ */
+public class ExternalVideoAssetModel extends BookmarkModel {
+
+ private LegalMetadataModel legalMetadata;
+
+ @Override
+ public String getType() {
+ return ExternalVideoAssetModel.class.getName();
+ }
+
+ public LegalMetadataModel getLegalMetadata() {
+ return legalMetadata;
+ }
+
+ public void setLegalMetadata(final LegalMetadataModel legalMetadata) {
+ this.legalMetadata = legalMetadata;
+ }
+
+}
diff --git a/ccm-cms/src/main/java/org/librecms/pages/models/ExternalVideoAssetModelBuilder.java b/ccm-cms/src/main/java/org/librecms/pages/models/ExternalVideoAssetModelBuilder.java
new file mode 100644
index 000000000..e77c7be7f
--- /dev/null
+++ b/ccm-cms/src/main/java/org/librecms/pages/models/ExternalVideoAssetModelBuilder.java
@@ -0,0 +1,59 @@
+/*
+ * Copyright (C) 2021 LibreCCM Foundation.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301 USA
+ */
+package org.librecms.pages.models;
+
+import org.librecms.assets.ExternalVideoAsset;
+
+import javax.enterprise.context.RequestScoped;
+import javax.inject.Inject;
+import javax.transaction.Transactional;
+
+/**
+ *
+ * @author Jens Pelzetter
+ */
+@RequestScoped
+public class ExternalVideoAssetModelBuilder
+ extends AbstractBookmarkModelBuilder {
+
+ @Inject
+ private LegalMetadataModelBuilder legalMetadataModelBuilder;
+
+ @Override
+ public Class buildsAssetModelFor() {
+ return ExternalVideoAsset.class;
+ }
+
+ @Override
+ protected ExternalVideoAssetModel buildModel() {
+ return new ExternalVideoAssetModel();
+ }
+
+ @Transactional(Transactional.TxType.REQUIRED)
+ @Override
+ protected void addProperties(
+ final ExternalVideoAsset asset, final ExternalVideoAssetModel model
+ ) {
+ super.addProperties(asset, model);
+ model.setLegalMetadata(
+ legalMetadataModelBuilder.buildAssetModel(asset.getLegalMetadata())
+ );
+ }
+
+}