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