001/*
002 * SPDX-FileCopyrightText: none
003 * SPDX-License-Identifier: CC0-1.0
004 */
005
006package dev.metaschema.core.model;
007
008/**
009 * Represents a model instance with an absolute path and an associated value.
010 * <p>
011 * Combines model instance characteristics with absolute positioning and value
012 * semantics for field and assembly instances in a Metaschema model.
013 */
014public interface IModelInstanceAbsolute extends IModelInstance, IInstanceAbsolute {
015  // no additional methods
016}