001/*
002 * SPDX-FileCopyrightText: none
003 * SPDX-License-Identifier: CC0-1.0
004 */
005
006package dev.metaschema.core.model;
007
008/**
009 * Represents data associated with a Metaschema module.
010 * <p>
011 * This interface combines resource location information with
012 * Metaschema-specific metadata.
013 */
014public interface IMetaschemaData extends IResourceLocation {
015  // no additional methods
016}