Skip to content
wiki.fftac.org

Making 2Ia The Definitive Directory Of AI Organizations - Source Excerpt 03 - Metadata, taxonomy, and navigation

Back to Making 2Ia The Definitive Directory Of AI Organizations

Summary

This source excerpt begins near Metadata, taxonomy, and navigation and preserves the surrounding evidence from 2IA.org/agent-file-handoff/Archive/2026-05-17-organizations-directory-overhaul/Making 2IA the definitive directory of AI organizations.md.

**Source path:** 2IA.org/agent-file-handoff/Archive/2026-05-17-organizations-directory-overhaul/Making 2IA the definitive directory of AI organizations.md

| Priority | Canonical link text | Exact official link | Paste-ready description | Why it belongs next |
| --- | --- | --- | --- | --- |
| High | **Ada Lovelace Institute** | `https://www.adalovelaceinstitute.org/` | The Ada Lovelace Institute is an independent research institute funded by the Nuffield Foundation whose mission is to ensure that data and AI work for people and society. Its work is especially important for public-interest governance, legitimacy, and regulation. citeturn30view0 | Adds strong public-interest and democratic-governance coverage. |
| High | **Institute for AI Policy and Strategy** | `https://www.iaps.ai/` | IAPS is a nonpartisan think tank producing policy research on advanced AI, national security, geopolitics, and high-magnitude technical and strategic risks. citeturn30view1 | Important for policy, compute security, and export-control discussions. |
| High | **Center for Human-Compatible AI** | `https://humancompatible.ai/` | CHAI is the UC Berkeley center focused on developing the conceptual and technical foundations needed to steer AI research toward provably beneficial systems. citeturn33view3 | Essential academic anchor for alignment and value-learning work. |
| High | **Alignment Research Center** | `https://www.alignment.org/` | The Alignment Research Center is a nonprofit research organization focused on aligning future machine learning systems with human interests, with current work emphasizing formal mechanistic explanations of neural network behavior. citeturn30view3 | Important specialist alignment lab with a distinct theoretical research agenda. |
| High | **Mila** | `https://mila.quebec/en` | Mila is a Montreal-based AI research institute founded by Yoshua Bengio that brings together researchers across several major universities and publishes a large volume of current academic work. citeturn13search1turn29view2 | One of the world’s best-known academic AI institutes and a major Canadian node. |
| High | **Vector Institute** | `https://vectorinstitute.ai/` | Vector Institute bridges AI research and real-world adoption across Canada through research, talent programs, partnerships, and practical implementation support. citeturn13search2turn29view3 | Important for the research-to-adoption layer and Canadian AI ecosystem coverage. |
| High | **Global Partnership on AI** | `https://oecd.ai/en/about/about-gpai` | GPAI is an international initiative, now integrated with the OECD, that promotes responsible, human-centric, and trustworthy AI through a multistakeholder expert community and member-country coordination. citeturn31view2 | Important intergovernmental layer that many directories omit. |
| High | **ISO/IEC JTC 1/SC 42** | `https://www.iso.org/committee/6794475.html` | ISO/IEC JTC 1/SC 42 is the international standards committee for artificial intelligence, created in 2017 to coordinate standardization work on AI across foundational, data, trustworthiness, and application topics. citeturn32view1 | Essential standards body; without it, the directory is incomplete. |
| High | **AAAI** | `https://aaai.org/` | AAAI is the premier scientific society dedicated to advancing the scientific understanding of intelligent behavior and its embodiment in machines, and it remains a key institutional home for conferences, publications, and membership. citeturn31view3 | Important professional-society anchor beyond labs and think tanks. |
| High | **ELLIS** | `https://ellis.eu/` | ELLIS is a pan-European AI network of excellence designed to strengthen AI made in Europe by connecting leading researchers, sites, research programs, and PhD/postdoc pathways. citeturn32view2 | Important European network coverage and talent/research infrastructure. |
| High | **LAION** | `https://laion.ai/` | LAION is a nonprofit, open-AI network that releases datasets, tools, and models to support public machine learning research and education. citeturn33view1 | Important open-data and open-model ecosystem node. |
| High | **LF AI & Data** | `https://lfaidata.foundation/` | LF AI & Data is the Linux Foundation’s neutral home for open-source AI and data projects, memberships, technical working groups, and interoperability-oriented community infrastructure. citeturn33view2 | Adds the open-source foundation and standards-adjacent layer many AI directories miss. |

