1   /*
2    * SPDX-FileCopyrightText: none
3    * SPDX-License-Identifier: CC0-1.0
4    */
5   
6   package dev.metaschema.core.model;
7   
8   /**
9    * Represents data associated with a Metaschema module.
10   * <p>
11   * This interface combines resource location information with
12   * Metaschema-specific metadata.
13   */
14  public interface IMetaschemaData extends IResourceLocation {
15    // no additional methods
16  }