1   /*
2    * SPDX-FileCopyrightText: none
3    * SPDX-License-Identifier: CC0-1.0
4    */
5   
6   package dev.metaschema.databind.codegen.typeinfo;
7   
8   import dev.metaschema.core.model.IInstance;
9   import edu.umd.cs.findbugs.annotations.NonNull;
10  
11  public interface IInstanceTypeInfo extends IPropertyTypeInfo {
12    /**
13     * Get the instance associated with this type information.
14     *
15     * @return the instance
16     */
17    @NonNull
18    IInstance getInstance();
19  }