> ## Documentation Index
> Fetch the complete documentation index at: https://developer.lemlist.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Database

export const SnippetObjectScreenshot = ({objectName, filePath = null, extension = 'png'}) => {
  return <>
      <Frame caption={`${objectName[0].toUpperCase() + objectName.slice(1).toLowerCase()} screenshot from the lemlist app interface`}>
        <img src={`/images/objects-definitions/${filePath ?? objectName.toLowerCase()}.${extension}`} alt={`${objectName[0].toUpperCase() + objectName.slice(1).toLowerCase()} screenshot from the lemlist app interface`} />
      </Frame>
    </>;
};

<SnippetObjectScreenshot objectName="People database" filePath="people-database" />

The People Database in Lemlist is a repository of:

* [people](/api-reference/objects-definitions/people-database)
* [companies](/api-reference/objects-definitions/company-database)

that you can both use in your outreach campaigns.
