<pre class="java-code"><code>
@JsonView(entity = Student.class)
public record StudentView(
    @Id
    @GeneratedValue
    Long id,
    String name,

    @Relation(value = Relation.Kind.ONE_TO_MANY)
    @JoinColumn(name = "id", referencedColumnName = "student_id")
    List&lt;studentschedulesubview&gt; schedule,

    @JsonProperty("_metadata")
    Metadata metadata
) {
}
</code></pre>

updated after go live