package com.cloudhandson.vpdbackoffice.domain.schemametadata; import com.cloudhandson.vpdbackoffice.domain.structured.StructuredDataTable; import java.util.List; public record SchemaMetadataView( StructuredDataTable table, String tableComment, List tableAnnotations, List columns ) { }