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

# Organizations & Projects

> Manage your team's evaluation work with Organizations and Projects

export const DarkLightImage = ({lightSrc, caption, alt, darkSrc = null, width = "1000"}) => {
  const getAbsoluteUrl = src => {
    if (src.startsWith('http://') || src.startsWith('https://')) {
      return src;
    }
    const currentUrl = typeof window !== 'undefined' ? window.location.origin : '';
    if (currentUrl.includes('.mintlify.app')) {
      const subdomain = currentUrl.split('.')[0].replace('https://', '');
      return `https://mintlify.s3.us-west-1.amazonaws.com/${subdomain}${src.startsWith('/') ? '' : '/'}${src}`;
    } else if (currentUrl === 'https://docs.scorecard.io') {
      return `https://mintlify.s3.us-west-1.amazonaws.com/scorecard-d65b5e8a${src.startsWith('/') ? '' : '/'}${src}`;
    } else {
      return `${currentUrl}${src.startsWith('/') ? '' : '/'}${src}`;
    }
  };
  const content = <>
      <img className="block dark:hidden" width={width} src={getAbsoluteUrl(lightSrc)} alt={alt} />
      <img className="hidden dark:block" width={width} src={getAbsoluteUrl(darkSrc || lightSrc.replace('light', 'dark'))} alt={alt} />
    </>;
  if (caption) {
    return <Frame caption={caption}>{content}</Frame>;
  } else {
    return content;
  }
};

Scorecard uses a hierarchical structure to organize your evaluation work: **Organizations** contain multiple **Projects**, and each Project contains your testsets, metrics, runs, and results.

## Organizations

Organizations are the top-level entity in Scorecard that enables team collaboration and workspace isolation.

All members of an organization can access all projects within that organization. API keys are scoped to a specific *organization*, not user or project.

<DarkLightImage lightSrc="/images/org-member-modal.png" caption="Organization member management dialog with a few users." alt="Screenshot of the organization member management dialog with a few users." />

## Projects

Each project serves as a container for:

* **Testsets**: Collections of Testcases for evaluation
* **Metrics**: Custom evaluation criteria and scoring methods
* **Records**: Evaluation executions and their results, traces and logs

<DarkLightImage lightSrc="/images/projects-overview-light.png" darkSrc="/images/projects-overview-dark.png" caption="Projects overview page for an organization." alt="Screenshot of the projects overview page with two projects." />

### Creating a New Project

To create a project, click **"Create Project"** in the projects menu and go through the steps.

<Tip>
  Choose a descriptive project name for the system or use case you're evaluating, such as "Customer Support Chatbot" or "Product Recommendation Engine."
</Tip>

<DarkLightImage lightSrc="/images/project-create-light.png" darkSrc="/images/project-create-dark.png" caption="Creating a new project." alt="Screenshot of the create project modal in the UI." />
