# Imports in Fern Definition > Use imports to reference API types and errors from other Fern Definition files. Imports allow you to reference types and errors from other files. ```yaml title="person.yml" types: Person: ... ``` ```yaml title="family.yml" imports: person: ./path/to/person.yml types: Family: properties: people: list # use an imported type ``` Note that you can only import files that exist in your Fern Definition (i.e., in the same `definition/` folder).