@import org.silkframework.dataset.Dataset @import org.silkframework.workspace.Project @import org.silkframework.dataset.DatasetSpec.GenericDatasetSpec @import org.silkframework.runtime.activity.UserContext @(project: Project, datasetName: String, dataset: Option[GenericDatasetSpec], title: String = "Edit Dataset", createDialog: Boolean = false)(implicit userContext: UserContext) @widgets.pluginDialog( project, name = datasetName, plugins = Dataset.availablePlugins, currentObj = dataset.map(_.plugin), resources = project.resources.listRecursive, title = title, submitLabel = "Save", secondaryLabel = "Autoconfigure", createDialog = createDialog) {
When reading data from the dataset, the specified attribute will be used to get the URIs of the entities. When writing to a dataset, the specified attribute will be automatically added to the schema as well as the generated entity URIs will be added as values for each entity."
}