001/*
002 * SPDX-FileCopyrightText: none
003 * SPDX-License-Identifier: CC0-1.0
004 */
005
006package dev.metaschema.databind.model;
007
008import dev.metaschema.core.model.IDefinition;
009
010/**
011 * A Metaschema definition (flag, field, or assembly) bound to Java data.
012 * <p>
013 * This interface combines the bound model element capabilities with the core
014 * Metaschema definition interface.
015 */
016public interface IBoundDefinition extends IBoundModelElement, IDefinition {
017  // no additional methods
018}