After those twenty, the next additions I would queue are **xAI**, **Mistral AI**, **Amii**, **Stanford HAI**, **Stanford Center for AI Safety**, and **ACM SIGAI**. xAI and Mistral matter because they are now prominent frontier-model organizations; Amii matters because it rounds out Canada’s three-institute national AI strategy; Stanford HAI and Stanford Center for AI Safety add major academic and policy capacity; and ACM SIGAI strengthens the professional-society layer. citeturn21search1turn21search0turn32view3turn20search1turn15search13

The most important naming-normalization rules are straightforward. Use the official brand where one clearly exists, and store aliases separately. That means **Ai2** rather than “Allen Institute for AI” as link text, **GovAI** with “Centre for the Governance of AI” as an alternate name, **The AI Security Institute** with a note that it was previously called the AI Safety Institute, and **Center for AI Standards and Innovation** with a note that it now occupies the role many users will still search for as the U.S. AI Safety Institute. citeturn27view3turn30view2turn31view0turn31view1

## Metadata, taxonomy, and navigation

The technical target should be a site that search engines, LLMs, and human readers can all interpret in the same way. Google’s Organization structured data documentation explicitly recommends using organization markup for administrative details such as name, address, contact information, and business identifiers, while Schema.org provides the finer-grained properties a directory like this needs, including `sameAs`, `foundingDate`, `ContactPoint`, `CollectionPage`, `ItemList`, `BreadcrumbList`, and `Dataset`. citeturn23search6turn23search3turn22search0turn9search1turn22search1turn9search2turn22search2turn23search0turn23search2

In practice, every profile page should render three things simultaneously: a human-readable page, a machine-readable `Organization` entity, and a visible editorial verification status. The minimal profile schema should contain official name, alternate names, official website, canonical social URLs, country, founding date, contact or membership URL, focus tags, and last-reviewed date. Because Google recommends clear canonicalization and consistent internal linking to the canonical page, every organization should have one stable slug and one preferred URL, even if there are sort, filter, or querystring variants elsewhere on the site. citeturn26search0turn25search2turn26search8

A good starting JSON-LD template for an organization profile page is:

' ' ' json
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "Organization",
      "@id": "https://2ia.org/org/{slug}/#org",
      "name": "{official_name}",
      "alternateName": ["{alias_1}", "{alias_2}"],
      "url": "{official_website}",
      "sameAs": [
        "{official_x_url}",
        "{official_linkedin_url}",
        "{official_github_url}"
      ],
      "foundingDate": "{YYYY-MM-DD or YYYY}",
      "description": "{authoritative_1_to_2_sentence_description}",
      "location": {
        "@type": "Place",
        "address": {
          "@type": "PostalAddress",
          "addressCountry": "{ISO_3166_1_alpha_2}"
        }
      },
      "contactPoint": {
        "@type": "ContactPoint",
        "url": "{official_contact_or_membership_url}",
        "contactType": "{contact|membership|press|general}"
      },
      "knowsAbout": ["{tag_1}", "{tag_2}", "{tag_3}"]
    },
    {
      "@type": "WebPage",
      "@id": "https://2ia.org/org/{slug}/#page",
      "url": "https://2ia.org/org/{slug}/",
      "name": "{official_name}",
      "about": {
        "@id": "https://2ia.org/org/{slug}/#org"
      },
      "dateModified": "{last_reviewed_date}"
    },
    {
      "@type": "BreadcrumbList",
      "@id": "https://2ia.org/org/{slug}/#breadcrumb",
      "itemListElement": [
        {
          "@type": "ListItem",
          "position": 1,
          "name": "Organizations",
          "item": "https://2ia.org/org/"
        },
        {
          "@type": "ListItem",
          "position": 2,
          "name": "{official_name}",
          "item": "https://2ia.org/org/{slug}/"
        }
      ]
    }
  ]
}
' ' ' 

This design is directly aligned with Google’s Organization guidance plus Schema.org’s organization, sameAs, contact, founding-date, and breadcrumb vocabulary. citeturn23search6turn23search3turn22search0turn22search1turn9search1turn23search0